DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦403f3a852⟧ TextFile

    Length: 1382 (0x566)
    Types: TextFile
    Names: »mas-dec.py«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/Chans/dirlist/mas-dec.py« 

TextFile

-- mas-dec.py:


-- @(#) $Header: /cs/research/pp/hubris/pp-beta/Chans/dirlist/RCS/mas-dec.py,v 5.0 90/09/20 15:46:40 pp Exp Locker: pp $
--
-- $Log:	mas-dec.py,v $
-- Revision 5.0  90/09/20  15:46:40  pp
-- rcsforce : 5.0 public release
-- 
--



MAS
	{
	joint-iso-ccitt
	mts(3)
	modules(0)
	mts-abstarct-service(1)
	}

DEFINITIONS IMPLICIT TAGS ::=

%{
#include "dlist.h"
%}

PREFIXES encode decode print

BEGIN

IMPORTS
	Name
		FROM IF
			{
			joint-iso-ccitt
			ds(5)
			modules(1)
			informationFramework(1)
			}

	StandardAttributeList,
	DomainDefinedAttributeList
		FROM OR ;

DECODER decode

ORName [[P ORName *]] ::= [APPLICATION 0] SEQUENCE {
--		address COMPONENTS OF ORAddress [[p &(parm->on_or)]],
-- COMPONENTS OF does not seem to work properly, expand by hand...

               	standard
                     StandardAttributeList [[p &(parm->on_or)]],
       	        domaindefined
               	    DomainDefinedAttributeList [[p &(parm->on_or)]] OPTIONAL,

-- 		directory-name [0] Name [[p &(parm->on_dn)]] OPTIONAL
-- Name is a choice, need explict tags
 		directory-name [0] EXPLICIT Name [[p &(parm->on_dn)]] OPTIONAL
		}
 
ORAddress [[P OR_ptr *]] ::= SEQUENCE {
               	standard
                     StandardAttributeList [[p parm]],
       	        domaindefined
               	    DomainDefinedAttributeList [[p parm]] OPTIONAL 
	       	}

END