types.rec (707B)
1 # -*- mode: rec -*- 2 # 3 # Registry for HTTP status codes 4 # 5 %rec: HttpStatusCode 6 %key: Value 7 %typedef: ValueRange_t range 0 599 8 %type: Value ValueRange_t 9 %mandatory: Value 10 %typedef: Description_t regexp /^[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-][abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_\(\), -]*$/ 11 %type: Description Description_t 12 %unique: Description 13 %mandatory: Description 14 %typedef: Identifier_t regexp /^[ABCDEFGHIJKLMNOPQRSTUVWXYZ_][ABCDEFGHIJKLMNOPQRSTUVWXYZ_0123456789]*$/ 15 %type: Identifier Identifier_t 16 %unique: Identifier 17 %mandatory: Identifier 18 %allowed: Reference 19 %sort: Number 20 21 # Do not delete this comment; the above blank line is necessary syntax.