|
|
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: 1182 (0x49e)
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 (Inquiry_Operations.Select_Attributes)
procedure Display_Options is
procedure Attribute_Status (Index : Attribute_Options.Attribute_Type) is
begin
Put ("Attribute: ");
Put (Attribute_Type'Image (Index));
Set_Col (To => 30);
Put ("Current value is: ");
Put_Line (Boolean'Image (Is_Set (Index)));
end Attribute_Status;
begin
New_Line; -- echo choice
Put_Line (" Display options are: ");
New_Line;
for Index in Attribute_Options.Attribute_Type loop
Attribute_Status (Index);
Set_Col (To => 30);
-- get choice
if Answer ("Do you wish to change?") then
if Is_Set (Index) then
Reset (Index);
else
Set (Index);
end if;
Set_Col (To => 50);
Put_Line ("... changed.");
end if;
end loop;
New_Line; -- echo choice
Put_Line (" Display options are: ");
New_Line;
for Index in Attribute_Options.Attribute_Type loop
Attribute_Status (Index);
end loop;
end Display_Options;
--*****************************************************************************