|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1204 (0x4b4)
Types: TextFile
Names: »B«
└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
└─⟦5cb1d1d7f⟧ »DATA«
└─⟦3b1ee7bd8⟧
└─⟦this⟧
separate (Tracker.Report_Generator.Milestone_Summary)
procedure Print_Summs is
----------------------------------------------------------------------
--| NAME: PRINT_SUMMS
--|
--| OVERVIEW:
--| This procedure prints out a milestone line. This line includes
--| the amount of time needed to complete the milestone by person,
--| the total time needed for the milestone, and the milestone's
--| percent complete.
--|
--| EXCEPTIONS HANDLED:
--| none
--|
--| HISTORY:
--| written by Bonnie Burkhardt March 1985
----------------------------------------------------------------------
begin
-- print out the milestone
Set_Col (Report_File, 5);
Put (Report_File, Ms_Ptr.Number, 3);
Set_Col (Report_File, 14);
for Pr_Index in Start_Pr .. Stop_Pr loop
Put (Report_File, Time_Done (Pr_Index), 5, 1, 0);
Put (Report_File, " ");
end loop;
Set_Col (Report_File, 115);
Put (Report_File, Ms_Time, 6, 1, 0);
Set_Col (Report_File, 125);
Put (Report_File, Current_Pct_Done.By_Ms (Ms_Index), 3, 2, 0);
Put (Report_File, '%');
New_Line (Report_File);
end Print_Summs;