summaryrefslogtreecommitdiffstats
path: root/f-15.tjp
blob: 4c4b0e48e14182240e14bf3eed12d0342f17c627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
/*
* John Poelstra <poelstra@fedoraproject.org>
* Fedora 15
*/


macro major         [15]         # Current release version
macro previous_major[14]         # Last release version
macro next_major    [16]         # Next release version
macro content       [f]          # do not change this
macro content_title [Fedora]     # do not change this
macro start_date    [2010-11-02] # GA date of previous release
macro start_work    [2010-11-03] # set to one day after "start_date"
macro end_date      [2011-12-30]
macro id            [$Id: f-15.tjp,v 1.11 2010/12/03 22:49:12 poelstra Exp $]
macro state         [$State: Exp $]
macro prior_project [f14]

project ${content}${major} "${content_title}" "${major}" ${start_date} - ${end_date} {
  timeformat "%Y-%b-%d"

  # Based on Eastern time zone in USA
  timezone "America/New_York"

  # Setup scenarios
  scenario plan "Original Plan" {
    scenario actual "Actual"
  }

  # Limit working days
  workinghours sat,sun off
}

include "reports.tji"

# =========  Cornerstones of Fedora Schedules =============
# This section also serves as a "syle guide" for the source file too

/*
1) EVERY entry should be in the following line order and indented consistently with the rest of the file.  This makes the source file consistent and eaiser to read.
   a) task name and description
   b) dependency (if applicable)
   c) length (not "duration") (if applicable)
   d) flags (if applicable)

2) Time driven unless specified differently during planning

3) "Deadlines" (previously known as "Freezes") and releases always happen on Tuesdays. Tuesday has been determined to be the best day for Press announcements and kept for deadlines to maintain historical consistency.

4) Official Release Engineering Composes happen on Thursdays, except for the final release

5) Syncing releases to mirrors ideally happens on Thursdays... end of day on Friday is worst case

6) Most tasks are scheduled with 'length' instead of 'duration' to get a sense of "work days" required--using 'length' one week = 5 days
--an eternal debate could be held to discuss whether or not schedule cacluations
should include weekends because community members work at all times and not within strict work days.

7) There is little to no benefit found in including a holiday.tji file for Fedora.  In some cases it made the scheduling more complicated

8) Use "length" everywhere and "duration" only when something must take into account a weekend day

9) All "Blocker Bug Days" should be on Fridays

10) If a task takes one day or less--schedule with no length--this way it showes up as a milestone and gets included in iCalendar (ics) file

11) Because of bugs in the way TaskJuggler ics files get rendered in some calendars (e.g. Zimbra) we only include zero length (milestone) tasks in the ics file.  As a result there are several duplicate tasks with no length that have been added so they appear in the ics file.

12) There are five primary projects the Fedora Translation team works on:
a) Software localization
b) Guides localization
c) Release Notes localization
d) Website localization
e) Release banner localization

13) Use core schedule milestones (flags = key) as anchor points (depends/precedes) for tasks in this schedule file instead of more transient tasks like meetings, compose dates, etc. that may change (or slip) from release to release.  This makes building new release schedules easier and require less maintenance and updating.

14) In ALL but limited cases task beginning and ending should be automatically calculated based on logic in this file.  When using hard coded dates, explicitly call them out with a comment to hightlight their existence.  Hard coded dates are particularly troublesome when slipping a schedule or branching the file to create a new release schedule because they must be adjusted and recalculated manually

15) TaskJuggler does not provide an easy way (that I am aware of) to schedule tasks to happen *before* other tasks.  I've created a hack/methodology I call "shadow" tasks.  These are unreported tasks that go backwards a certain period of time and serve as an anchor or starting point for the actual task to be reported.

16) Slipping a particular release milstone, but then holding the rest of the schedule to its original dates requires a lot of tedious tweaking and is a real hassle--it usual results in a slip any way.  Fedora has a poor history of being able absorb slips and it usually results in a slip later in the release cycle.  This is because the time period between Alpha Deadline and the final release has already been compressed as much as possible.

17) The "milestone" declaration is NOT used in this source file.  It is redundant and unnecessary.  Do not inlude it.  All tasks without 'length' or 'duration' are automatically considered "milestone" tasks.

18) Keep the indentation and alignment consistent throughout the file--it makes it easier to read and grok
  a) select all the text in the source file
  b) Tools/Clean Indention
  c) Tools/Align

*/

# ============ What should be included in TaskJuggler? ==============
/*
e.g. Tasks that *should* be tracked in this schedule vs. subgroup ticketing or task systems
1) Inter-team dependencies.  For example Docs team release-notes.rpm or Artwork team packages needed by Release Eng for complete distro creation.

2) Significant tasks that are important for other groups to be aware of

3) Tasks critical to releasing a new version of Fedora.  For example, composing test releases, testing releases, syncing the release to the mirrors, etc.

4) Tasks that must be completed for a quality release--"nice to have" items should tracked elswhere and clutter the schedule

5) In general we have found it to be ineffective to create overly-detailed schedules for the subteams because they are hard to maintain and the ROI appears to be low
*/

# ============ How to Build a scheduled for a new release ==============
/*
It has worked really well to roll the current release TaskJuggler source file forward (copy/paste) to the next version
and then modify it from there.  I usually branch a new TaskJuggler source file for the next release approximately one
month before GA.

Once branched I make sure that any important structural changes to the current schedule get reflected in the new one.

Changing the release methodology--length between different milestones and deadlines--every new release has been a a lot of work to make sure all the individual team schedules continue to work properly.  This is because many of the team schedules are anchored to key milestones and deadlines.  From Fedora 13 to 14 the methodology remained the same which made creating the Fedora 14 schedule much easier.  New schedule methodology should be tried out for at least two releases in a row before changing unless a serious deficency is identified..

Here is my step-by-step process:

1) Copy f-<release-version>.tjp to f-<new-release-version>.tjp (maintain same file and folder naming)

2) Remove all task length designations of "planned" and "actual" (used to reflect delta from original plan) so that there is only one length/duration declaration--"planned" is the default if not specified and this gets you back to the baseline schedule before it slipped.

3) Adjust planning duration and recalculate schedule until desired GA date is reached
--this is a somewhat strange way to design a schedule, but the full methodology is described here
http://fedoraproject.org/wiki/LifeCycle

4) Search source for all instances of "# ADJUST FOR NEW RELEASE" and "# KEY ADJUSTMENT POINT"--these are tasks that may need their length manually adjusted so they land on the right day or the description adjusted.  They should also be considered if the schedule slips.

5) Fix all of the macros at the start of the file to reflect the correct release information

6) Update the html reports headers to reflect the two correct past releases: "macro all_navbar"




# ===============   TODO: Unifinished Items ================ #
/*

1)
2)

*/


