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

⟦22eb6e786⟧ TextFile

    Length: 1379 (0x563)
    Types: TextFile
    Names: »B«

Derivation

└─⟦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⟧ 

TextFile

-- This is a template for changing key bindings for the Rational terminal
-- Installing this procedure, with the desired case entries, will change the
-- actions caused by those keys for any sessions that are created with
-- visibility to this procedure.

with Editor;
with Rational_Key_Names;

procedure Rational_Commands is
    use Rational_Key_Names;

    type Intent is (Prompt, Execute, Interrupt);

    Action : Intent;

    Key_1 : Key_Names;
    Key_2 : Key_Names;
    Key_3 : Key_Names;
    Key_4 : Key_Names;
    Key_5 : Key_Names;
    Key_6 : Key_Names;

begin
    case Action is

        when Prompt =>
            case Key_1 is
                when others =>
                    null;
            end case;

        when Execute =>
            case Key_1 is
                when Window =>
                    case Key_2 is
                        when '+' =>
                            Editor.Screen.Set_Lines (24);
                        when '-' =>
                            Editor.Screen.Set_Columns (80);
                        when others =>
                            null;
                    end case;
                when others =>
                    null;
            end case;

        when Interrupt =>
            case Key_2 is
                when others =>
                    null;
            end case;

    end case;

end Rational_Commands;