|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1308 (0x51c)
Types: TextFile
Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
└─⟦6f12a12be⟧ »DATA«
└─⟦this⟧
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
└─⟦d65440be7⟧ »DATA«
└─⟦this⟧
with Editor;
with Common;
with Io;
with String_Utilities;
procedure Go (To : String := "") is
Root : constant String := "!projects.odissey.";
Rs6k : constant String := ".rs6k_working.units";
R1000 : constant String := ".rev1_working.units";
function Locate (Fragment : String; Within : String) return Boolean is
begin
return String_Utilities.Locate
(Fragment, Within, Ignore_Case => True) /= 0;
end Locate;
begin
if Locate ("ker_Rs", To) then
Common.Definition (Root & "broker" & Rs6k);
elsif Locate ("ker_r1", To) then
Common.Definition (Root & "broker" & R1000);
elsif Locate ("age_rs", To) then
Common.Definition (Root & "message" & Rs6k);
elsif Locate ("age_r1", To) then
Common.Definition (Root & "message" & R1000);
elsif Locate ("port_rs", To) then
Common.Definition (Root & "transport" & Rs6k);
elsif Locate ("port_r1", To) then
Common.Definition (Root & "transport" & R1000);
elsif Locate ("tor_rs", To) then
Common.Definition (Root & "editor" & Rs6k);
elsif Locate ("tor_r1", To) then
Common.Definition (Root & "editor" & R1000);
else
Editor.Alert;
Io.Echo_Line ("unable to decode destination");
end if;
end Go;