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: ┃ T r

⟦d3e587183⟧ TextFile

    Length: 1234 (0x4d2)
    Types: TextFile
    Names: »rx.tmpl«

Derivation

└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦144d629ab⟧ 
                └─ ⟦this⟧ »./rx.tmpl« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦5cb9d2efd⟧ 
                └─ ⟦this⟧ »./rx.tmpl« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦610eb0a19⟧ 
                └─ ⟦this⟧ »./rx.tmpl« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦7d9cab9a9⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦8e9e227a9⟧ 
            └─⟦7d9cab9a9⟧ 
                └─ ⟦this⟧ »./rx.tmpl« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦85ff0a957⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦8e9e227a9⟧ 
            └─⟦85ff0a957⟧ 
                └─ ⟦this⟧ »./rx.tmpl« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦8fb0c967c⟧ 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦8e9e227a9⟧ 
            └─⟦8fb0c967c⟧ 
                └─ ⟦this⟧ »rx.tmpl« 
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS 
    └─ ⟦91c658230⟧ »DATA« 
        └─⟦5d656759a⟧ 
            └─⟦d97085656⟧ 
                └─ ⟦this⟧ »./rx.tmpl« 
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
    └─ ⟦fc9b38f02⟧ »DATA« 
        └─⟦8e9e227a9⟧ 
            └─⟦e9895db93⟧ 
                └─ ⟦this⟧ »./rx.tmpl« 

TextFile

#! /bin/csh -f
#
# rx - used to run the xinit program plus give some guarantee that
#      the keyboard will be useable afterwards.
# THIS VERSION IS FOR USE "BARE"; NOT UNDER SUNTOOLS.

#---bindir - X11 binaries directory
set bindir = (@BINDIR@)
#---appdef - X11 application-defaults directory
set appdef = (@APPDEF@)

#---Make sure that bindir is in the current search path.

foreach name($path)
    if ("$name" == "$bindir") goto inthere
end
set path=($path $bindir)
inthere:

#---If $DISPLAY does not exist then create it.

if (! $?DISPLAY) setenv DISPLAY 'unix:0'

#---See if an X server is running already.  If it is then abort all of this.

$bindir/xsvrrunning
if ($status) then
    echo 'An X server is already running for' $DISPLAY 
    exit 1
endif

#---Run xinit and tell it that the "program" to run is ~/.rxrc or else
#   $appdir/rxrc.  Always try to run kbd_mode afterwards; this trys to
#   guarantee that the keyboard will work even if the X server dies.
#   (The echo is used to get around a csh bug.)

if (-e ~/x11.out) mv ~/x11.out ~/x11.out.old
if (-e ~/.rxrc) then
    $bindir/xinit ~/.rxrc > ~/x11.out ; \
    $bindir/kbd_mode -a
else
    $bindir/xinit $appdef/rxrc > ~/x11.out ; \
    $bindir/kbd_mode -a
endif