|
|
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: 1317 (0x525)
Types: TextFile
Names: »B«
└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13
└─⟦124ff5788⟧ »DATA«
└─⟦this⟧
└─⟦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 Text_Io;
with Parameter_Parser;
package body Umps_Parser is
function Get_Behavior_Host_Name (From : in String) return String is
type Test_Option_Id is (None, Give_Me_A_Number_Oh_Please);
package Parameter_Parser_Behavior_Hostname is
new Parameter_Parser (Option_Id => Test_Option_Id);
use Parameter_Parser_Behavior_Hostname;
Options : Iterator;
Success : Boolean;
Opt_Id : Test_Option_Id;
S : String (1 .. 128) := (1 .. 128 => ' ');
begin
Options := Parse (From);
if Is_Successful (Options) then
-- Opt_Id := Name (Options);
-- Text_Io.Put_Line (Get_Image (Options, Opt_Id));
-- Text_Io.Put_Line (Name (Options, Opt_Id));
if Has_Value (Options, Give_Me_A_Number_Oh_Please) then
-- Text_Io.Put_Line (Get_Image (Options,
-- Give_Me_A_Number_Oh_Please));
return (Get_Image (Options, Give_Me_A_Number_Oh_Please));
end if;
else
Text_Io.Put_Line (Diagnosis (Options, Name (Options)));
return "Not_Found";
end if;
exception
when others =>
Text_Io.Put_Line ("Exception : others");
end Get_Behavior_Host_Name;
end Umps_Parser;