task ${content}${major} "${content_title} ${major}" {

  start ${start_work}

  task first_day "First Day of Development" {
    flags hidden
  }

  # This task is required for the Product Pages
  # taskid and description should not be changed
  task PlanningPhase "Planning Phase" {

    # add for ical
    task start_features_cal "Start Feature Submission" {
      flags key, pm, roadmap
    }

    task rawhide_spins "Start Nightly Spins Compose Based on Rawhide" {
      depends !!first_day {gaplength 5d}
      flags spins
    }

    # ADJUST FOR NEW RELEASE
    # HARDCODED date--approximately 2 weeks after GA of previous release
    task file_ticket "File ticket with RHT Eng-ops for Fedora 12 EOL bugzilla closure" {
      start 2010-11-16
      flags pm
    }

    # ADJUST FOR NEW RELEASE
    # HARDCODED date--approximately 4 weeks after GA of previous release
    # this date is approved FESCo in accordance with https://fedoraproject.org/wiki/LifeCycle
    # The process behind this task is at: https://fedoraproject.org/wiki/BugZappers/HouseKeeping
    task fedora12_eol "RHT Eng-Ops Fedora 12 EOL auto closure" {
      start 2010-12-02
      flags pm, key
    }

    task clean_market_wiki "Cleanup Marketing wiki from previous releases" {
      depends !start_features_cal {gaplength 25d}
      length 5d
      flags marketing
    }

    task cycle_market_wiki "Cycle Marketing wiki pages for current release" {
      depends !start_features_cal {gaplength 25d}
      length 5d
      flags marketing
    }

    # ADJUST FOR NEW RELEASE
    # HARDCODED dates for FUDCon
        task fudcon "Fudcon Fedora 15--Tempe, Arizona" {
          start 2011-01-29-01:00-EST # specifying time helps them to land on specified dates
          end   2011-01-31-23:00-EST
          flags quality, releng, docs, design, pm, translation, proto, proto, devel, key, marketing
        }

    task bug_trackers "Create Tracker Bugs" {
      flags pm
      note "See details at https://fedoraproject.org/wiki/BugZappers/HouseKeeping/FirstDayDevel"
    }

    # FIXME: make sure this lines up right in light of proposed design schedule 2010-11-08
    task design_concept "Conceptual Design Phase" {
      length 30d
      flags design
    }

    # FIXME: make sure this lines up right in light of proposed design schedule 2010-11-08
    # FIXME: make sure this lines up right and reconsider if calculation could be automatic
    # ADJUST FOR NEW RELEASE
    # a solid start for the wallpaper is the goal for alpha
    # adjust length so packaging end date lands on Alpha Deadline
    task wallpaper_design "Wallpaper Design for Alpha" {
      depends !design_concept
      length 15d
      flags design
    }

  } # E N D  of  PlanningPhase


  task supplement_wallpaper "Supplemental Wallpaper Process" {
    flags design

    # ADJUST FOR NEW RELEASE
    # adjust length of this task so that 'package_supplemental_wallpaper' ends on Beta Deadline
    task supplement_wallpaper_submit "Supplemental Wallpaper Submission Period" {
      length 62d
    }

    task decide_supplement_wallpaper "Select Official Supplemental Wallpaper" {
      depends !supplement_wallpaper_submit
    }

    task supplement_license_review "Verify Supplemental Wallpaper Licenses" {
      depends !decide_supplement_wallpaper {gaplength 1d}
      length 10d
    }

    task package_supplemental_wallpaper "Package Supplemental Wallpaper" {
      depends !supplement_license_review
      length 2d
    }

  } # end supplemental wallpaper


  # This task is required for the Product Pages
  # taskid and description should not be changed
  task DevelopmentPhase "Development Phase" {
    start ${start_work}

    task devel_start "Start Development" {
      flags devel
    }

    # ADJUST FOR NEW RELEASE--IMPORTANT
    # The length of this task DRIVES THE ENTIRE SCHEDULE
    # and determines when the testing phases starts.  The testing
    # phase of the schedule is static (and completely automatically
    # generated by TaskJuggler) from release to release, but the
    # number of days of development varies depending when the previous
    # release ended (GA).  As a result the length of this task also
    # influences where the GA date lands.
    # Each "5d" (5 days) is equivalent to one week.
    task develop "Packaging and Development (precedes Alpha)" {
      length 75d
      flags devel, proto
    }

    # This task is required for the Product Pages
    # taskid and description should not be changed or displayed
    task export_freeze "Requirements Freeze" {
      depends !develop
      flags hidden
    }

  }  # E N D  of DevelopmentPhase

  task TestingPhase "Testing Phase" {

    task alpha "Alpha Release" {

      task shadow_alpha_blocker "SHADOW: anchor for first blocker meeting" {
        precedes !feature_freeze {gaplength 11d}
        flags hidden
      }

      task remind_alpha_blocker1 "Reminder: Alpha Blocker Meeting (${content}${major}alpha) #1" {
        depends !shadow_alpha_blocker {gaplength 3d}
        flags pm
      }

      task alpha_blocker1 "Alpha Blocker Meeting (${content}${major}alpha) #1" {
        depends !shadow_alpha_blocker {gaplength 5d}
        flags releng, quality, devel, blocker, pm
      }

      task remind_alpha_blocker2 "Reminder: Alpha Blocker Meeting (${content}${major}alpha) #2" {
        depends !alpha_blocker1 {gaplength 3d}
        flags pm
      }

      task alpha_blocker2 "Alpha Blocker Meeting (${content}${major}alpha) #2" {
        depends !alpha_blocker1 {gaplength 5d}
        flags releng, quality, devel, blocker, pm
      }

      # raise awareness one week before Alpha compose
      task daily_alpha_blocker "Daily Review & Notification of Open Alpha Blocker Bugs" {
        depends !alpha_blocker2 {gaplength 1d}
        length 4d
        flags releng, quality, devel, pm, blocker
      }

      task remind_alpha_blocker3 "Reminder: Alpha Blocker Meeting (${content}${major}alpha) #3" {
        depends !alpha_blocker2 {gaplength 3d}
        flags pm
      }

      task alpha_blocker3 "Alpha Blocker Meeting (${content}${major}alpha) #3" {
        depends !alpha_blocker2 {gaplength 5d}
        flags releng, quality, devel, pm, blocker
      }

      task remind_alpha_blocker4 "Reminder: Alpha Blocker Meeting (${content}${major}alpha) #4" {
        depends !alpha_blocker3 {gaplength 3d}
        flags pm
      }

      task alpha_blocker4 "Alpha Blocker Meeting (${content}${major}alpha) #4" {
        depends !alpha_blocker3 {gaplength 5d}
        flags releng, quality, devel, pm, blocker
      }

      # placeholder if slip--otherwise comment out
      /*
      task alpha_blocker5 "Alpha Blocker Meeting (${content}${major}alpha) #5" {
         depends !alpha_blocker4 {gaplength 5d}
         flags releng, quality, devel, pm, blocker
      }
      */

      # Feature Freeze is one week before Alpha Change Deadline
      # Automatically calculated based on Alpha Change Deadline
      task shadow_feature_freeze "SHADOW: Anchor Feature Freeze" {
        precedes !alpha_deadline {gaplength 6d}
        flags hidden
      }

      task feature_freeze "Feature Freeze (Testable|Complete)" {
        depends !shadow_feature_freeze
        flags releng, quality, pm, proto, devel, key, marketing, roadmap, fpl
      }

      task feature_freeze_deadline_announce "Announce Feature Freeze Reached" {
        depends !feature_freeze
        flags pm
      }

      task alpha_deadline_remind "Remind Alpha Deadline in 1 week" {
        depends !feature_freeze
        flags pm
      }

      task spins_freeze "Spins Freeze--All ${content_title} ${major} Spins Identified" {
        depends !shadow_feature_freeze
        flags releng, quality, pm, proto, devel, key, marketing, spins, fpl
      }

      task talking_points "Create Talking Points" {
        depends !feature_freeze {gaplength 6d}
        length 5d
        flags marketing
      }

      task release_slogan "Create Release Slogan" {
        depends !talking_points
        length 5d
        flags marketing
      }

      task legal_release_slogan "Legal Review of Slogan" {
        depends !release_slogan
        length 3d
        flags marketing, fpl
      }

      task announce_release_slogan "Announce Fedora ${major} Slogan" {
        depends !legal_release_slogan
        flags marketing, fpl
      }

      task feature_profiles "Feature Profiles" {
        depends !release_slogan
        length 20d
        flags marketing
      }

      # Branch on the same Tuesday as Feature Freeze
      task branch_rawhide "Branch Fedora ${major} from Rawhide" {
        depends !shadow_feature_freeze
        flags releng, devel, pm, proto, key, roadmap, fpl
      }

      task bugzilla_descrption "Reflect supported versions in Bugzilla product description" {
        depends !shadow_feature_freeze
        flags pm
      }

      task rawhide_rebase "Rebase Rawhide bugs to Fedora ${major}" {
        depends !shadow_feature_freeze
        flags pm
      }

      # Create anchor for three weeks before for Feature Submission
      task shadow_feature_submit_remind_3_weeks "SHADOW: Three Weeks Before Feature Submission" {
        precedes !feature_submission_deadline {gaplength 15d}
        flags hidden
      }

      # Three weeks before Feature Submission Deadline
      task feature_check_remind "Request Feature Status Updates + Remind Submit Deadline" {
        depends !shadow_feature_submit_remind_3_weeks
        flags devel, pm
      }

      task alpha_releng_tickets "File All Release Engineering Tickets for ${content_title} ${major} Alpha" {
        depends !shadow_feature_submit_remind_3_weeks {gaplength 3d}
        flags releng
      }

      task feature_submit_remind_2_weeks "Feature Submission Deadline Two Weeks away" {
        depends !shadow_feature_submit_remind_3_weeks {gaplength 6d}
        flags devel, pm
      }

      #two weeks before spins submission deadilen get wiki pages in order
      task spins_wiki_update "Update All Spins Wiki Pages From Previous Releases" {
        depends !shadow_feature_submit_remind_3_weeks
        flags spins
      }

      task feature_submit_remind_1_week "Feature Submission Deadline One Week away" {
        depends !shadow_feature_submit_remind_3_weeks {gaplength 11d}
        flags devel, pm
      }

     # One day before compose
     task alpha_installer_build1 "Submit Installer Build for QA Compose" {
        depends !feature_submit_remind_1_week {gaplength 1d}
        flags devel
      }

      # Thursday before Feature Submission deadline
      task qa_alpha_compose1 "Create Installable Images for QA testing #1" {
        depends !feature_submit_remind_1_week {gaplength 2d}
        flags releng
      }

      task alpha_rawhide_install1 "Pre-Alpha Rawhide Acceptance Test Plan #1" {
        depends !qa_alpha_compose1
        length 6d
        flags quality
      }

      # Create anchor for two weeks before Feature Freeze
      task shadow_feature_submission_deadline "SHADOW: Two weeks before Feature Freeze" {
        precedes !feature_freeze {gaplength 10d}
        flags hidden
      }

      task feature_submission_deadline "Feature Submission Deadline" {
        depends !shadow_feature_submission_deadline
        flags releng, quality, pm, proto, devel, key, roadmap, fpl
      }

      task feature_submission_deadline_announce "Announce Feature Submission Closed" {
        depends !shadow_feature_submission_deadline
        flags pm
      }

      task spins_submission_deadline "Custom Spins Submission Deadline" {
        depends !shadow_feature_submission_deadline
        flags pm, proto, key, spins, fpl
      }

      task warn_rawhide_rebase "Rawhide Rebase Warning to Package Maintainers" {
        depends !shadow_feature_submission_deadline
        flags pm
      }

      task ticket_rawhide_rebase "File Rawhide Rebase ticket with RHT Eng-ops" {
        depends !shadow_feature_submission_deadline
        flags pm
      }

     # One day before compose
     task alpha_installer_build2 "Submit Installer Build for QA Compose" {
        depends !feature_submission_deadline {gaplength 2d}
        flags devel
      }

      task qa_alpha_compose2 "Create Installable Images for QA testing #2" {
        depends !feature_submission_deadline {gaplength 3d}
        flags releng
      }

      task alpha_rawhide_install2 "Pre-Alpha Rawhide Acceptance Test Plan #2" {
        depends !qa_alpha_compose2
        length 5d
        flags quality
      }

      # One day before compose
      task alpha_installer_build3 "Submit Installer Build for QA Compose" {
        depends !qa_alpha_compose2 {gaplength 4d}
        flags devel
      }

      task qa_alpha_compose3 "Create Installable Images for QA testing #3" {
        depends !alpha_rawhide_install2
        flags releng
      }

      task alpha_rawhide_install3 "Pre-Alpha Rawhide Acceptance Test Plan #3" {
        depends !qa_alpha_compose3
        length 5d
        flags quality
      }

      task feature_incomplete_nag "Remind < 85% complete Feature Owners" {
        depends !feature_freeze {gaplength 1d}
        flags pm
      }

      task feature_incomplete_fesco "Deliver Incomplete Features to FESCo " {
        depends !feature_freeze {gaplength 6d}
        flags pm
      }

      # KEY ADJUSTMENT POINT
      # Date of Alpha Deadline depends on length of development
      task alpha_deadline "Alpha Change Deadline" {
        depends !!!DevelopmentPhase.develop
        flags releng, quality, pm, devel, key, roadmap, proto, blocker, spins
      }

      task alpha_deadline_announce "Announce Alpha Change Deadline Reached" {
        depends !alpha_deadline
        flags pm
      }

      # KEY ADJUSTMENT POINT--manually adjust if length of time before Alpha ships changes
      task alpha_infrastructure_freeze "Alpha Infrastructure Change Freeze" {
        depends !alpha_deadline
        length 10d
        flags infrastructure
      }

      task alpha_spins_ks "Build spin-kickstarts package from master" {
        depends !alpha_deadline
        flags spins
      }

      # Happens the same day as Feature Freeze
      task orphan "Orphan Rawhide Packages" {
        depends !feature_freeze
        flags releng, devel
      }

      task finalize_alpha_wallpaper "Finalize Alpha Wallpaper" {
        depends !!!PlanningPhase.wallpaper_design
        flags design, pm
        length 3d
      }

      task alpha_wallpaper_deadline "Alpha Wallpaper Deadline" {
        depends !finalize_alpha_wallpaper
        flags design
      }

      task blog_alpha_wallpaper "Blog About Alpha Wallpaper" {
        depends !finalize_alpha_wallpaper
        flags design
      }

      # must land a few days before Alpha compose by Releng
      task package_alpha_wallpaper "Package Alpha Wallpaper" {
        depends !finalize_alpha_wallpaper
        length 2d
        flags design
      }

      task alpha_wallpaper_feedback "Solicit Feedback on Alpha Wallpaper" {
        depends !package_alpha_wallpaper
        length 10d
        flags design
      }

      # depends on nearly complete version of the wallpaper, otherwise
      # you have to create the splashes twice
      # work on until Beta freeze
      task start_splash_screens "Create Splash Screens" {
        depends !alpha_drop
        length 9d
        flags design
      }

      # for ics file
      task start_splash_screens_cal "Start Splash Screens" {
        depends !alpha_drop
        flags design
      }

      # work on until Beta freeze
      task finalize_splash_screens "Finalize Splash Screens" {
        depends !start_splash_screens
        length 4d
        flags design
      }

      # work on until Beta freeze
      task beta_wallpaper "Prepare wallpaper for Beta" {
        depends !alpha_drop
        length 13d
        flags design
      }

      # send reminder on Monday before Wednesday meeting
      task remind_alpha_go_not "Reminder: ${content_title} ${major} Alpha Go/No-Go Meeting" {
        depends !create_alpha_compose {gaplength 2d}
        flags pm
      }

      task alpha_go_not "${content_title} ${major} Alpha Go/No-Go Meeting (17:00 US Eastern)" {
        depends !create_alpha_compose {gaplength 4d}
        flags releng, quality, devel, pm, proto, blocker
      }

      task trans_software_rebuild1 "Remind f-dev-announce to Rebuild All Translated Packages" {
        depends !feature_freeze {gaplength 5d }
        flags translation
      }

      task software_string_freeze "Software String Freeze" {
        depends !feature_freeze {gaplength 6d }
        flags devel, translation, pm, proto, releng, key, roadmap
      }

      task announce_software_string_freeze "Announce Software String Freeze Reached" {
        depends !feature_freeze {gaplength 6d }
        flags pm
      }

      task software_translation "Software Translation"{

        # KEY ADJUSTMENT POINT
        # if the alpha slips, add additional time to this task
        # TODO: reconsider this task in Fedora 15--it seems that it should be a by-product of the other
        #       tasks and not a stand-alone task
        task trans_software "Software Translation Period" {
          depends !!software_string_freeze
          length 25d
          flags translation
        }

        # KEY ADJUSTMENT POINT
        # If the alpha slips, add additional time to 'gaplength' for this task which essentially extends the freeze
        task remind_build_trans_software "Remind f-dev-announce to build F${major} collection pkgs for trans team" {
          depends !!software_string_freeze {gaplength 9d}
          flags translation
        }

        task request_review_image "Create Rel-Eng ticket for Live Image compose for Software Review UI" {
          depends !remind_build_trans_software {gaplength 4d}
          flags translation
        }

        task build_trans_software "Build F-${major} collection packages for all language translators" {
          depends !request_review_image
          flags releng, devel
        }

        task compose_review_image "Compose of Live Image of Software Review UI for Translation" {
          depends !build_trans_software
          flags releng
        }

        task trans_software_review "Review and correct software translation in built UI" {
          depends !build_trans_software {gaplength 1d}
          length 6d
          flags translation
        }

        task trans_software_rebuild2 "Remind f-dev-announce to Rebuild All Translated Packages" {
          depends !trans_software_review
          flags translation
        }

        # Should land one week before the "Beta Change Deadline"--affected by "remind_build_trans_software"
        # Double check after adjusting "trans_software" or length of Alpha tasks for a slip
        task trans_software_deadline "Software: Translation Deadline (PO Files complete)" {
          depends !trans_software_review
          flags translation, roadmap, key
        }

        # for ical file
        task start_trans_rebuild "Software: Start Rebuild all translated packages" {
          depends !trans_software_deadline
          flags devel
        }

        task trans_rebuild "Software: Rebuild all translated packages" {
          depends !trans_software_deadline
          length 5d
          flags devel
        }

      } #end software_translation

      # Send reminder on Monday before Thursday meeting
      task alpha_meeting_reminder "Reminder: Alpha Release Readiness Meeting" {
        depends !feature_freeze {gaplength 10d}
        flags pm
      }

      task alpha_meeting "${content_title} ${major} Alpha Release Readiness Meeting" {
        depends !alpha_meeting_reminder {gaplength 3d}
        flags releng, pm, quality, docs, design, translation, marketing, web
      }

      # land on a Tuesday
      task shadow_before_alpha_compose "SHADOW: 1.5 weeks before Alpha Compose" {
        precedes !create_alpha_compose {gaplength 8d}
        flags hidden
      }

      task create_alpha_tc "Create Alpha Test Compose (TC)" {
        depends !shadow_before_alpha_compose
        flags releng, proto
      }

      # test Wed to Wed
      task test_alpha_tc "Test Alpha 'Test Compose'" {
        depends !create_alpha_tc {gaplength 1d}
        length 6d
        flags quality, proto
      }

     task alpha_kernel_build "Submit Kernel Build for Alpha RC Compose" {
        depends !alpha_deadline
        flags devel
      }

     task alpha_installer_build "Submit Installer Build for Alpha RC Compose" {
        depends !alpha_deadline {gaplength 1d}
        flags devel
      }

      task create_alpha_compose "Compose Alpha Candidate" {
        depends !alpha_deadline {gaplength 2d}
        flags releng, proto
      }

      task test_alpha_candidate "Test Alpha Candidate" {
        depends !create_alpha_compose
        length 5d
        flags quality, proto
      }

      # for ical file
      task start_stage_alpha "Start Stage & Sync Alpha to Mirrors" {
        depends !test_alpha_candidate
        flags releng
      }

      task notify_mirrors_alpha "Notify Mirrors of ${content_title} ${major} Alpha" {
        depends !start_stage_alpha {gaplength 1d}
        flags releng
      }

      task stage_alpha "Stage & Sync Alpha to Mirrors" {
        depends !test_alpha_candidate
        length 3d
        flags releng, proto
      }

      task alpha_export_control "Alpha Export Control Reporting" {
        depends !start_stage_alpha {gaplength 1d}
        flags releng, pm
      }

      task alpha_announce "Create Alpha Announcement (Marketing & Docs)" {
        depends !alpha_meeting
        length 2d
        flags docs, marketing
      }

      task alpha_drop "Alpha Public Availability" {
        depends !stage_alpha
        flags releng, docs, quality, design, pm, proto, devel, key, marketing, roadmap, spins, blocker, infrastructure, fpl
      }

      task ambassador_start "Ambassador Wide Meetings Preparing For ${content_title} ${major}" {
        depends !alpha_drop {gaplength 7d}
        length 5d
        flags ambassadors
      }

      task start_swag "Call From FAmSCo and Regional teams for Preparation of Media/SWAG" {
        depends !alpha_drop {gaplength 7d}
        flags ambassadors
      }

      task swag_poc "Regional Team Meetings and Select POC for Swag/Media production" {
        depends !alpha_drop {gaplength 8d}
        length 5d
        flags ambassadors
      }

      task swag_funding_request "Submit Funding Request For Swag/Media Production" {
        depends !alpha_drop {gaplength 8d}
        length 5d
        flags ambassadors
      }

      # this task was proposed by Mike McGrath and to be performed by FES
      task nvr_testing "NVR Update Check testing" {
        depends !stage_alpha
        length 1d
        flags quality
      }

      # KEY ADJUSTMENT POINT
      task alpha_release_notes "Alpha Release Notes" {

        # create for ical
        task start_alpha_beats "Start Alpha Beat and Feature Page Review" {
          depends !!feature_freeze {gaplength 11d}
          flags docs, quality
        }

        task validate_beat_writers "Validate Former Beat Writers" {
          depends !!feature_freeze
          length 5d
          flags docs
        }

        task recruite_beat_writers "Recruit New Beat Writers" {
          depends !validate_beat_writers
          length 5d
          flags docs
        }

        task comb_alpha_beats "Comb Beats and Feature Pages for Alpha" {
          depends !start_alpha_beats
          length 2d
          flags docs, quality
        }

        task notify_devel_relnotes "Notify Development About Alpha Release Notes" {
          depends !!alpha_deadline
          flags docs
        }

        # KEY ADJUSTMENT POINT
        # Beta release notes depend on this task
        # If alpha candidate is not ready on time add extra time for the release notes here
        task prep_alpha_notes "Prepare Alpha Release Notes (1 page)" {
          depends !comb_alpha_beats
          length 1d
          flags docs, quality
        }

        task post_notes "Post Alpha Release Notes One-Page" {
          depends !prep_alpha_notes {gaplength 1d}
          flags docs
        }

      } #end alpha_release_notes


      #  two days to create web banner
      #  one day for websites team to add to www.fedoraproject.org
      #  should be live one day before the release
      task alpha_banner "Alpha Release Banner" {
        precedes !alpha_drop {gaplength 3d}

        task alpha_create_banner "Create Alpha Website Banner" {
          length 2d
          flags design
        }

        task alpha_publish_banner "Add Alpha Banner to Website" {
          length 1d
          flags web
        }
      }

      # This task is required for the Product Pages
      # taskid and description should not be changed or displayed
      task public_alpha "Public Alpha" {
        depends !stage_alpha
        flags hidden
      }

      # KEY ADJUSTMENT POINT
      # Three weeks for Alpha Testing
      # IF "Beta Deadline" is missed the length of this task is extended--
      # in that case corresponding change needs to be made to "software_translation" task
      task test_alpha "Alpha Testing" {
        depends !stage_alpha
        length 15d
        flags quality, proto
      }

      task review_bookmarks "Review Firefox Bookmarks For Update" {
        depends !stage_alpha
        length 5d
        flags marketing
      }

      task update_bookmarks "Update and Package Firefox Bookmarks" {
        depends !review_bookmarks
        length 2d
        flags marketing
      }

      task tag_bookmarks "Tag Updated Bookmarks Package for ${content_title} ${major}" {
        depends !update_bookmarks
        flags marketing
      }

      # Explicit task to mark end of alpha
      # Also permits subsequent tasks to cleanly depend on it using "precedes" (because it is zero length)
      task alpha_end "End of Alpha Testing" {
        depends !test_alpha
        flags quality
      }

      task beta_marketing_notes "Marketing: Beta One Page Release Notes" {
        depends !alpha_end {gaplength 5d}
        length 5d
        flags marketing
      }

    }

    task beta "Beta Release" {

      # KEY ADJUSTMENT POINT--if the Alpha slips, make sure the blocker meeting
      # tasks continue to line up correctly
      # Once the Alpha is staged, start holding Blocker meetings for the Beta

      task remind_beta_blocker1 "Reminder: Beta Blocker Meeting (${content}${major}beta) #1" {
        depends !!alpha.create_alpha_compose {gaplength 9d }
        flags pm
      }

      task beta_blocker1 "Beta Blocker Meeting (${content}${major}beta) #1" {
        depends !!alpha.stage_alpha {gaplength 3d }
        flags quality, releng, devel, pm, blocker
      }

      task beta_releng_tickets "File All Release Engineering Tickets for ${content_title} ${major} Beta" {
        depends !!alpha.stage_alpha {gaplength 2d }
        flags releng
      }

      task remind_beta_blocker2 "Reminder: Beta Blocker Meeting (${content}${major}beta) #2" {
        depends !beta_blocker1 {gaplength 3d}
        flags pm
      }

      task beta_blocker2 "Beta Blocker Meeting (${content}${major}beta) #2" {
        depends !beta_blocker1 {gaplength 5d}
        flags releng, quality, devel, pm, blocker
      }

      # raise awareness one week before Beta compose
      task daily_beta_blocker "Daily Review & Notification of Open Beta Blocker Bugs" {
        depends !beta_blocker2 {gaplength 1d}
        length 4d
        flags releng, quality, devel, pm, blocker
      }

      task remind_beta_blocker3 "Reminder: Beta Blocker Meeting (${content}${major}beta) #3" {
        depends !beta_blocker2 {gaplength 3d}
        flags pm
      }

      task beta_blocker3 "Beta Blocker Meeting (${content}${major}beta) #3" {
        depends !beta_blocker2 {gaplength 5d}
        flags releng, quality, devel, pm, blocker
      }

      task remind_beta_blocker4 "Reminder: Beta Blocker Meeting (${content}${major}beta) #4" {
        depends !beta_blocker3 {gaplength 3d}
        flags pm
      }

      task beta_blocker4 "Beta Blocker Meeting (${content}${major}beta) #4" {
        depends !beta_blocker3 {gaplength 5d}
        flags releng, quality, devel, pm, blocker
      }

      # Create anchor one week before for Beta Deadline
      task shadow_beta_deadline "SHADOW: one week before Beta Deadeline" {
        precedes !beta_deadline {gaplength 6d}
        flags hidden
      }

      task remind_beta_deadline "Remind Beta Deadline in 1 week" {
        depends !shadow_beta_deadline
        flags pm
      }

      task remind_final_freatures "Remind Features 100% Complete in 1 week" {
        depends !shadow_beta_deadline
        flags pm
      }

      task beta_spins_ks "Build spin-kickstarts package from master" {
        depends !shadow_beta_deadline
        flags spins
      }

      task coordinate_swag_design "Coordinate Media/Swag/Poster artwork with Design team" {
        depends !shadow_beta_deadline {gaplength 5d}
        length 10d
        flags ambassadors
      }

      # Two weeks before the public Beta Release
      task beta_deadline "Beta Change Deadline" {
        depends !!alpha.test_alpha
        flags releng, docs, quality, pm, proto, devel, key, marketing, spins, roadmap
      }

      task feature_complete "Features 100% Complete Deadline" {
        depends !!alpha.test_alpha
        flags releng, docs, quality, pm, proto, devel, key, marketing, roadmap, fpl
      }

      # KEY ADJUSTMENT POINT--manually adjust if length of time before Beta ships changes
      task beta_infrastructure_freeze "Beta Infrastructure Change Freeze" {
        depends !!alpha.test_alpha
        length 10d
        flags infrastructure, releng
      }

      task announce_beta_deadline "Announce Beta Deadline & Feature Complete" {
        depends !!alpha.test_alpha
        flags pm
      }

      task final_feature_fesco "Deliver features < 100% to FESCo" {
        depends !beta_deadline {gaplength 1d}
        flags pm
      }

      task brief_ambassadors "Brief Ambassadors on upcoming release" {
        depends  !beta_deadline {gaplength 5d}
        length 5d
        flags marketing
      }

      # The Release Slogan is created by the Marketing team based on
      # the initial artwork theme. The Design Team needs to know
      # the slogan to create the release banners

      # prepare 6 weeks before GA (2 weeks of work)
      # go live 1 month before GA
      # KEY ADJUSTMENT POINT
      task create_countdown "Create Count Down Graphic" {
        depends !beta_deadline
        length 10d
        flags design
      }

      task publish_countdown "Publish Count Down Graphic" {
        depends !create_countdown
        length 1d
        flags web
      }

      task beta_release_notes "Beta Release Notes" {

        task unclaimed_beats "Write Unclaimed Wiki Beats" {
          depends !!!alpha.alpha_drop
          length 6d
          flags docs
        }

        task port_wiki_publican "Port Wiki to Publican" {
          depends !unclaimed_beats {gaplength 1d}
          length 3d
          flags docs
        }

        task remind_trans_beta_notes "Remind Translation: Beta Rel Notes POT Coming" {
          depends !unclaimed_beats
          flags docs
        }

        task start_release_notes_pot1 "Start nightly POT files all fed-rel-notes.rpm content" {
          depends !unclaimed_beats {gaplength 1d}
          flags docs
        }

        task release_notes_pot1 "Generate nightly POT files all fed-rel-notes.rpm content" {
          depends !unclaimed_beats {gaplength 1d}
          length 13d
          flags docs
        }

        task remind_devel_beta_notes"Remind announce-list & f-devel-announce: Wiki Freeze" {
          depends !unclaimed_beats {gaplength 1d}
          flags docs
        }

        task beta_wiki_freeze "Wiki Freeze: Beta Release Notes" {
          depends !remind_devel_beta_notes {gaplength 2d}
          flags docs
        }

        task trans_release_notes "Translate Beta Release Notes" {
          depends !port_wiki_publican {gaplength 1d}
          length 14d
          flags translation
        }

        # KEY ADJUSTMENT POINT
        task build_trans_review "Ongoing build translation review htmls" {
          depends !beta_wiki_freeze
          length 5d
          flags docs
        }

        # KEY ADJUSTMENT POINT
        task trans_review_beta "Review and correct Beta Release Notes (daily buids html)" {
          depends !beta_wiki_freeze
          length 5d
          flags translation
        }

        task trans_release_notes_deadline "Translation Deadline: Beta Release Notes (PO Files complete)" {
          depends !trans_review_beta
          flags translation, docs
        }

        task build_beta_relnotes "Build f-r-n.rpm and Push to updates-candidate" {
          depends !trans_release_notes_deadline
          length 2d
          flags docs, translation
        }

        task final_release_notes_reminder "Reminder: Send Project Wide-Final Release Notes Deadlines" {
          depends !!beta_deadline {gaplength 7d}
          flags docs
        }

        # one day before release which is 2D after meeting
        task web_notes "Build and Post Beta release-notes to docs.fedoraproject.org" {
          depends !!beta_meeting {gaplength 2d}
          flags docs
        }

        # one day before release which is 2D after meeting
        task tech_web_notes "Build and Post Fedora Technical Notes to docs.fedoraproject.org" {
          depends !!beta_meeting {gaplength 2d}
          flags docs
        }

      } # end beta_release_notes


      task splash_deadline "Deadline: Beta Splash Screens" {
        depends !!alpha.finalize_splash_screens
        flags design
      }

      task package_final_splash "Package: Beta Splash Screens" {
        depends !!alpha.finalize_splash_screens
        length 2d
        flags design
      }

      task package_beta_wallpaper "Package: Beta Wallpaper"{
        depends !!alpha.beta_wallpaper
        length 2d
        flags design
      }

      task package_supplemental_wallpaper "Package: Supplemental Wallpaper"{
        depends !!alpha.beta_wallpaper
        flags design
      }

      task beta_meeting_announce "Announce: Beta Release Readiness Meeting" {

        flags pm
      }

      # KEY ADJUSTMENT POINT if Beta Deadline changes
      task beta_meeting_reminder "Reminder: Beta Release Readiness Meeting" {
        depends !beta_deadline {gaplength 4d}
        flags pm
      }

      task beta_meeting "${content_title} ${major} Beta Release Readiness Meeting" {
        depends !beta_meeting_reminder {gaplength 3d}
        flags releng, pm, quality, docs, design, translation, marketing, web
      }

      task beta_announce "Create Beta Announcement (Docs & Marketing)" {
        depends !beta_meeting
        length 2d
        flags docs, marketing
      }

      # placeholder if slip
      #       task beta_blocker4 "Beta Blocker Day (${content}${major}beta) #4" {
      #         depends !!beta_blocker3 {gaplength 5d}
      #         flags releng, quality, devel, pm, blocker
      #       }


      task shadow_before_beta_compose "SHADOW: 1.5 weeks before Beta Compose" {
        precedes !create_beta_compose {gaplength 9d} # with 'precedes', gaplength pushes date backwards
        flags hidden
      }

     task beta_installer_build1 "Submit Installer Build for Beta TC Compose" {
        depends !shadow_before_beta_compose
        flags devel
      }

      task create_beta_tc "Create Beta Test Compose (TC)" {
        depends !shadow_before_beta_compose {gaplength 2d}
        flags releng, proto
      }

      task test_beta_tc "Test Beta 'Test Compose'" {
        depends !create_beta_tc
        length 6d
        flags quality, proto
      }

      task beta_rawhide_install "Pre-Beta Acceptance Test Plan" {
        precedes !create_beta_tc
        length 5d
        flags quality
      }

      task remind_beta_go_not "Reminder: ${content_title} ${major} Beta Go/No-Go Meeting" {
        depends !create_beta_compose {gaplength 2d}
        flags pm
      }

      task beta_go_not "${content_title} ${major} Beta Go/No-Go Meeting (17:00 US Eastern)" {
        depends !create_beta_compose {gaplength 4d}
        flags releng, quality, devel, pm, proto, blocker
      }

     task beta_kernel_build "Submit Kernel Build for Beta RC Compose" {
        depends !beta_deadline
        flags devel
      }

     task beta_installer_build "Submit Installer Build for Beta RC Compose" {
        depends !beta_deadline {gaplength 1d}
        flags devel
      }

      # KEY ADJUSTMENT POINT if Beta release date slips--add more time to this task
      task create_beta_compose "Compose Beta Candidate" {
        depends !beta_deadline {gaplength 2d}
        flags releng, proto
      }

      task call_for_events "Call from FAmSCo and Regional Teams for Release Events" {
        depends !beta_deadline {gaplength 2d}
        flags ambassadors
      }

      task logistics_budget "Plan Regional Logistics for Release Events & File Budget Requests" {
        depends !call_for_events
        length 10d
        flags ambassadors
      }

      task test_beta2 "Test Beta Candidate" {
        depends !create_beta_compose
        length 5d
        flags quality, proto
      }

      task start_stage_beta "Start Stage & Sync Beta to Mirrors" {
        depends !test_beta2
        flags releng
      }

      task notify_mirrors_beta "Notify Mirrors of ${content_title} ${major} Beta" {
        depends !start_stage_beta {gaplength 1d}
        flags releng
      }

      task stage_beta "Stage & Sync Beta to Mirrors" {
        depends !test_beta2
        length 3d
        flags releng, proto
      }

      task beta_export_control "Beta Export Control Reporting" {
        depends !start_stage_beta {gaplength 1d}
        flags releng, pm
      }


      # two days to create web banner
      # one day for websites team to add to www.fedoraproject.org
      # should be live one day before the release
      task beta_banner "Beta Release Banner" {
        precedes !beta_drop {gaplength 3d}

        task beta_create_banner "Create Beta Website Banner" {
          length 2d
          flags design
        }

        task beta_publish_banner "Add Beta Banner to Website" {
          length 1d
          flags web
        }
      }

    task shadow_before_beta_drop "SHADOW: One Day before Public Beta release" {
      precedes !beta_drop {gaplength 2d}
      flags hidden
    }

      # Five weeks prior to GA
      task beta_drop "Beta Release Public Availability" {
        depends !stage_beta
        flags docs, releng, quality, pm, translation, proto, design, devel, key, marketing, roadmap, blocker, spins, infrastructure, fpl
      }

      task event_deadline "Release Event Submission Deadline" {
        depends !beta_drop {gaplength 3d}
        flags ambassadors
      }

      task budget_allocations "FAmSCo Review Budget Allocations" {
        depends !beta_drop {gaplength 3d}
        flags ambassadors
      }

      task irc_sessions "Regional IRC sessions" {
        depends !beta_drop {gaplength 8d}
        length 10d
        flags ambassadors
      }

      # Three weeks of public testing
      # Ends on a Monday and is followed by Final Release Deadline
      task beta_test "Beta Testing" {
        depends !stage_beta
        length 14d
        flags quality, proto
      }

      task websites_trans_reminder "Reminder to f-websites-list about POT/PO dates in 7 days" {
        depends !beta_drop
        flags translation, web
      }

      # two weeks to create
      # should be completely done and ready for hand off to Ambassadors two weeks before GA
      # Ambassadors should have made prior arrangements to flip artwork over to media producer
      # at this time.
      task media "Create DVD/CD label and sleeve artwork" {
        # not a "great" place to anchor to as it could move
        # needs to start four weeks before GA
        depends !beta_drop
        length 10d
        flags design
      }

      task rc_rawhide_install "Pre-RC Acceptance Test Plan" {
        depends !stage_beta {gaplength 7d}
        length 4d
        flags quality
      }

      task testmile "End of Beta Testing" {
        depends !beta_test
        flags quality
      }

    }
  }  # E N D  of TestingPhase

  task LaunchPhase "Launch Phase" {

    # four weeks before GA, ambassadors create release posters
    # two weeks before GA to art team does final polish to posters
    # posters are ready on release day
    task release_posters "Release Party Posters" {
      depends !!TestingPhase.beta.beta_drop
      task create_posters "Create Release Party Posters" {
        length 10d
        flags ambassadors
      }

      task polish_poster "Polish/Finalize Release Party Posters" {
        depends !create_posters
        length 9d
        flags design
      }
    }

    task screenshots "Update and freeze the screenshots page" {
      depends !!TestingPhase.beta.stage_beta {gaplength 5d}
      length 5d
      flags marketing
    }

    task final_screenshots "Marketing: Final Screen Shots" {
      depends !screenshots
      length 5d
      flags marketing
    }

    task final_marketing_notes "Marketing: Final One Page Release Notes" {
      depends !screenshots
      length 5d
      flags marketing
    }

    task briefings "Brief news distribution network" {
      depends !screenshots
      length 5d
      flags marketing
    }

    task monitor "Monitor news sites to provide corrections & info" {
      depends !screenshots
      length 29d
      flags marketing
    }

    task rc "Release Candidate" {

      task final_releng_tickets "File All Release Engineering Tickets for ${content_title} ${major} GA" {
        depends !!!TestingPhase.beta.stage_beta {gaplength 2d }
        flags releng
      }

      task remind_ga_blocker1 "Reminder: Final Blocker Meeting (${content}${major}blocker) #1" {
        depends !!!TestingPhase.beta.create_beta_compose {gaplength 4d}
        flags pm
      }

      task ga_blocker1 "Final Blocker Meeting (${content}${major}blocker) #1" {
        depends !!!TestingPhase.beta.start_stage_beta {gaplength 1d}
        flags releng, quality, devel, pm, blocker
      }

      task remind_ga_blocker2 "Reminder: Final Blocker Meeting (${content}${major}blocker) #2" {
        depends !ga_blocker1 {gaplength 3d}
        flags pm
      }

      task ga_blocker2 "Final Blocker Meeting (${content}${major}blocker) #2" {
        depends !ga_blocker1 {gaplength 5d}
        flags releng, quality, devel, pm, blocker
      }

      task remind_ga_blocker3 "Reminder: Final Blocker Meeting (${content}${major}blocker) #3" {
        depends !ga_blocker2 {gaplength 3d}
        flags pm
      }

      task ga_blocker3 "Final Blocker Meeting (${content}${major}blocker) #3" {
        depends !ga_blocker2 {gaplength 5d}
        flags releng, quality, devel, pm, blocker
      }

      # two days before Final Deadline
      task shadow_before_final_deadline "SHADOW: one day before Final Deadline" {
        precedes !final_change_deadline {gaplength 2d}
        flags hidden
      }

      task kernel_debug "Disable Kernel debug and submit new Kernel build for RC" {
        depends !shadow_before_final_deadline
        flags devel
      }

      task final_change_deadline "Final Change Deadline" {
        depends !!!TestingPhase.beta.beta_test
        flags releng, devel, proto, pm, key, spins
      }

      task check_swag "FAmSCo and Regional Teams Meet to Address Unresolved Events/Media/Swag Issues" {
        depends !final_change_deadline {gaplength 1d}
        flags ambassadors
      }

      # one day before Final Deadline
      task final_wallpaper "Package Final Wallpaper" {
        depends !shadow_before_final_deadline
        flags design
      }

      # one day before Final Deadline
      task final_splash "Package Final Splash Screens" {
        depends !shadow_before_final_deadline
        flags design
      }

      task announce_final_change_deadline "Announce Final Freeze & Implications" {
        depends !final_change_deadline
        flags pm
      }

      # ADJUST FOR NEW RELEASE--EOL Version
      task eol_warning "File RHT Eng-ops ticket for Fedora 13 EOL Bugzilla warning" {
        depends !final_change_deadline
        flags pm
      }

      # KEY ADJUSTMENT POINT--manually adjust if length of time before Final release ships changes
      task final_infrastructure_freeze "Final Infrastructure Change Freeze" {
        depends !!!TestingPhase.beta.beta_test {gaplength 1d}
        length 10d
        flags infrastructure, releng
      }

      task remind_ga_blocker4 "Reminder: Final Blocker Meeting (${content}${major}blocker) #4" {
        depends !ga_blocker3 {gaplength 3d}
        flags pm
      }

      task ga_blocker4 "Final Blocker Meeting (${content}${major}blocker) #4" {
        depends !ga_blocker3 {gaplength 5d}
        flags releng, quality, devel, pm, blocker
      }

      # raise awareness one week before final compose
      task daily_ga_blocker "Daily Review & Notification of Open Final Blocker Bugs" {
        depends !ga_blocker3 {gaplength 1d}
        length 4d
        flags releng, quality, devel, pm, blocker
      }

      task ga_blocker5 "Final Blocker Meeting (${content}${major}blocker)--Blocks RC Compose" {
        depends !ga_blocker4 {gaplength 1d}
        flags releng, quality, devel, pm, blocker
      }

      task ga_release_notes "Final Release Notes" {

        # One day before public beta release
        task final_release_note_wiki_reminder "Reminder to Development: Wiki Freeze in 7 days" {
          depends !!!!TestingPhase.beta.shadow_before_beta_drop
          flags docs
        }

        task prep_ga_notes "Prepare GA Release Notes" {
          depends !!!!TestingPhase.beta.beta_drop
          flags docs, quality
        }

        task ga_release_notes_freeze "String Freeze: GA Release Notes" {
          depends !prep_ga_notes {gaplength 4d}
          flags docs
        }

        task wiki_ga_port "Port diff wiki content to Publican" {
          depends !ga_release_notes_freeze
          length 5d
          flags docs
        }

        task remind_trans_ga_notes "Remind Translation: RPM Freeze (no more POTs) in 5 days" {
          depends !ga_release_notes_freeze {gaplength 2d}
          flags docs
        }

        # KEY ADJUSTMENT POINT--if length of Beta changes this task length needs to change too
        task ga_pot_trans "Translate Final Release Notes (POT to PO)" {
          depends !!!!TestingPhase.beta.beta_release_notes.trans_release_notes_deadline {gaplength 1d}
          length 24d
          flags translation
        }

        task ga_release_notes_pot "Generate GA Release Notes POT files for Translation" {
          depends !wiki_ga_port
          flags docs
        }

        task build_trans_review_final "Build GA release note htmls for Translation" {
          depends !ga_release_notes_pot {gaplength 1d}
          length 4d
          flags docs
        }

        task build_ga_trans_review "Review and correct GA Release Notes (daily builds html)" {
          depends !ga_release_notes_pot {gaplength 1d}
          length 4d
          flags docs, translation
        }

        task remind_ga_trans_deadline "Remind Translators of GA Release Notes Deadline in 4 days" {
          depends !ga_release_notes_pot {gaplength 3d}
          flags docs
        }

        task ga_release_notes_po "Translation Deadline: GA rel-notes (PO Files complete)" {
          depends !ga_pot_trans
          flags translation
        }

        task ga_release_notes_rpm "Build fedora-release-notes.rpm" {
          depends !ga_release_notes_po
          length 2d
          flags docs
        }

      } #end final release notes


      # Three banners are created for the GA release (based on the Slogan from Marketing)
      # 1) large banner--fedoraproject.org front page
      # 2) "the release is out, go get it"--fedoraproject.org front page
      # 3) release name on start.fedoraproject.org
      # banners take one week to complete
      # banners should be completed one week before GA
      # banners are translated the week up until GA
      # translated during the week up until GA
      task ga_create_banners "Create Final Release Banners" {
        depends !!!TestingPhase.beta.testmile
        length 9d
        flags design
      }

      # Start one day before Final Change Deadline
      task create_ga_announce "Create GA Announcement (Docs & Marketing)" {
        depends !!!LaunchPhase.rc.shadow_before_final_deadline
        length 7d
        flags docs, marketing
      }

      task translate_ga_announce "GA Announcement available for translation (optional)" {
        depends !create_ga_announce
        length 5d
        flags translation
      }

      task ga_publish_banners "Add Final Release Banners to Website" {
        depends !ga_create_banners
        length 1d
        flags web
      }

      # web propertities need to be updated and translated
      # Tasks start at time Beta Release goes out
      # http://fedoraproject.org/en/index
      # http://fedoraproject.org/en/get-fedora
      # http://fedoraproject.org/en/join-fedora
      # http://fedoraproject.org/en/get-help
      task web_content_update "Update Website Content" {
        depends !!!TestingPhase.beta.beta_drop
        length 5d
        flags web
      }

      task web_freeze "Website String Freeze" {
        depends !web_content_update
        flags web
      }

      task web_create_pot "Create Website POT Files" {
        depends !web_freeze
        length 1d
        flags web
      }

      task trans_web "Translation Period for Website (POT to PO)" {
        depends !web_create_pot
        length 9d
        flags translation
      }

      task review_trans_web "Review and correct Website translations" {
        depends !trans_web
        length 4d
        flags translation, web
      }

      task finish_trans_web "Translation Deadline: Websites (POs done)" {
        depends !review_trans_web
        flags translation
      }

      task publish_trans_web "Publish Translations on Website (fedoraproject.org)" {
        depends !review_trans_web
        length 1d
        flags web
      }

      task final_meeting_reminder "Reminder: Final Release Readiness Meeting" {
        depends !!!TestingPhase.beta.beta_test {gaplength 5d}
        flags pm
      }

      task ga_meeting "${content_title} ${major} Final Release Readiness Meeting" {
        depends !final_meeting_reminder {gaplength 3d}
        flags releng, pm, quality, docs, design, marketing, translation, web
      }

      task shadow_before_final_compose "SHADOW: one week before RC Compose" {
        precedes !start_final_compose {gaplength 8d}
        flags hidden
      }

     task final_installer_build1 "Submit Installer Build for Final TC Compose" {
        depends !shadow_before_final_compose
        flags devel
      }

      task create_final_tc "Create 'Final' Test Compose (TC)" {
        depends !shadow_before_final_compose {gaplength 2d}
        flags releng, proto
      }

      task test_final_tc "Test 'Final' Test Compose (TC)" {
        depends !create_final_tc
        length 4d
        flags quality, proto
      }

     task final_installer_build "Submit Installer Build for Final RC Compose" {
        depends !final_change_deadline
        flags devel
      }

      task start_final_compose "Compose 'Final' RC: DVD, Live, Spins" {
        depends !final_change_deadline {gaplength 1d}
        length 1d
        flags releng, key, roadmap, proto
      }

      task early_iso "Obtain Final Release ISOs from Release Engineering for duplication" {
        depends !test_final {gaplength 2d}
        length 3d
        flags ambassadors
      }

      task regional_marketing "Regional Coordination with Marketing for Release Events" {
        depends !test_final {gaplength 2d}
        length 5d
        flags ambassadors
      }

      task deliver_final "Deliver RC to QA for Testing" {
        depends !start_final_compose
        flags releng, proto
      }

      task test_final "Test 'Final' RC" {
        depends !deliver_final
        length 4d
        flags quality
      }

      # for ics file
      task start_stage_final "Start Stage & Sync RC to Mirrors" {
        depends !test_final {gaplength 2d}
        flags releng
      }

      task notify_mirrors_final "Notify Mirrors of ${content_title} ${major} Final" {
        depends !start_stage_final {gaplength 1d}
        flags releng
      }


      task stage_final "Stage & Sync RC to Mirrors" {
        depends !test_final {gaplength 2d}
        length 3d
        flags releng, proto
      }

      task package_spins_ks "Branch spin-kickstarts and build package from new branch" {
        depends !create_final_tc
        flags spins
      }

      task freeze_spins_ks "Spins kickstart package Freeze" {
        depends !create_final_tc
        flags spins
      }

      task enable_updates "Enable ${content_title} ${major} Updates" {
        depends !!!TestingPhase.beta.beta_test {gaplength 2d}
        flags releng
      }

      task remind_final_go_not "Reminder: ${content_title} ${major} Final Go/No-Go Meeting" {
        depends !start_final_compose {gaplength 1d}
        flags pm
      }

      # Hold on Tuesday instead of Wednesday (Alpha and Beta)--this provides a little cushion
      # if something goes wrong.  Mirrors do not have to start sync until Thursday
      task final_go_not "${content_title} ${major} Final Go/No-Go Meeting (17:00 US Eeastern)" {
        depends !start_final_compose {gaplength 4d}
        flags releng, quality, docs, pm, proto, blocker
      }

      task final_export_control "Final Export Control Reporting" {
        depends !start_stage_final {gaplength 1d}
        flags releng, pm
      }

      # Zero-day tasks should start two Fridays before GA and finish the day before GA
      task zero_day_relnotes "Zero Day Release Notes" {

        task shadow_zero_day "SHADOW: Seven work week days before GA" {
          precedes !!!ga {gaplength 7d}
          flags hidden
        }

        task zero_day_web "0-Day rel-notes update docs.fp.org" {
          depends !shadow_zero_day
          length 6d
          flags docs
        }

        task zero_day_rpm "0-Day rel-notes build updated rpm" {
          depends !shadow_zero_day
          length 6d
          flags docs
        }

        task zero_day_pot "0-Day rel-notes generate POT" {
          depends !shadow_zero_day
          length 6d
          flags docs
        }

        task zero_day_trans "Translate 0-Day Release Notes" {
          depends !shadow_zero_day
          length 6d
          flags translation
        }

        task zero_day_deadline "Translation Deadline: 0-Day (PO Files complete)" {
          depends !zero_day_trans
          flags translation
        }

        task web_post "Add translated zero-day updates to docs.fp.org" {
          depends !zero_day_trans
          flags docs
        }

        task post_tech_notes "Update and post Fedora Technical Notes to docs.fedoraproject.org" {
          depends !!!ga
          flags docs
        }

        # Monday after Tuesday GA
        task push_updates_rpm "Push updated rel-notes RPMs to Updates repo" {
          depends !!!ga {gaplength 4d}
          flags docs
        }

      } # zero_day_relnotes

    } # end of rc task

    # Required for product pages--do not change description
    # Also make sure to confirm this date with Red Hat IS to
    # make sure it does not conflict with other releases.  This should
    # generally not be a problem because of:
    # https://fedoraproject.org/wiki/Infrastructure/Red_Hat_bandwidth_effects
    # Do NOT change the name of this task
    task ga "GA Release" {
      depends !rc.stage_final
      flags hidden, roadmap
    }

    task bugzilla_descrption "Reflect supported versions in Bugzilla product description" {
      depends !rc.stage_final
      flags pm
    }

    task final "Final (GA) Release" {
      depends !rc.stage_final
      flags quality, releng, docs, design, pm, translation, proto, devel, key, marketing, roadmap, spins, infrastructure, fpl
    }

    # ADJUST FOR NEW RELEASE--EOL Version
    task remind_eol "Send Email Reminder About Fedora 13 EOL Activities" {
      depends !ga {gaplength 2d}
      flags releng, pm, devel
    }

    task event_reports "Hold Release Events and Publish Event Reports" {
      depends !ga
      length 23d
      flags ambassadors
    }

    task spins_ga_ks "Build new spin-kickstarts package for updates (if necessary)" {
      depends !rc.stage_final
      flags spins
    }

    task marketing_post "Marketing Retrospective" {
      depends !final
      length 10d
      flags marketing
    }
  }

  /*
  # ADJUST FOR NEW RELEASE

  # manually set end date of maintenance based on...
  task MaintenancePhase "Maintenance Phase" {

  }
  */

  # Starting in Fedora 13, the docs group wanted the Guides work to span almost
  # the entire release cycle--they don't fit nicely into different phases.
  # So I'm putting them all here in their own block.

  # Run from Start until one week before GA
  task all_guides "${content_title} ${major} Guides" {

    # Run from Start until "Branch Guides"
    task continue_guides_trans "Continue translation of guides in branch of previous release " {
      length 70d
      flags translation
    }


    task test_branch_guides "Test master branches of guides against Alpha and correct" {
      depends !!TestingPhase.alpha.stage_alpha
      length 10d
      flags docs
    }

    task branch_guides "Branch Guides" {
      depends !test_branch_guides
      flags docs
    }

    task guides_pot "Create POT files for All Guides" {
      depends !branch_guides
      flags docs
    }

    task notify_trans "Notify trans that new Guide POT files available " {
      depends !guides_pot
      flags docs
    }

    task trans_all_guides "Translate All Guides (POT to PO)" {
      depends !guides_pot
      flags docs
    }

    task publish_draft "Publish draft guides" {
      depends !branch_guides
      flags docs
    }

    task annouce_publish_draft "Notify announce-list and f-devel-list draft guides available" {
      depends !publish_draft
      flags docs
    }


    # ADJUST FOR NEW RELEASE--make sure this task lands one day before GA
    task guides_trans "Translate All Guides (POT to PO)" {
      depends !guides_pot
      length 39d
      flags translation
    }

    task remind_trans_pot "Reminder to Trans that new POT files are coming for all guides" {
      depends !!TestingPhase.alpha.stage_alpha {gaplength 8d}
      flags docs
    }

    # Wednesday, one week after Beta Change Deadline
    task srpm_review "Remind new guide owners SRPM package review" {
      depends !!TestingPhase.beta.beta_deadline {gaplength 6d}
      flags docs
    }

    task shadow_before_beta_deadline "SHADOW: for Friday before Beta deadline" {
      precedes !!TestingPhase.beta.beta_deadline {gaplength 1d}
      flags hidden
    }

    # Friday before Final Change Deadline
    task remind_trans "Reminder to Trans that Final Guides POT files are coming" {
      depends !shadow_before_beta_deadline
      flags docs
    }

    task guides_string_freeze "String Freeze All Guides" {
      depends !!LaunchPhase.rc.final_change_deadline
      flags docs
    }

    task generate_final_pot "Generate final POT files for Guides" {
      depends !guides_string_freeze
      flags docs
    }

    task notify_trans_final "Notify Trans of Final Guides POT availability" {
      depends !guides_string_freeze
      flags docs
    }

    # Monday to Friday, two weeks before GA
    task build_daily "Daily builds of Final guides for Translation" {
      length 9d
      depends !!LaunchPhase.rc.final_change_deadline
      flags docs
    }

    # Monday to Friday, two weeks before GA
    task review_daily "Review and correct Final Translated Guides (daily builds html)" {
      depends !!LaunchPhase.rc.final_change_deadline
      length 9d
      flags translation
    }

    # Friday before GA
    task shadow_guides_trans_deadline "SHADOW: Translation Deadline: All Final Guides" {
      precedes !!LaunchPhase.ga {gaplength 2d}
      flags hidden
    }

    # zero duration tasks (milestones/deadlines) need a shadow preceds task so they report correctly
    # Also needed for ICS files which only report milestones
    task guides_trans_deadline "Translation Deadline: All Final Guides" {
      depends !shadow_guides_trans_deadline
      flags translation
    }

    task test_guides_beta "Test guides against Beta and correct" {
      depends !!TestingPhase.beta.beta_drop
      length 4d
      flags docs
    }

    task refresh_pot "Refresh POT files for all guides against Beta" {
      depends !test_guides_beta
      flags docs
    }

    task notify_trans_refresh "Notify trans that POT files updated against Beta" {
      depends !refresh_pot
      flags docs
    }

    task republish_draft "Republish draft guides for Beta" {
      depends !test_guides_beta
      flags docs
    }

    task notify_revised_draft "Notify announce-list and f-devel-list revised draft guides available" {
      depends !republish_draft
      flags docs
    }

    # Friday before GA until the day before GA
    task guides_final_build "Final Build All Guides: All Languages" {
      depends !srpm_review
      length 3d
      flags docs
    }

    # Day before GA
    task shadow_publish_guides "SHADOW: Publish all guides to docs.fp.o (html,html-single,pdf)" {
      precedes !!LaunchPhase.ga {gaplength 2d}
      flags hidden
    }

    task publish_guides "Publish all guides to docs.fp.o (html,html-single,pdf)" {
      depends !shadow_publish_guides

      flags docs
    }

  } # end of "all_guides"


  # Elections http://fedoraproject.org/wiki/Elections
  # Board & FESCo are reelected in every release
  # FAmSCo Elections are held once a year near the Halloween release

  # ADJUST FOR NEW RELEASE
  task  elections "${content_title} ${next_major} Election Coordination" {

    # manually set start date that is five weeks before GA date (on a Tuesday)
    # this is cleaner than using 'precedes'
    # use 'duration' to make it easier for some tasks to land on weekends
    start 2011-04-05
    flags elections, fpl, pm

    # Don't forget to do this! Or else bad things happen.
    task remind "Remind advisory-board list of upcoming election schedule" {
    }

    task solicit "Solicit volunteers for questionnaire and town halls" {
      depends !remind
      duration 7d
    }

    task wiki_update "Update wiki page https://fedoraproject.org/wiki/Elections with required information" {
      depends !solicit
    }

    task advertise_elections  "Advertise elections schedule and pages" {
      depends !solicit
    }

    task announce_nominations "FPL/designee announces opening of nominations" {
      depends !solicit {gapduration 25d}
    }

    task open_questions "Questionnaire wrangler announces opening for questions"{
      depends !announce_nominations
    }

    task collect_questions "Collect question on the wiki"{
      depends !announce_nominations
      duration 8d
    }

    task collect_answers "Candidates write questionnaire answers" {
      depends !collect_questions
      duration 7d
    }

    task announce_town "Town hall wrangler announces schedule for town hall meetings" {
      depends !announce_nominations
    }

    task question_deadline "Questionnaire answers due from candidates" {
      depends !collect_answers
    }

    # five days before GA
    task present_answers "Wrangler presents questionnaire answers" {
      depends !collect_answers {gapduration 1d}
      duration 2d
    }

    task post_questions "All answers posted to questionnaire page, advertise to voters" {
      depends !present_answers
    }

    task town_hall "Town hall period" {
      depends !post_questions {gapduration 1d}
      duration 6d
    }

    # FIXME: think about adding infrastructure team here
    task voting_application "Finalize Voting Application" {
      duration 1d
      depends !town_hall
    }

    task voting_start "Voting Begins" {
      depends !voting_application
    }

    task voting "Voting for general elections" {
      depends !voting_application
      duration 6d
    }

    task voting_end "Voting Ends" {
      depends !voting
    }

    task announce_results "Announce Results" {
      depends !voting_end {gapduration 1d}
    }

  } # end elections

  # The release naming process for the next release should end three weeks prior
  # to the end of the current release
  # It is easiest to start this task by hardcoding the start date to be 6 weeks before GA
  # 2010-09-14
  # 1 week -- collect names
  # 1 week --fedora board reviews names
  # 2 weeks -- names reviewed by RHT legal
  # 1 week -- community vote on names

  # FIXME: is this start date right?
  # ADJUST FOR NEW RELEASE
  task naming "Name the ${content_title} ${next_major} Release" {
    start 2011-03-01   # manually set this date
    flags pm, fpl

    task gather "Collect ${content_title} ${next_major} Names on Wiki" {
      length 5.5d
    }

    task board "Board Review of Proposed ${content_title} ${next_major} Names" {
      depends !gather
      length 3d
    }

    task legal "Legal Review" {
      depends !board
      length 5d
    }

    task vote "Voting" {
      depends !legal
      length 4d
    }

    task announce_name "${content_title} ${next_major} Release Name Announced" {
      depends !vote {gapduration 1d}
      flags design, pm
    }
  } # end release naming


  task pr "Public Relations" {

    task video "Creative team videos" {
      flags fpl, pr

      task video_schedule "Meet w/Creative to schedule videos" {
        precedes !video1.review_spotlight1_video {gaplength 25d}
        length 5d
      }

      task video1 "Make spotlight video #1" {
        task review_spotlight1_video "Review video #1" {
          precedes !release_spotlight1_video
          length 15d
        }

        task release_spotlight1_video "Publish spotlight video #1" {
          depends !!!spotlight_feature_blogs.spotlight_feature1.spotlight_feature1_drop
        }
      }

      task video2 "Make spotlight video #2" {
        task review_spotlight2_video "Review video #2" {
          precedes !release_spotlight2_video
          length 15d
        }

        task release_spotlight2_video "Publish spotlight video #2" {
          depends !!!spotlight_feature_blogs.spotlight_feature3.spotlight_feature3_drop
        }
      }

      task release_video "Make release video" {
        task review_release_video "Review release video" {
          precedes !release_video
          length 20d
        }

        task release_video "Publish release video" {
          depends !!!!LaunchPhase.final
        }
      }

    } #end video

    task beta_release_blog "Beta press blog entry" {
      flags fpl, pr
      /**
      * By building the final task to be a 0-duration event
      * (milestone), depending on another given task date like a
      * release date, and having each other task below precede the
      * one following, these tasks should auto-adjust to fall on a
      * given date.
      */


      task beta_release_blog_draft "Start drafting Beta blog" {
        precedes !beta_release_blog_legal
        length 10d
      }

      task beta_release_blog_legal "Red Hat PR send Beta blog to Legal" {
        precedes !beta_release_blog_intl
        length 5d
      }

      task beta_release_blog_intl "Red Hat PR send Beta blog to intl-pr list" {
        precedes !beta_release_blog_drop
        length 6d
      }

      task beta_release_blog_drop "Red Hat PR publish and send Beta blog to media contacts" {
        depends !!!TestingPhase.beta.beta_drop
      }
    }

    task spotlight_feature_blogs "Spotlight feature press blogs" {
      task spotlight_feature1 "Spotlight feature #1" {
        task spotlight_feature1_draft "Draft spotlight #1 blog entry" {
          precedes !spotlight_feature1_legal
          length 5d
          flags fpl, pr
        }

        task spotlight_feature1_legal "Red Hat PR send spotlight #1 blog entry draft to legal" {
          precedes !spotlight_feature1_drop
          length 5d
          flags fpl, pr
        }

        task shadow_spotlight_feature1 "SHADOW: Three weeks until GA" {
          precedes !!!!LaunchPhase.final { gaplength 16d }
          length 1d
          flags hidden
        }

        task spotlight_feature1_drop "Red Hat PR publish spotlight #1 blog entry" {
          depends !shadow_spotlight_feature1
          flags fpl, pr
        }

      }

      task spotlight_feature2 "Spotlight feature #2" {
        task spotlight_feature2_draft "Draft spotlight #2 blog entry" {
          precedes !spotlight_feature2_legal
          length 5d
          flags fpl, pr
        }

        task spotlight_feature2_legal "Red Hat PR send spotlight #2 blog entry draft to legal" {
          precedes !spotlight_feature2_drop
          length 5d
          flags fpl, pr
        }

        task spotlight_feature2_drop "Red Hat PR publish spotlight #2 blog entry" {
          depends !shadow_spotlight_feature2
          flags fpl, pr
        }

        task shadow_spotlight_feature2 "SHADOW: Two weeks until GA" {
          precedes !!!!LaunchPhase.final { gaplength 11d }
          length 1d
          flags hidden
        }
      }

      task spotlight_feature3 "Spotlight feature #3" {
        task spotlight_feature3_draft "Draft spotlight #3 blog entry" {
          precedes !spotlight_feature3_legal
          length 5d
          flags fpl, pr
        }

        task spotlight_feature3_legal "Red Hat PR send spotlight #3 blog entry draft to legal" {
          precedes !spotlight_feature3_drop
          length 5d
          flags fpl, pr
        }

        task spotlight_feature3_drop "Red Hat PR publish spotlight #3 blog entry" {
          depends !shadow_spotlight_feature3
          flags fpl, pr
        }

        task shadow_spotlight_feature3 "SHADOW: One week until GA" {
          precedes !!!!LaunchPhase.final { gaplength 6d }
          duration 1d
          flags hidden
        }
      }
    }

    task usb_keys_prebriefs "USB Keys and media pre-briefs" {
      flags fpl, pr

      task buy_usb_keys "Purchase USB Keys" {
        precedes !prepare_usb_keys
        length 5d
      }

      task assess_press_kit "Check LiveUSB press review sheet for readiness" {
        precedes !update_press_one_sheet
        length 5d
      }

      task update_press_one_sheet "Update LiveUSB press review sheet" {
        precedes !send_usb_keys
        length 5d
      }

      task prepare_usb_keys "Prep USB keys with pre-release" {
        precedes !send_usb_keys
        length 5d
      }

      task send_usb_keys "Send USB keys to Red Hat PR for distribution" {
        precedes !media_prebriefs {gaplength 10d}
        length 3d
      }

      task distribute_usb_keys "Red Hat PR distribute USB keys to media contacts" {
        precedes !media_prebriefs {gaplength 7d}
        length 5d
      }

      task media_prebriefs "Hold media prebrief interviews" {
        precedes !!!LaunchPhase.final
        length 6d
      }
    }

    task redhat_com_update "Update Red Hat web site" {
      flags fpl, pr

      task web_graphics_discuss "Schedule meeting with Red Hat web team to plan launch" {
        length 5d
        precedes !web_promo_to_brand
      }

      task web_promo_to_brand "Send web promo ideas to Brand" {
        length 5d
        precedes !web_copy_review
      }

      task web_copy_review "Review and update www.redhat.com/Fedora copy" {
        length 5d
        precedes !web_copy_send_update
      }

      task web_copy_send_update "Send updated copy to Web team" {
        precedes !rh_web_goes_live { gaplength 11d }
        length 5d
      }

      task rh_web_goes_live "Red Hat website changes go live" {
        depends !!!LaunchPhase.final
      }
    }

    task ga_press_release "GA press release" {
      flags fpl, pr

      task ga_press_release_draft "Start drafting GA press release" {
        length 10d
        precedes !ga_press_release_legal
      }

      task ga_press_release_legal "Red Hat PR send GA press release to Legal" {
        length 5d
        precedes !ga_press_release_intl
      }

      task ga_press_release_intl "Red Hat PR send GA press release to intl-pr list" {
        length 6d
        precedes !ga_press_release_drop
      }

      task ga_press_release_drop "Red Hat PR publish and send GA press release to media contacts" {
        depends !!!LaunchPhase.final
      }
    }

    task ceo_blog "CEO press blog entry" {
      flags fpl, pr

      task ceo_prepare_final_rc "Prepare a final RC on USB for CEO" {
        precedes !ceo_send_final_rc
        length 2d
      }

      task ceo_send_final_rc "Send final RC USB key to CEO" {
        precedes !ceo_solicit_feedback
        length 2d
      }

      task ceo_solicit_feedback "Solicit CEO feedback on pre-release" {
        precedes !ceo_blog_draft
        length 4d
      }

      task ceo_blog_draft "Draft CEO blog" {
        precedes !ceo_blog_legal
        length 3d
      }

      task ceo_blog_legal "Red Hat PR send CEO blog to Legal" {
        precedes !ceo_blog_drop
        length 3d
      }

      task ceo_blog_drop "Red Hat PR publish and send CEO blog to media contacts" {
        depends !!!LaunchPhase.final {gaplength 1d}
      }
    }
  }

} # Bitter End