-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSummaryTimeline-ExtensionDemoPages.xml
More file actions
1833 lines (1788 loc) · 46.1 KB
/
SummaryTimeline-ExtensionDemoPages.xml
File metadata and controls
1833 lines (1788 loc) · 46.1 KB
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
<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.8/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.8/ http://www.mediawiki.org/xml/export-0.8.xsd" version="0.8" xml:lang="en">
<siteinfo>
<sitename>EVA Wiki</sitename>
<base>https://mod-dev2.jsc.nasa.gov/wiki/EVA/index.php?title=Main_Page</base>
<generator>MediaWiki 1.23.2</generator>
<case>first-letter</case>
<namespaces>
<namespace key="-2" case="first-letter">Media</namespace>
<namespace key="-1" case="first-letter">Special</namespace>
<namespace key="0" case="first-letter" />
<namespace key="1" case="first-letter">Talk</namespace>
<namespace key="2" case="first-letter">User</namespace>
<namespace key="3" case="first-letter">User talk</namespace>
<namespace key="4" case="first-letter">EVA Wiki</namespace>
<namespace key="5" case="first-letter">EVA Wiki talk</namespace>
<namespace key="6" case="first-letter">File</namespace>
<namespace key="7" case="first-letter">File talk</namespace>
<namespace key="8" case="first-letter">MediaWiki</namespace>
<namespace key="9" case="first-letter">MediaWiki talk</namespace>
<namespace key="10" case="first-letter">Template</namespace>
<namespace key="11" case="first-letter">Template talk</namespace>
<namespace key="12" case="first-letter">Help</namespace>
<namespace key="13" case="first-letter">Help talk</namespace>
<namespace key="14" case="first-letter">Category</namespace>
<namespace key="15" case="first-letter">Category talk</namespace>
<namespace key="102" case="first-letter">Property</namespace>
<namespace key="103" case="first-letter">Property talk</namespace>
<namespace key="104" case="first-letter">Type</namespace>
<namespace key="105" case="first-letter">Type talk</namespace>
<namespace key="106" case="first-letter">Form</namespace>
<namespace key="107" case="first-letter">Form talk</namespace>
<namespace key="108" case="first-letter">Concept</namespace>
<namespace key="109" case="first-letter">Concept talk</namespace>
<namespace key="5000" case="first-letter">Issue</namespace>
<namespace key="5001" case="first-letter">Issue talk</namespace>
</namespaces>
</siteinfo>
<page>
<title>USOS Reconfig EVAs</title>
<ns>0</ns>
<id>11852</id>
<revision>
<id>53105</id>
<parentid>53099</parentid>
<timestamp>2014-09-23T20:14:53Z</timestamp>
<contributor>
<username>Lwelsh</username>
<id>2</id>
</contributor>
<text xml:space="preserve" bytes="1056">'''[[SSRMS]]: [[PM]] [[FRAM]] Relocate from [[ESP-3]] to [[ESP-2]]''': Completed
{{Summary Timeline Output | 3A SSU & PMM Prep EVA Summary Timeline }}
{{Summary Timeline Output | PM Relocate / MTRA Install EVA Summary Timeline }}
'''[[SpX-5]]: [[IDA Cable Bag A]]'''
{{Summary Timeline Output | IDA 1 Deploy EVA Summary Timeline }}
{{Summary Timeline Output | IDA 1 Route & IDA 2 Deploy Summary Timeline }}
{{Summary Timeline Output | C2V2 Installation EVA Summary Timeline }}
{{Summary Timeline Output | IDA 1 Installation & Outfitting EVA Summary Timeline }}
'''[[SSRMS]]: [[BEAM]] Arrival on [[SpX-8]]'''
{{Summary Timeline Output | PMA 3 & PMM Prep EVA Summary Timeline }}
{{Summary Timeline Output | PMM Relocation Robotic Maneuver Summary Timeline }}
{{Summary Timeline Output | PMA 3 Relocation Robotic Maneuver Summary Timeline }}
{{Summary Timeline Output | PMA 3 Connections EVA Summary Timeline }}
{{Summary Timeline Output | IDA 2 Installation & Outfitting EVA Summary Timeline }}
[[Category:Summary Timeline Extension Demo Page]]</text>
<sha1>hheq9xp5gbh6fqqpfv3lxqj1aoxdf9r</sha1>
<model>wikitext</model>
<format>text/x-wiki</format>
</revision>
</page>
<page>
<title>3A SSU & PMM Prep EVA Summary Timeline</title>
<ns>0</ns>
<id>11850</id>
<revision>
<id>53199</id>
<parentid>53107</parentid>
<timestamp>2014-10-17T15:24:52Z</timestamp>
<contributor>
<username>Lwelsh</username>
<id>2</id>
</contributor>
<text xml:space="preserve" bytes="2948">{{Summary Timeline
|ST Title=3A SSU & PMM Prep EVA
|EVA Title=3A SSU & PMM Prep EVA
|Depends on=
|Related article=SSU, PMM
|EVA Duration hour=6
|EVA Duration minute=30
|Color Red Meaning=Eclipse Constrained SSU Tasks
|Color Orange Meaning=SSU
|Color Yellow Meaning=
|Color Green Meaning=PMM Prep
|Color Blue Meaning=
|Color Purple Meaning=
|Color Pink Meaning=
|Color Gray Meaning=
|Actor 1 name=MCC
|Actor 2 name=EV1
|Actor 3 name=EV2
|Actor 1 Display in Compact View=No
|Actor 2 Display in Compact View=Yes
|Actor 3 Display in Compact View=Yes
|Actor 1 Enable Get Aheads=No
|Actor 2 Enable Get Aheads=Yes
|Actor 3 Enable Get Aheads=Yes
|Actor 1 Tasks={{Actor 1 Task
|Title=Inhibit Pad
|Duration hour=0
|Duration minute=10
|Color=gray
|Related article=
|Free text=Reference [[JEDI]] Message
}}
|Actor 2 Tasks={{Actor 2 Task
|Title=Egress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=SSU Set Up
|Duration hour=1
|Duration minute=00
|Color=orange
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=SSU R&R
|Duration hour=0
|Duration minute=30
|Color=red
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=SSU Worksite Cleanup
|Duration hour=0
|Duration minute=15
|Color=orange
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=APFR/TS Relocate
|Duration hour=0
|Duration minute=30
|Color=green
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=CP07 Camera Group / Stanchion Removal
|Duration hour=1
|Duration minute=15
|Color=green
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=WETA Relocate CP08 to CP11
|Duration hour=0
|Duration minute=45
|Color=green
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=Camera Group Install CP08
|Duration hour=0
|Duration minute=45
|Color=green
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=Ingress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}
|Actor 3 Tasks={{Actor 3 Task
|Title=Egress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=SSU Set Up
|Duration hour=1
|Duration minute=00
|Color=orange
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=SSU R&R
|Duration hour=0
|Duration minute=30
|Color=red
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=SSU Worksite Cleanup
|Duration hour=0
|Duration minute=15
|Color=orange
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=APFR/TS Relocate
|Duration hour=0
|Duration minute=30
|Color=green
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=CP07 Camera Group / Stanchion Removal
|Duration hour=1
|Duration minute=15
|Color=green
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=Stanchion/WETA Relocate to CP11
|Duration hour=1
|Duration minute=30
|Color=green
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=Ingress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}
}}
[[Category:Summary Timeline Extension Demo Page]]</text>
<sha1>ar5s30h86pqtyi2g42xdlokenmkkxyn</sha1>
<model>wikitext</model>
<format>text/x-wiki</format>
</revision>
</page>
<page>
<title>PM Relocate / MTRA Install EVA Summary Timeline</title>
<ns>0</ns>
<id>11851</id>
<revision>
<id>53200</id>
<parentid>53044</parentid>
<timestamp>2014-10-17T15:25:04Z</timestamp>
<contributor>
<username>Lwelsh</username>
<id>2</id>
</contributor>
<text xml:space="preserve" bytes="3278">{{Summary Timeline
|ST Title=PM Relocate / MTRA Install EVA
|EVA Title=PM Relocate / MTRA Install EVA
|Depends on=PM FRAM Relocate from ESP-3 to ESP-2
|Related article=PM, MTRA,
|EVA Duration hour=6
|EVA Duration minute=30
|Color Red Meaning=
|Color Orange Meaning=MTRA
|Color Yellow Meaning=
|Color Green Meaning=
|Color Blue Meaning=PM
|Color Purple Meaning=
|Color Pink Meaning=
|Color Gray Meaning=
|Actor 1 name=
|Actor 2 name=EV1
|Actor 3 name=EV2
|Actor 1 Display in Compact View=No
|Actor 2 Display in Compact View=Yes
|Actor 3 Display in Compact View=Yes
|Actor 1 Enable Get Aheads=No
|Actor 2 Enable Get Aheads=Yes
|Actor 3 Enable Get Aheads=Yes
|Actor 1 Tasks=
|Actor 2 Tasks={{Actor 2 Task
|Title=Egress
|Duration hour=0
|Duration minute=35
|Color=gray
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=Prep MLI Tent on ESP-2
|Duration hour=0
|Duration minute=30
|Color=blue
|Related article=ESP-2
|Free text=Get-Ahead: Install Handrail Clamp on ESP-2 HR 8012
}}{{Actor 2 Task
|Title=MTRA Bag Temp Stow
|Duration hour=0
|Duration minute=25
|Color=orange
|Related article=MTRA
|Free text=Retrieve MTRA Bag & Cable Bag and stow zenith of MT or on CETA Cart
}}{{Actor 2 Task
|Title=Relocate EV2's ST to ESP-2
|Duration hour=0
|Duration minute=10
|Color=blue
|Related article=ST
|Free text=
}}{{Actor 2 Task
|Title=Failed Pump Module Install on ESP-2
|Duration hour=1
|Duration minute=10
|Color=blue
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=AGB Stow
|Duration hour=0
|Duration minute=25
|Color=blue
|Related article=AGB
|Free text=
}}{{Actor 2 Task
|Title=Failed PM Cleanup
|Duration hour=0
|Duration minute=30
|Color=blue
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=MTRA Box Installation
|Duration hour=2
|Duration minute=00
|Color=orange
|Related article=
|Free text=MTRA Box Install
Route W2/W4 Cable
Mate W4 Connections
}}{{Actor 2 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Actor 3 Tasks={{Actor 3 Task
|Title=Egress
|Duration hour=0
|Duration minute=35
|Color=gray
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=SSRMS Setup
|Duration hour=0
|Duration minute=40
|Color=blue
|Related article=SSRMS
|Free text=WIF Adapter Install
}}{{Actor 3 Task
|Title=Failed Pump Module Retrieve From POA
|Duration hour=0
|Duration minute=30
|Color=blue
|Related article=POA
|Free text=
}}{{Actor 3 Task
|Title=Failed Pump Module Install on ESP-2
|Duration hour=1
|Duration minute=5
|Color=blue
|Related article=ESP-2
|Free text=
}}{{Actor 3 Task
|Title=AGB Stow
|Duration hour=0
|Duration minute=20
|Color=blue
|Related article=AGB
|Free text=
}}{{Actor 3 Task
|Title=ETVCG CP13 Light R&R
|Duration hour=0
|Duration minute=50
|Color=orange
|Related article=ETVCG
|Free text=
}}{{Actor 3 Task
|Title=SSRMS Cleanup
|Duration hour=0
|Duration minute=30
|Color=blue
|Related article=SSRMS
|Free text=
}}{{Actor 3 Task
|Title=MTRA Box Installation
|Duration hour=1
|Duration minute=15
|Color=orange
|Related article=MTRA
|Free text=Route MTRA W1/W3 Cable
Mate Nadir Connections
Mate Box Connections
}}{{Actor 3 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Color White Meaning=
}}
[[Category:Summary Timeline Extension Demo Page]]</text>
<sha1>6rt3ua211ddq9jbj8bst39ov4b35co5</sha1>
<model>wikitext</model>
<format>text/x-wiki</format>
</revision>
</page>
<page>
<title>IDA 1 Deploy EVA Summary Timeline</title>
<ns>0</ns>
<id>11853</id>
<revision>
<id>53201</id>
<parentid>53045</parentid>
<timestamp>2014-10-17T15:25:11Z</timestamp>
<contributor>
<username>Lwelsh</username>
<id>2</id>
</contributor>
<text xml:space="preserve" bytes="1684">{{Summary Timeline
|ST Title=IDA 1 Deploy EVA
|EVA Title=IDA 1 Deploy EVA
|Depends on=IDA Cable Bag A
|Related article=IDA
|EVA Duration hour=6
|EVA Duration minute=30
|Color Red Meaning=
|Color Orange Meaning=
|Color Yellow Meaning=
|Color Green Meaning=IDA 1
|Color Blue Meaning=
|Color Purple Meaning=
|Color Pink Meaning=
|Color Gray Meaning=
|Actor 1 name=
|Actor 2 name=EV1
|Actor 3 name=EV2
|Actor 1 Display in Compact View=No
|Actor 2 Display in Compact View=Yes
|Actor 3 Display in Compact View=Yes
|Actor 1 Enable Get Aheads=No
|Actor 2 Enable Get Aheads=Yes
|Actor 3 Enable Get Aheads=Yes
|Actor 1 Tasks=
|Actor 2 Tasks={{Actor 2 Task
|Title=Egress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=Disconnect PMA 2
|Duration hour=1
|Duration minute=00
|Color=green
|Related article=PMA 2
|Free text=
}}{{Actor 2 Task
|Title=IDA 1 Deploy
|Duration hour=4
|Duration minute=15
|Color=green
|Related article=IDA
|Free text=Mod Kit #51727
}}{{Actor 2 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Actor 3 Tasks={{Actor 3 Task
|Title=Egress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=Disconnect PMA 2
|Duration hour=1
|Duration minute=00
|Color=green
|Related article=PMA 2
|Free text=
}}{{Actor 3 Task
|Title=IDA 1 Deploy
|Duration hour=4
|Duration minute=15
|Color=green
|Related article=IDA
|Free text=Mod Kit #51727
}}{{Actor 3 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Color White Meaning=
}}
[[Category:Summary Timeline Extension Demo Page]]</text>
<sha1>3vvp8ut78rw4sf4r88q0j5aast0f36c</sha1>
<model>wikitext</model>
<format>text/x-wiki</format>
</revision>
</page>
<page>
<title>IDA 1 Route & IDA 2 Deploy Summary Timeline</title>
<ns>0</ns>
<id>11854</id>
<revision>
<id>53202</id>
<parentid>53046</parentid>
<timestamp>2014-10-17T15:25:36Z</timestamp>
<contributor>
<username>Lwelsh</username>
<id>2</id>
</contributor>
<text xml:space="preserve" bytes="2262">{{Summary Timeline
|ST Title=IDA 1 Route & IDA 2 Deploy
|EVA Title=IDA 1 Route & IDA 2 Deploy
|Depends on=IDA 1 Deploy EVA, IDA Cable Bag B,
|Related article=IDA
|EVA Duration hour=6
|EVA Duration minute=30
|Color Red Meaning=
|Color Orange Meaning=
|Color Yellow Meaning=
|Color Green Meaning=IDA 1
|Color Blue Meaning=
|Color Purple Meaning=IDA 2
|Color Pink Meaning=
|Color Gray Meaning=
|Actor 1 name=
|Actor 2 name=EV1
|Actor 3 name=EV2
|Actor 1 Display in Compact View=No
|Actor 2 Display in Compact View=Yes
|Actor 3 Display in Compact View=Yes
|Actor 1 Enable Get Aheads=No
|Actor 2 Enable Get Aheads=Yes
|Actor 3 Enable Get Aheads=Yes
|Actor 1 Tasks=
|Actor 2 Tasks={{Actor 2 Task
|Title=Egress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=PMA 2 Cover Removal
|Duration hour=1
|Duration minute=00
|Color=green
|Related article=PMA 2 Cover
|Free text=
}}{{Actor 2 Task
|Title=Complete IDA 1 Cable Route
|Duration hour=2
|Duration minute=00
|Color=green
|Related article=
|Free text=W2256 – BLUE (IDA 2 STOW-JEM)
W2254 - WHITE/RED (IDA 2 STOW)
W2256 – BLUE (IDA 2 STOW-NODE 2)
W2250- GREEN
}}{{Actor 2 Task
|Title=IDA 2 Cable
|Duration hour=2
|Duration minute=15
|Color=purple
|Related article=
|Free text=W2288- White/Green(NODE 1 NADIR, FWD ENDCONE
}}{{Actor 2 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Actor 3 Tasks={{Actor 3 Task
|Title=Egress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=PMA 2 Cover Removal
|Duration hour=1
|Duration minute=00
|Color=green
|Related article=PMA 2 Cover
|Free text=
}}{{Actor 3 Task
|Title=Complete IDA 1 Cable Route
|Duration hour=2
|Duration minute=00
|Color=green
|Related article=
|Free text=W2272 – RED ( IDA 2 STOW)
W2264 - ORANGE
W2250 - GREEN
}}{{Actor 3 Task
|Title=IDA 2 Cable
|Duration hour=2
|Duration minute=15
|Color=purple
|Related article=
|Free text=W2260 – WHITE/ORANGE
W2289 WHITE/ PURPLE
W2287 - YELLOW (Get Ahead)
}}{{Actor 3 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Color White Meaning=
}}
[[Category:Summary Timeline Extension Demo Page]]</text>
<sha1>cceidquzt7phzgarxmq0dutcg3ocqzn</sha1>
<model>wikitext</model>
<format>text/x-wiki</format>
</revision>
</page>
<page>
<title>C2V2 Installation EVA Summary Timeline</title>
<ns>0</ns>
<id>11863</id>
<revision>
<id>53203</id>
<parentid>53047</parentid>
<timestamp>2014-10-17T15:25:43Z</timestamp>
<contributor>
<username>Lwelsh</username>
<id>2</id>
</contributor>
<text xml:space="preserve" bytes="3381">{{Summary Timeline
|ST Title=C2V2 Installation EVA
|EVA Title=C2V2 Installation EVA
|Depends on=
|Related article=C2V2
|EVA Duration hour=6
|EVA Duration minute=30
|Color Red Meaning=
|Color Orange Meaning=
|Color Yellow Meaning=
|Color Green Meaning=
|Color Blue Meaning=
|Color Purple Meaning=
|Color Pink Meaning=C2V2
|Color Gray Meaning=
|Actor 1 name=
|Actor 2 name=EV1
|Actor 3 name=EV2
|Actor 1 Display in Compact View=No
|Actor 2 Display in Compact View=Yes
|Actor 3 Display in Compact View=Yes
|Actor 1 Enable Get Aheads=No
|Actor 2 Enable Get Aheads=Yes
|Actor 3 Enable Get Aheads=Yes
|Actor 1 Tasks=
|Actor 2 Tasks={{Actor 2 Task
|Title=Egress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=MMOD Shield/C2V2 NZGL
|Duration hour=0
|Duration minute=35
|Color=pink
|Related article=MMOD Shield, NZGL
|Free text=
}}{{Actor 2 Task
|Title=P3 Boom Install
|Duration hour=0
|Duration minute=35
|Color=pink
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=P3 Cable 1 Route
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=P3 Cable 2 Route
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=P3 Antenna Install
|Duration hour=0
|Duration minute=20
|Color=pink
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=Translate for S3 Route
|Duration hour=0
|Duration minute=15
|Color=pink
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=S3 Cable 1 Route
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=S3 Cable 2 Route
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=S3 Antenna Install
|Duration hour=0
|Duration minute=15
|Color=pink
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Actor 3 Tasks={{Actor 3 Task
|Title=Egress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=MMOD Shield/C2V2 NZGL
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=MMOD Shield, NZGL
|Free text=
}}{{Actor 3 Task
|Title=S3 Boom Install
|Duration hour=0
|Duration minute=30
|Color=pink
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=P3 Cable 1 Route
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=P3 Cable 2 Route
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=P3 Antenna Install
|Duration hour=0
|Duration minute=15
|Color=pink
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=Translate for S3 Route
|Duration hour=0
|Duration minute=15
|Color=pink
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=S3 Cable 1 Route
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=S3 Cable 2 Route
|Duration hour=0
|Duration minute=45
|Color=pink
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=S3 Antenna Install
|Duration hour=0
|Duration minute=15
|Color=pink
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Color White Meaning=
}}
[[Category:Summary Timeline Extension Demo Page]]</text>
<sha1>qyhl63ktcw5v2a9u4zb6o1qrdivk3lk</sha1>
<model>wikitext</model>
<format>text/x-wiki</format>
</revision>
</page>
<page>
<title>IDA 1 Installation & Outfitting EVA Summary Timeline</title>
<ns>0</ns>
<id>11864</id>
<revision>
<id>53204</id>
<parentid>53048</parentid>
<timestamp>2014-10-17T15:25:49Z</timestamp>
<contributor>
<username>Lwelsh</username>
<id>2</id>
</contributor>
<text xml:space="preserve" bytes="1486">{{Summary Timeline
|ST Title=IDA 1 Installation & Outfitting EVA
|EVA Title=IDA 1 Installation & Outfitting EVA
|Depends on=IDA 1 Route & IDA 2 Deploy
|Related article=IDA,
|EVA Duration hour=6
|EVA Duration minute=30
|Color Red Meaning=
|Color Orange Meaning=
|Color Yellow Meaning=
|Color Green Meaning=IDA 1
|Color Blue Meaning=
|Color Purple Meaning=
|Color Pink Meaning=
|Color Gray Meaning=
|Actor 1 name=
|Actor 2 name=EV1
|Actor 3 name=EV2
|Actor 1 Display in Compact View=No
|Actor 2 Display in Compact View=Yes
|Actor 3 Display in Compact View=Yes
|Actor 1 Enable Get Aheads=No
|Actor 2 Enable Get Aheads=Yes
|Actor 3 Enable Get Aheads=Yes
|Actor 1 Tasks=
|Actor 2 Tasks={{Actor 2 Task
|Title=Egress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=IDA 1 Installation & Outfitting
|Duration hour=4
|Duration minute=40
|Color=green
|Related article=
|Free text=
}}{{Actor 2 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Actor 3 Tasks={{Actor 3 Task
|Title=Egress
|Duration hour=0
|Duration minute=30
|Color=gray
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=IDA 1 Installation & Outfitting
|Duration hour=4
|Duration minute=40
|Color=green
|Related article=
|Free text=
}}{{Actor 3 Task
|Title=Ingress
|Duration hour=0
|Duration minute=45
|Color=gray
|Related article=
|Free text=
}}
|Color White Meaning=
}}
[[Category:Summary Timeline Extension Demo Page]]</text>
<sha1>chhwzdq2y6lswwzukaqi6f0wair8cke</sha1>
<model>wikitext</model>
<format>text/x-wiki</format>
</revision>
</page>
<page>
<title>PMA 3 & PMM Prep EVA Summary Timeline</title>
<ns>0</ns>
<id>11865</id>
<revision>
<id>53205</id>
<parentid>53049</parentid>
<timestamp>2014-10-17T15:25:56Z</timestamp>
<contributor>
<username>Lwelsh</username>
<id>2</id>
</contributor>
<text xml:space="preserve" bytes="2654">{{Summary Timeline
|ST Title=PMA 3 & PMM Prep EVA
|EVA Title=PMA 3 & PMM Prep EVA
|Depends on=
|Related article=PMA 3, PMM,
|EVA Duration hour=6
|EVA Duration minute=30
|Color Red Meaning=
|Color Orange Meaning=HD Camera
|Color Yellow Meaning=Node 3/PMM
|Color Green Meaning=
|Color Blue Meaning=PMA 3
|Color Purple Meaning=
|Color Pink Meaning=
|Color Gray Meaning=
|Actor 1 name=
|Actor 2 name=EV1
|Actor 3 name=EV2
|Actor 1 Display in Compact View=No
|Actor 2 Display in Compact View=Yes
|Actor 3 Display in Compact View=Yes
|Actor 1 Enable Get Aheads=No
|Actor 2 Enable Get Aheads=Yes
|Actor 3 Enable Get Aheads=Yes
|Actor 1 Tasks=
|Actor 2 Tasks={{Actor 2 Task
|Title=Egress
|Duration hour=0