DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: B T

⟦8ef0e3170⟧ TextFile

    Length: 1567 (0x61f)
    Types: TextFile
    Names: »B«

Derivation

└─⟦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⟧ 

TextFile

separate (Tracker.Report_Generator.Completion_Date_For_Ms)



procedure Print_Ms_Dates is
    ----------------------------------------------------------------------
    --|
    --|  NAME:  PRINT_MS_DATES
    --|
    --|  OVERVIEW:
    --|    This procedure prints a milestone completion date line. This line
    --|    includes the date complete for each person in the range
    --|    START_PR..STOP_PR.  If a person is not assigned to an element,
    --|    in the milestone, a "...." is printed.  If there is not enough time
    --|    for the person to finish working on the milestone, "99/99/99" is
    --|    printed.  If the person is finished working on the mileston, "DONE"
    --|    is printed.  Otherwise the completion date is printed.
    --|
    --|  EXCEPTIONS HANDLED:
    --|    none
    --|
    --|  HISTORY:
    --|    written by   Bonnie Burkhardt   March 1985
    --|
    ----------------------------------------------------------------------

begin
    -- print out this milestone
    Set_Col (Report_File, 3);
    Put (Report_File, Ms_Ptr.Number, 3);
    Set_Col (Report_File, 9);

    for Pr_Index in Start_Pr .. Stop_Pr loop
        Print_A_Date (Date_Done (Pr_Index), Work_Is_Left (Pr_Index));
        Put (Report_File, " ");
    end loop;

    -- output milestone total dates
    Set_Col (Report_File, 102);
    Print_A_Date (Prev_Date_Done);
    Set_Col (Report_File, 114);
    Print_A_Date (Ms_Date_Done, Ms_Work_Left);
    Set_Col (Report_File, 125);
    Print_A_Date (Ms_Ptr.Due_Date);
    New_Line (Report_File);
end Print_Ms_Dates;