diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-01-27 22:07:04 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-01-27 22:07:04 -0500 |
commit | 914bc9f9c5ce29584e00553104ac991e6e178e7b (patch) | |
tree | b473316af79d2c58c5ecd84765fcaa9725269fed /lib/default.php | |
parent | e9995b0f6ab0788162e22c996e5ee0af416dd519 (diff) | |
parent | 9589985e29455e41ef915ff15b679fe2a01644a0 (diff) |
Merge branch '0.9.x' into 1.0.x
Conflicts:
lib/queuemanager.php
Diffstat (limited to 'lib/default.php')
-rw-r--r-- | lib/default.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/default.php b/lib/default.php index 4f24a6d22..a6b9919b2 100644 --- a/lib/default.php +++ b/lib/default.php @@ -56,7 +56,7 @@ $default = 'dupelimit' => 60, # default for same person saying the same thing 'textlimit' => 140, 'indent' => true, - 'use_x_sendfile' => false, + 'use_x_sendfile' => false ), 'db' => array('database' => 'YOU HAVE TO SET THIS IN config.php', @@ -81,6 +81,7 @@ $default = 'subsystem' => 'db', # default to database, or 'stomp' 'stomp_server' => null, 'queue_basename' => '/queue/statusnet/', + 'control_channel' => '/topic/statusnet-control', // broadcasts to all queue daemons 'stomp_username' => null, 'stomp_password' => null, 'monitor' => null, // URL to monitor ping endpoint (work in progress) @@ -119,6 +120,9 @@ $default = array('server' => null, 'dir' => null, 'path'=> null), + 'javascript' => + array('server' => null, + 'path'=> null), 'throttle' => array('enabled' => false, // whether to throttle edits; false by default 'count' => 20, // number of allowed messages in timespan @@ -261,5 +265,8 @@ $default = 'OpenID' => null), ), 'admin' => - array('panels' => array('design', 'site', 'user', 'paths')), + array('panels' => array('design', 'site', 'user', 'paths', 'access')), + 'singleuser' => + array('enabled' => false, + 'nickname' => null), ); |