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

⟦21e02c2f7⟧ TextFile

    Length: 1742 (0x6ce)
    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.Personnel_Pkg)

--******************************************************************************
procedure Change_Pr_In_El (Pr_Record : in Personnel_Pointer;
                           New_Initials : in Pr_Init_Type) is
    -----------------------------------------------------------------------------
    --|
    --|  NAME: CHANGE_PR_IN_EL
    --|
    --|  OVERVIEW:
    --|    This procedure is called when a person is deleted from or modified
    --|    in the personnel list.  Before either of these actions can be taken,
    --|    the element list that contains people with the same name is walked.
    --|    This list is a field of the personnel data record.
    --|    The person's initials field of each element record is reassigned
    --|    the new person.
    --|
    --|  EXCEPTIONS HANDLED:
    --|    none
    --|
    --|  HISTORY:
    --|    Written by   May Lee   March 1985
    --|
    -----------------------------------------------------------------------------

    El_Record : Element_Pointer;   -- pr element list
    End_List : Boolean;

begin
    -- change the pr number field in el_record of the person's el list
    Start_Walk (Pr_Record.Element_List);

    loop
        Walk (Pr_Record.Element_List, El_Record, End_List);
        exit when End_List;

        if El_Record.More_Than_One_Person then
            for Ac_Index in 1 .. Num_Of_Activities loop
                if El_Record.People_Initials (Ac_Index) =
                   Pr_Record.Initials then
                    El_Record.People_Initials (Ac_Index) := New_Initials;
                end if;
            end loop;
        else
            El_Record.Person_Initials := New_Initials;
        end if;
    end loop;
end Change_Pr_In_El;