1
0
Fork 0

isup: Use a different category name for the extensions

These should not show up in a different package
This commit is contained in:
Holger Hans Peter Freyther 2013-04-01 09:55:59 +02:00
parent 776dda4070
commit 5af90bdfd8
1 changed files with 10 additions and 10 deletions

View File

@ -17,16 +17,16 @@
"
ISUPNatureOfConnectionIndicators class extend [
satNoSat [ <category: '*-isup-extension'> ^ 2r00 ]
satOneSat [ <category: '*-isup-extension'> ^ 2r01 ]
satTwoSat [ <category: '*-isup-extension'> ^ 2r10 ]
satSpare [ <category: '*-isup-extension'> ^ 2r11 ]
satNoSat [ <category: 'isup-extension'> ^ 2r00 ]
satOneSat [ <category: 'isup-extension'> ^ 2r01 ]
satTwoSat [ <category: 'isup-extension'> ^ 2r10 ]
satSpare [ <category: 'isup-extension'> ^ 2r11 ]
cciNotRequired [ <category: '*-isup-extension'> ^ 2r00 ]
cciRequired [ <category: '*-isup-extension'> ^ 2r01 ]
cciPerformed [ <category: '*-isup-extension'> ^ 2r10 ]
cciSpare [ <category: '*-isup-extension'> ^ 2r11 ]
cciNotRequired [ <category: 'isup-extension'> ^ 2r00 ]
cciRequired [ <category: 'isup-extension'> ^ 2r01 ]
cciPerformed [ <category: 'isup-extension'> ^ 2r10 ]
cciSpare [ <category: 'isup-extension'> ^ 2r11 ]
ecdiNotIncluded [ <category: '*-isup-extension'> ^ 2r0 ]
ecdiIncluded [ <category: '*-isup-extension'> ^ 2r1 ]
ecdiNotIncluded [ <category: 'isup-extension'> ^ 2r0 ]
ecdiIncluded [ <category: 'isup-extension'> ^ 2r1 ]
]