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

⟦50275ebbf⟧ TextFile

    Length: 816 (0x330)
    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 Io;
with Common;
with Mapping_Context;
with Directory_Tools;
procedure Jump (Abbreviation : in String := "") is
    --
    Abbrev_File : Directory_Tools.Object.Handle :=
       Directory_Tools.Naming.Resolution (Mapping_Context & Abbreviation);
    --
    Object : Directory_Tools.Object.Handle :=
       Directory_Tools.Naming.Resolution
          ("_" & Directory_Tools.Naming.Full_Name (Abbrev_File));
    --
begin  
    if (Directory_Tools.Object.Is_Bad (Abbrev_File)) then
        Io.Put_Line (Io.Current_Error, "Abbreviation not found.");
    elsif (Directory_Tools.Object.Is_Bad (Object)) then
        Io.Put_Line (Io.Current_Error,
                     "Abbreviation maps to non-existent object.");
    else
        Common.Definition (Directory_Tools.Naming.Full_Name (Object));
    end if;
end Jump;