diff --git a/configdoc/usage.xml b/configdoc/usage.xml
index 3967607e..f2d5843e 100644
--- a/configdoc/usage.xml
+++ b/configdoc/usage.xml
@@ -1,2 +1,443 @@
-
+
+
+
+ 131
+
+
+ 81
+
+
+ 53
+ 73
+ 348
+
+
+ 47
+
+
+
+
+ 157
+
+
+
+
+ 214
+
+
+
+
+ 218
+
+
+
+
+ 222
+
+
+
+
+ 275
+
+
+
+
+ 49
+
+
+
+
+ 83
+
+
+
+
+ 85
+
+
+
+
+ 88
+
+
+
+
+ 93
+
+
+
+
+ 267
+ 300
+
+
+
+
+ 272
+ 308
+
+
+
+
+ 304
+
+
+
+
+
+ 46
+
+
+
+
+ 75
+
+
+
+
+ 89
+
+
+
+
+ 222
+
+
+
+
+ 230
+
+
+
+
+ 247
+
+
+
+
+ 248
+
+
+
+
+ 251
+
+
+
+
+ 337
+
+
+
+
+ 338
+
+
+
+
+ 202
+
+
+ 258
+
+
+ 27
+
+
+ 36
+
+
+ 23
+
+
+
+
+ 209
+
+
+
+
+ 210
+
+
+
+
+ 221
+
+
+
+
+ 226
+
+
+
+
+ 229
+
+
+
+
+ 26
+
+
+
+
+ 88
+
+
+
+
+ 76
+
+
+
+
+ 80
+
+
+ 48
+
+
+
+
+ 267
+
+
+
+
+ 55
+
+
+ 12
+
+
+
+
+ 64
+
+
+
+
+ 65
+
+
+
+
+ 72
+
+
+
+
+ 41
+
+
+
+
+ 42
+
+
+
+
+ 28
+
+
+
+
+ 12
+
+
+ 12
+
+
+
+
+ 18
+
+
+
+
+ 19
+
+
+
+
+ 15
+
+
+
+
+ 20
+
+
+
+
+ 26
+
+
+
+
+ 28
+ 31
+
+
+
+
+ 54
+
+
+
+
+ 30
+
+
+
+
+ 13
+
+
+
+
+ 18
+
+
+ 20
+
+
+
+
+ 19
+
+
+
+
+ 25
+
+
+
+
+ 32
+
+
+
+
+ 11
+
+
+ 13
+
+
+
+
+ 62
+
+
+
+
+ 91
+
+
+
+
+
+
+
+ 14
+
+
+ 13
+
+
+ 19
+
+
+
+
+ 45
+
+
+
+
+ 49
+
+
+
+
+ 50
+
+
+
+
+ 15
+
+
+
+
+ 12
+
+
+
+
+ 13
+
+
+
+
+ 44
+
+
+
+
+ 70
+
+
+
+
+ 45
+
+
+ 19
+
+
+
+
+ 25
+
+
+
+
+ 26
+
+
+
+
+ 8
+
+
+
+
+ 14
+
+
+
+
+ 15
+
+
+
diff --git a/maintenance/config-scanner.php b/maintenance/config-scanner.php
index db91d7bd..2b4efa3f 100644
--- a/maintenance/config-scanner.php
+++ b/maintenance/config-scanner.php
@@ -108,19 +108,11 @@ foreach ($files as $file) {
consumeWhitespace($tokens, $i);
if (!testToken($tokens[$i], T_CONSTANT_ENCAPSED_STRING)) continue;
- $namespace = substr($tokens[$i][1], 1, -1);
-
- consumeWhitespace($tokens, $i);
- if (!testToken($tokens[$i], ',')) continue;
-
- consumeWhitespace($tokens, $i);
- if (!testToken($tokens[$i], T_CONSTANT_ENCAPSED_STRING)) continue;
- $directive = substr($tokens[$i][1], 1, -1);
+ $id = substr($tokens[$i][1], 1, -1);
$counter++;
$matched = true;
- $id = "$namespace.$directive";
if (!isset($tracker[$id])) $tracker[$id] = array();
if (!isset($tracker[$id][$file])) $tracker[$id][$file] = array();
$tracker[$id][$file][] = $line;