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 - download
Index: ┃ B T

⟦b2d96a1d3⟧ TextFile

    Length: 1005 (0x3ed)
    Types: TextFile
    Names: »B«

Derivation

└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦9b46a407a⟧ 
            └─⟦12c68c704⟧ 
                └─⟦this⟧ 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦458657fb6⟧ 
            └─⟦220843204⟧ 
                └─⟦this⟧ 

TextFile

with Common;
with Library;
with Object_Editor;
with Queue;
with String_Utilities;
with System_Utilities;

procedure Print_Window (Options : String := "<DEFAULT>";
                        Banner  : String := "<DEFAULT>";
                        Header  : String := "<DEFAULT>";
                        Footer  : String := "<DEFAULT>") is
    File_Name : constant String :=
       "!machine.temporary." & System_Utilities.User_Name & '_' &
          String_Utilities.Number_To_String
             (Integer (System_Utilities.Get_Job)) & '_' & Object_Editor.Name;
begin
    Common.Write_File (Name => File_Name);
    Queue.Print (Name    => File_Name,
                 Options => Options,
                 Banner  => Banner,
                 Header  => Header,
                 Footer  => Footer);
    Library.Destroy (Existing  => File_Name,
                     Threshold => 1,
                     Limit     => "<DIRECTORIES>",
                     Response  => "<PROFILE>");
end Print_Window;
pragma Main;