DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400

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

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦b79a83e26⟧ TextFile

    Length: 819 (0x333)
    Types: TextFile
    Notes: R1k Text-file segment

Derivation

└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000
    └─ ⟦5a81ac88f⟧ »Space Info Vol 1« 
        └─⟦bc41eb838⟧ 
            └─⟦this⟧ 

TextFile

--
-- This script returns an output file describing the files associated to
-- the specified model.
--
outfile : output;
root : Tmodule;
--
feature (Tmodule) associated () is
local
   sons : set [Tmodule];
   son  : Tmodule;
do                       
   outfile.fprint_f ("%s ", current.bodyf);
   if current.is_valued ("description") then
      outfile.fprint_f ("%s ", current.descf);
   end;
   sons := current.sons;
   for son in sons do
      son.associated;
   end;
end;                                          
--             
outfile.create ("**OUTPUT**");
outfile.open_write;
root := modelc_load ("**MODEL**",
                     "**ANNOTATIONS**",
                     "**ANNOTATION_TYPES**",
                     "M",
                     false);
root.associated;
outfile.fprint_f ("\n");
outfile.close;