aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-04-01 09:55:59 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-04-01 10:48:44 +0200
commit5af90bdfd8590b096f9d74637f9771a108fd7ec7 (patch)
treec71c21729df203a48df9f6bb58a770f848534dc9
parent776dda40705751f3d3cae46995b8a8005a2659ca (diff)
isup: Use a different category name for the extensions
These should not show up in a different package
-rw-r--r--isup/ISUPExtensions.st20
1 files changed, 10 insertions, 10 deletions
diff --git a/isup/ISUPExtensions.st b/isup/ISUPExtensions.st
index 63681e6..8571a01 100644
--- a/isup/ISUPExtensions.st
+++ b/isup/ISUPExtensions.st
@@ -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 ]
]