|
|
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: 826 (0x33a)
Types: TextFile
Names: »B«
└─⟦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⟧
separate (Database_Interface.Get_Record)
function V_Decode (Ch : Character) return Version_Type is
begin
case Ch is
when '0' =>
return All_Versions;
when '1' =>
return Control;
when '2' =>
return Test;
when '3' =>
return Suppress;
when '4' =>
return Optimize;
when '5' =>
return Other;
when '?' =>
return Other; -- place holder
when others =>
return All_Versions;
Put ("*** Error in Version: ");
Put (Ch);
New_Line;
raise Consistency_Error;
end case;
end V_Decode;
--**********************************************************************
-- if the string is short enough, return it as is,
-- else truncate it.