1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
|
<?php
/**
* registry.php -- Horde application registry.
*
* $Horde: horde/config/registry.php.dist,v 1.255.2.17 2006/07/21 15:49:46 jan Exp $
*
* This configuration file is used by Horde to determine which Horde
* applications are installed and where, as well as how they interact.
*
* Application registry
* --------------------
* The following settings register installed Horde applications.
* By default, Horde assumes that the application directories live
* inside the horde directory.
*
* Attribute Type Description
* --------- ---- -----------
* fileroot string The base filesystem path for the module's files.
* webroot string The base URI for the module.
* jsuri string The base URI for static javascript files.
* jsfs string The base filesystem path for static javascript files.
* themesuri string The base URI for the themes. This can be used to
* serve all icons and style sheets from a separate
* server.
* themesfs string The base file system directory for the themes.
* icon string The URI for an icon to show in menus for the module.
* Setting this will override the default theme-based
* logic in the code.
* name string The name used in menus and descriptions for a module
* status string 'inactive', 'hidden', 'notoolbar', 'heading',
* 'block', 'admin', or 'active'.
* provides string Service types the module provides.
* initial_page string The initial (default) page (filename) for the module.
* templates string The filesystem path to the templates directory.
* menu_parent string The name of the 'heading' group that this app should
* show up under.
* target string The (optional) target frame for the link.
* url string The (optional) URL of 'heading' entries.
*/
// We try to automatically determine the proper webroot for Horde
// here. This still assumes that applications live under horde3/. If
// this results in incorrect results for you, simply change the
// use of the $webroot variable in the 'horde' stanza below.
//
// Note for Windows users: the below assumes that your PHP_SELF
// variable uses forward slashes. If it does not, you'll have to tweak
// this.
if (isset($_SERVER['PHP_SELF'])) {
$webroot = preg_split(';/;', $_SERVER['PHP_SELF'], 2, PREG_SPLIT_NO_EMPTY);
$webroot = strstr(dirname(__FILE__), DIRECTORY_SEPARATOR . array_shift($webroot));
if ($webroot !== false) {
$webroot = preg_replace(array('/\\\\/', ';/config$;'), array('/', ''), $webroot);
} elseif ($webroot === false) {
$webroot = '';
} else {
$webroot = '/horde';
}
} else {
$webroot = '/horde';
}
$this->applications['horde'] = array(
'fileroot' => dirname(__FILE__) . '/..',
'webroot' => $webroot,
'initial_page' => 'login.php',
'name' => _("Horde"),
'status' => 'active',
'templates' => dirname(__FILE__) . '/../templates',
'provides' => 'horde'
);
$this->applications['mimp'] = array(
'fileroot' => dirname(__FILE__) . '/../mimp',
'webroot' => $this->applications['horde']['webroot'] . '/mimp',
'name' => _("Mobile Mail"),
'status' => 'notoolbar'
);
$this->applications['imp'] = array(
'fileroot' => dirname(__FILE__) . '/../imp',
'webroot' => $this->applications['horde']['webroot'] . '/imp',
'name' => _("Mail"),
'status' => 'active',
'provides' => 'mail',
);
$this->applications['ingo'] = array(
'fileroot' => dirname(__FILE__) . '/../ingo',
'webroot' => $this->applications['horde']['webroot'] . '/ingo',
'name' => _("Filters"),
'status' => 'active',
'provides' => array('mail/blacklistFrom', 'mail/showBlacklist', 'mail/whitelistFrom', 'mail/showWhitelist', 'mail/applyFilters', 'mail/canApplyFilters', 'mail/showFilters'),
'menu_parent' => 'imp'
);
$this->applications['sam'] = array(
'fileroot' => dirname(__FILE__) . '/../sam',
'webroot' => $this->applications['horde']['webroot'] . '/sam',
'name' => _("Spam"),
'status' => 'inactive',
// Uncomment this line if you want Sam to handle the blacklist filter
// instead of Ingo:
// 'provides' => array('mail/blacklistFrom', 'mail/showBlacklist', 'mail/whitelistFrom', 'mail/showWhitelist'),
'menu_parent' => 'imp'
);
$this->applications['forwards'] = array(
'fileroot' => dirname(__FILE__) . '/../forwards',
'webroot' => $this->applications['horde']['webroot'] . '/forwards',
'name' => _("Forwards"),
'status' => 'active',
'provides' => 'forwards',
'menu_parent' => 'imp',
);
$this->applications['vacation'] = array(
'fileroot' => dirname(__FILE__) . '/../vacation',
'webroot' => $this->applications['horde']['webroot'] . '/vacation',
'name' => _("Vacation"),
'status' => 'active',
'provides' => 'vacation',
'menu_parent' => 'imp'
);
$this->applications['imp-folders'] = array(
'status' => 'block',
'app' => 'imp',
'blockname' => 'tree_folders',
'menu_parent' => 'imp',
);
$this->applications['organizing'] = array(
'name' => _("Organizing"),
'status' => 'heading',
);
$this->applications['turba'] = array(
'fileroot' => dirname(__FILE__) . '/../turba',
'webroot' => $this->applications['horde']['webroot'] . '/turba',
'name' => _("Address Book"),
'status' => 'active',
'provides' => array('contacts', 'clients'),
'menu_parent' => 'organizing'
);
$this->applications['turba-menu'] = array(
'status' => 'block',
'app' => 'turba',
'blockname' => 'tree_menu',
'menu_parent' => 'turba',
);
$this->applications['kronolith'] = array(
'fileroot' => dirname(__FILE__) . '/../kronolith',
'webroot' => $this->applications['horde']['webroot'] . '/kronolith',
'name' => _("Calendar"),
'status' => 'active',
'provides' => 'calendar',
'menu_parent' => 'organizing'
);
$this->applications['kronolith-alarms'] = array(
'status' => 'block',
'app' => 'kronolith',
'blockname' => 'tree_alarms',
'menu_parent' => 'kronolith',
);
$this->applications['kronolith-menu'] = array(
'status' => 'block',
'app' => 'kronolith',
'blockname' => 'tree_menu',
'menu_parent' => 'kronolith',
);
$this->applications['mnemo'] = array(
'fileroot' => dirname(__FILE__) . '/../mnemo',
'webroot' => $this->applications['horde']['webroot'] . '/mnemo',
'name' => _("Notes"),
'status' => 'active',
'provides' => 'notes',
'menu_parent' => 'organizing'
);
$this->applications['nag'] = array(
'fileroot' => dirname(__FILE__) . '/../nag',
'webroot' => $this->applications['horde']['webroot'] . '/nag',
'name' => _("Tasks"),
'status' => 'active',
'provides' => 'tasks',
'menu_parent' => 'organizing'
);
$this->applications['genie'] = array(
'fileroot' => dirname(__FILE__) . '/../genie',
'webroot' => $this->applications['horde']['webroot'] . '/genie',
'name' => _("Wishlist"),
'status' => 'inactive',
'provides' => 'wishlist',
'menu_parent' => 'organizing'
);
$this->applications['trean'] = array(
'fileroot' => dirname(__FILE__) . '/../trean',
'webroot' => $this->applications['horde']['webroot'] . '/trean',
'name' => _("Bookmarks"),
'status' => 'inactive',
'provides' => 'bookmarks',
'menu_parent' => 'organizing'
);
$this->applications['trean-menu'] = array(
'status' => 'block',
'app' => 'trean',
'blockname' => 'tree_menu',
'menu_parent' => 'trean',
);
$this->applications['devel'] = array(
'name' => _("Development"),
'status' => 'heading',
);
$this->applications['chora'] = array(
'fileroot' => dirname(__FILE__) . '/../chora',
'webroot' => $this->applications['horde']['webroot'] . '/chora',
'name' => _("Version Control"),
'status' => 'active',
'menu_parent' => 'devel'
);
$this->applications['whups'] = array(
'fileroot' => dirname(__FILE__) . '/../whups',
'webroot' => $this->applications['horde']['webroot'] . '/whups',
'name' => _("Tickets"),
'status' => 'inactive',
'provides' => 'tickets',
'menu_parent' => 'devel'
);
$this->applications['luxor'] = array(
'fileroot' => dirname(__FILE__) . '/../luxor',
'webroot' => $this->applications['horde']['webroot'] . '/luxor',
'name' => _("X-Ref"),
'status' => 'inactive',
'menu_parent' => 'devel'
);
$this->applications['nic'] = array(
'fileroot' => dirname(__FILE__) . '/../nic',
'webroot' => $this->applications['horde']['webroot'] . '/nic',
'name' => _("Network"),
'status' => 'inactive',
'menu_parent' => 'devel'
);
$this->applications['info'] = array(
'name' => _("Information"),
'status' => 'heading',
);
$this->applications['klutz'] = array(
'fileroot' => dirname(__FILE__) . '/../klutz',
'webroot' => $this->applications['horde']['webroot'] . '/klutz',
'name' => _("Comics"),
'status' => 'inactive',
'provides' => 'comics',
'menu_parent' => 'info'
);
$this->applications['occam'] = array(
'fileroot' => dirname(__FILE__) . '/../occam',
'webroot' => $this->applications['horde']['webroot'] . '/occam',
'name' => _("Courses"),
'status' => 'inactive',
'menu_parent' => 'info'
);
$this->applications['mottle'] = array(
'fileroot' => dirname(__FILE__) . '/../mottle',
'webroot' => $this->applications['horde']['webroot'] . '/mottle',
'name' => _("MOTD"),
'status' => 'inactive',
'menu_parent' => 'info'
);
$this->applications['jonah'] = array(
'fileroot' => dirname(__FILE__) . '/../jonah',
'webroot' => $this->applications['horde']['webroot'] . '/jonah',
'name' => _("News"),
'status' => 'inactive',
'provides' => 'news',
'menu_parent' => 'info'
);
$this->applications['jonah-menu'] = array(
'status' => 'block',
'app' => 'jonah',
'blockname' => 'tree_menu',
'menu_parent' => 'jonah',
);
$this->applications['troll'] = array(
'fileroot' => dirname(__FILE__) . '/../troll',
'webroot' => $this->applications['horde']['webroot'] . '/troll',
'name' => _("Newsgroups"),
'status' => 'inactive',
'menu_parent' => 'info'
);
$this->applications['troll-menu'] = array(
'status' => 'block',
'app' => 'troll',
'blockname' => 'tree_menu',
'menu_parent' => 'troll',
);
$this->applications['goops'] = array(
'fileroot' => dirname(__FILE__) . '/../goops',
'webroot' => $this->applications['horde']['webroot'] . '/goops',
'name' => _("Search Engines"),
'status' => 'inactive',
'menu_parent' => 'info'
);
$this->applications['office'] = array(
'name' => _("Office"),
'status' => 'heading',
);
$this->applications['juno'] = array(
'fileroot' => dirname(__FILE__) . '/../juno',
'webroot' => $this->applications['horde']['webroot'] . '/juno',
'name' => _("Accounting"),
'status' => 'inactive',
'menu_parent' => 'office'
);
$this->applications['midas'] = array(
'fileroot' => dirname(__FILE__) . '/../midas',
'webroot' => $this->applications['horde']['webroot'] . '/midas',
'name' => _("Ads"),
'status' => 'inactive',
'menu_parent' => 'office'
);
$this->applications['hylax'] = array(
'fileroot' => dirname(__FILE__) . '/../hylax',
'webroot' => $this->applications['horde']['webroot'] . '/hylax',
'name' => _("Faxes"),
'status' => 'inactive',
'menu_parent' => 'office',
);
$this->applications['sesha'] = array(
'fileroot' => dirname(__FILE__) . '/../sesha',
'webroot' => $this->applications['horde']['webroot'] . '/sesha',
'name' => _("Inventory"),
'status' => 'inactive',
// Uncomment this line if you want Sesha to provide queue and version
// names instead of Whups:
// 'provides' => array('tickets/listQueues', 'tickets/getQueueDetails', 'tickets/listVersions', 'tickets/getVersionDetails'),
'menu_parent' => 'office',
);
$this->applications['thor'] = array(
'fileroot' => dirname(__FILE__) . '/../thor',
'webroot' => $this->applications['horde']['webroot'] . '/thor',
'name' => _("Projects"),
'status' => 'inactive',
'provides' => 'projects',
'menu_parent' => 'office'
);
$this->applications['rakim'] = array(
'fileroot' => dirname(__FILE__) . '/../rakim',
'webroot' => $this->applications['horde']['webroot'] . '/rakim',
'name' => _("Support"),
'status' => 'inactive',
'menu_parent' => 'office'
);
$this->applications['hermes'] = array(
'fileroot' => dirname(__FILE__) . '/../hermes',
'webroot' => $this->applications['horde']['webroot'] . '/hermes',
'name' => _("Time Tracking"),
'status' => 'inactive',
'menu_parent' => 'office',
'provides' => 'time'
);
$this->applications['hermes-watch'] = array(
'status' => 'block',
'app' => 'hermes',
'blockname' => 'stopwatch',
'menu_parent' => 'hermes',
);
$this->applications['myaccount'] = array(
'name' => _("My Account"),
'status' => 'heading',
);
$this->applications['gollem'] = array(
'fileroot' => dirname(__FILE__) . '/../gollem',
'webroot' => $this->applications['horde']['webroot'] . '/gollem',
'name' => _("File Manager"),
'status' => 'active',
'menu_parent' => 'myaccount',
'provides' => 'files',
);
$this->applications['gollem-menu'] = array(
'status' => 'block',
'app' => 'gollem',
'blockname' => 'tree_menu',
'menu_parent' => 'gollem',
);
$this->applications['passwd'] = array(
'fileroot' => dirname(__FILE__) . '/../passwd',
'webroot' => $this->applications['horde']['webroot'] . '/passwd',
'name' => _("Password"),
'status' => 'active',
'menu_parent' => 'myaccount'
);
$this->applications['jeta'] = array(
'fileroot' => dirname(__FILE__) . '/../jeta',
'webroot' => $this->applications['horde']['webroot'] . '/jeta',
'name' => _("SSH"),
'status' => 'inactive',
'menu_parent' => 'myaccount'
);
$this->applications['website'] = array(
'name' => _("Web Site"),
'status' => 'heading',
);
$this->applications['giapeto'] = array(
'fileroot' => dirname(__FILE__) . '/../giapeto',
'webroot' => $this->applications['horde']['webroot'] . '/giapeto',
'name' => _("CMS"),
'status' => 'inactive',
'provides' => 'cms',
'menu_parent' => 'website'
);
$this->applications['agora'] = array(
'fileroot' => dirname(__FILE__) . '/../agora',
'webroot' => $this->applications['horde']['webroot'] . '/agora',
'name' => _("Forums"),
'status' => 'inactive',
'provides' => 'forums',
'menu_parent' => 'website'
);
$this->applications['ulaform'] = array(
'fileroot' => dirname(__FILE__) . '/../ulaform',
'webroot' => $this->applications['horde']['webroot'] . '/ulaform',
'name' => _("Forms"),
'status' => 'inactive',
'menu_parent' => 'website'
);
$this->applications['volos'] = array(
'fileroot' => dirname(__FILE__) . '/../volos',
'webroot' => $this->applications['horde']['webroot'] . '/volos',
'name' => _("Guestbook"),
'status' => 'inactive',
'menu_parent' => 'website'
);
$this->applications['ansel'] = array(
'fileroot' => dirname(__FILE__) . '/../ansel',
'webroot' => $this->applications['horde']['webroot'] . '/ansel',
'name' => _("Photos"),
'status' => 'inactive',
'provides' => 'images',
'menu_parent' => 'website'
);
$this->applications['scry'] = array(
'fileroot' => dirname(__FILE__) . '/../scry',
'webroot' => $this->applications['horde']['webroot'] . '/scry',
'name' => _("Polls"),
'status' => 'inactive',
'provides' => 'polls',
'menu_parent' => 'website'
);
$this->applications['merk'] = array(
'fileroot' => dirname(__FILE__) . '/../merk',
'webroot' => $this->applications['horde']['webroot'] . '/merk',
'name' => _("Shopping"),
'status' => 'inactive',
'menu_parent' => 'website'
);
$this->applications['swoosh'] = array(
'fileroot' => dirname(__FILE__) . '/../swoosh',
'webroot' => $this->applications['horde']['webroot'] . '/swoosh',
'name' => _("SMS Messaging"),
'status' => 'inactive',
'provides' => 'sms',
'menu_parent' => 'website'
);
$this->applications['wicked'] = array(
'fileroot' => dirname(__FILE__) . '/../wicked',
'webroot' => $this->applications['horde']['webroot'] . '/wicked',
'name' => _("Wiki"),
'status' => 'inactive',
'provides' => 'wiki',
'menu_parent' => 'website'
);
$this->applications['vilma'] = array(
'fileroot' => dirname(__FILE__) . '/../vilma',
'webroot' => $this->applications['horde']['webroot'] . '/vilma',
'name' => _("Mail Admin"),
'status' => 'inactive',
'menu_parent' => 'administration'
);
|