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: T V

⟦ad9b72916⟧ TextFile

    Length: 1390 (0x56e)
    Types: TextFile
    Names: »V«

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

generic
    -- definition of items in forms
    type Items is (<>);

    -- names of forms
    type Forms is (<>);

    -- path to where work orders will reside
    Work_Order_Path : String;

    -- path to where work lists will reside
    Work_List_Path : String;

    -- full path to venture
    Venture_Path : String;

    -- not yet implemented
    Edit_Forms_In_Order : Boolean := True;
package Cm_Generic is

    procedure Create_Work_Order (Title : String := ">>NOTES<<");
    procedure Edit (Work_Order : String := ">>ORDER NAME<<"; For_Form : Forms);

    procedure Check_In (What_Object : String := "<CURSOR>";
                        Comments    : String := ">>COMMENTS<<";
                        Work_Order  : String := ">>ORDER NAME<<");

    procedure Check_Out (What_Object : String := "<CURSOR>";
                         Comments    : String := ">>COMMENTS<<";
                         Work_Order  : String := ">>ORDER NAME<<");

    procedure Display (Work_Order : String := ">>ORDER NAME<<");

    procedure Show_Work_Orders (For_Work_List : String := ">>WORK LIST<<");

    procedure Show_Info (For_Configuration : String := "<CURSOR>");

    package Form_Definition is
        procedure Add (Header : Items; Prompt : String; To_Form : Forms);
    end Form_Definition;

    package Initialization is
        procedure Init_Index;
    end Initialization;
end Cm_Generic;