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

⟦0badc3de7⟧ TextFile

    Length: 1125 (0x465)
    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

with Activity;
with System_Utilities;
with String_Utilities;
with Editor;
with Common;
procedure Login_Dhe is

    Projects : constant String := "!users.dhe.projects";
    Elec : constant String := "electronic_signature_system";

    function Is_Session (Name : String) return Boolean is
    begin
        return String_Utilities.Equal
                  (Name, System_Utilities.Session_Name, Ignore_Case => True);
    end Is_Session;

begin

    if Is_Session ("mis") then
        Editor.Window.Frames (3);

        Activity.Set_Default (Projects & "." & Elec &
                              ".activities.full_activity");

        Common.Definition (Projects & "." & Elec);

        Common.Create_Command;

        Editor.Char.Insert_String ("Update_Database;");

        Common.Definition (Projects & "." & Elec &
                           ".activities.current_release");

        Editor.Window.Previous;
        Editor.Window.Transpose;
    else
        Editor.Window.Frames (4);

        Activity.Set_Default ("!release.current.activity");

        Common.Definition ("!users.dhe.projects");

    end if;


end Login_Dhe;