From e4859d4bd70b1649e7ebe4cbb285a0993a837f85 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Thu, 13 Nov 2014 22:40:06 +0100 Subject: Changed two strange looking places in boot.php. There have been two places that looked wrong, but I don't know how I can test them. So please review and test if I am not wrong. --- boot.php | 43 ++++++++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/boot.php b/boot.php index d883dcc28..0feedf7a1 100755 --- a/boot.php +++ b/boot.php @@ -76,7 +76,7 @@ $DIRECTORY_FALLBACK_SERVERS = array( 'https://redmatrix.nl', 'https://whogotzot.com', 'https://red.zottel.red', - 'https://red.pixelbits.de' + 'https://red.pixelbits.de' ); @@ -635,7 +635,7 @@ class App { private $perms = null; // observer permissions private $widgets = array(); // widgets for this page - private $widgetlist = null; // widget ordering and inclusion directives + //private $widgetlist = null; // widget ordering and inclusion directives public $groups; public $language; @@ -712,13 +712,6 @@ class App { private $hostname; private $baseurl; private $path; - private $db; - - private $curl_code; - private $curl_headers; - - private $cached_profile_image; - private $cached_profile_picdate; function __construct() { @@ -847,12 +840,14 @@ class App { && array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) { $url = $this->config['system']['baseurl']; + return $url; } $scheme = $this->scheme; $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' ); + return $this->baseurl; } @@ -879,7 +874,6 @@ class App { if(x($parsed,'path')) $this->path = trim($parsed['path'],'\\/'); } - } function get_hostname() { @@ -953,9 +947,10 @@ class App { function get_widgets($location = '') { if($location && count($this->widgets)) { $ret = array(); - foreach($widgets as $w) - if($w['location'] == $location) + foreach($this->widgets as $w) { + if ($w['location'] == $location) $ret[] = $w; + } $arr = array('location' => $location, 'widgets' => $ret); call_hooks('get_widgets', $arr); return $arr['widgets']; @@ -1007,7 +1002,6 @@ class App { // always put main.js at the end $this->page['htmlhead'] .= head_get_main_js(); - } /** @@ -1017,11 +1011,11 @@ class App { * @param string $name */ function register_template_engine($class, $name = '') { - if ($name===""){ + if ($name === ""){ $v = get_class_vars( $class ); - if(x($v,"name")) $name = $v['name']; + if(x($v, "name")) $name = $v['name']; } - if ($name===""){ + if ($name === ""){ echo "template engine $class cannot be registered without a name.\n"; killme(); } @@ -1032,11 +1026,11 @@ class App { * return template engine instance. If $name is not defined, * return engine defined by theme, or default * - * @param strin $name Template engine name + * @param string $name Template engine name * @return object Template Engine instance */ function template_engine($name = ''){ - if ($name!=="") { + if ($name !== "") { $template_engine = $name; } else { $template_engine = 'smarty3'; @@ -1886,6 +1880,17 @@ function curPageURL() { return $pageURL; } +/** + * @brief Returns a custom navigation by name??? + * + * If no $navname provided load default page['nav'] + * + * @todo not fully implemented yet + * + * @param App $a global application object + * @param string $navname + * @return mixed + */ function get_custom_nav(&$a, $navname) { if(! $navname) return $a->page['nav']; @@ -1940,7 +1945,7 @@ function construct_page(&$a) { if($comanche) { if($a->layout['nav']) { - $a->page['nav'] = get_custom_nav($a->layout['nav']); + $a->page['nav'] = get_custom_nav($a, $a->layout['nav']); } } -- cgit v1.2.3 From a2d9dd18821d4e7717438f4addb41ed310819b8b Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Thu, 13 Nov 2014 13:58:04 -0800 Subject: violates new sql standards missed during merge --- mod/zfinger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/zfinger.php b/mod/zfinger.php index a1a62dd3f..6f4febc6f 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -116,7 +116,7 @@ function zfinger_init(&$a) { } else { // check if it has characteristics of a public forum based on custom permissions. - $t = q("select abook_my_perms from abook where abook_channel = %d and (abook_flags & %d) limit 1", + $t = q("select abook_my_perms from abook where abook_channel = %d and (abook_flags & %d)>0 limit 1", intval($e['channel_id']), intval(ABOOK_FLAG_SELF) ); -- cgit v1.2.3 From b5da015789876cda5581044647f2e4f8b7ee4e4c Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 13 Nov 2014 15:34:35 -0800 Subject: put timeout code in place but don't turn it on. --- include/zot.php | 13 +++++++------ view/js/acl.js | 16 +++++++++------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/include/zot.php b/include/zot.php index 2fd950acc..3ffc9b43f 100644 --- a/include/zot.php +++ b/include/zot.php @@ -202,7 +202,7 @@ function zot_finger($webbie,$channel,$autofallback = true) { $r = q("select xchan.*, hubloc.* from xchan left join hubloc on xchan_hash = hubloc_hash - where xchan_addr = '%s' and (hubloc_flags & %d)>0 limit 1", + where xchan_addr = '%s' and (hubloc_flags & %d) > 0 limit 1", dbesc($xchan_addr), intval(HUBLOC_FLAGS_PRIMARY) ); @@ -301,7 +301,7 @@ function zot_refresh($them,$channel = null, $force = false) { if($them['hubloc_url']) $url = $them['hubloc_url']; else { - $r = q("select hubloc_url from hubloc where hubloc_hash = '%s' and ( hubloc_flags & %d )>0 limit 1", + $r = q("select hubloc_url from hubloc where hubloc_hash = '%s' and ( hubloc_flags & %d ) > 0 limit 1", dbesc($them['xchan_hash']), intval(HUBLOC_FLAGS_PRIMARY) ); @@ -383,7 +383,7 @@ function zot_refresh($them,$channel = null, $force = false) { } } - $r = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d)>0 limit 1", + $r = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d) > 0 limit 1", dbesc($x['hash']), intval($channel['channel_id']), intval(ABOOK_FLAG_SELF) @@ -409,7 +409,7 @@ function zot_refresh($them,$channel = null, $force = false) { $y = q("update abook set abook_their_perms = %d, abook_dob = '%s' where abook_xchan = '%s' and abook_channel = %d - and not (abook_flags & %d)>0 ", + and not (abook_flags & %d) > 0 ", intval($their_perms), dbesc($next_birthday), dbesc($x['hash']), @@ -421,7 +421,8 @@ function zot_refresh($them,$channel = null, $force = false) { // if they are in your address book but you aren't in theirs, and/or this does not // match your current connected state setting, toggle it. - + // FIXME: uncoverted to postgres + // FIXME: when this was enabled, all contacts became unconnected. Currently disabled intentionally // $y1 = q("update abook set abook_flags = (abook_flags ^ %d) // where abook_xchan = '%s' and abook_channel = %d // and not (abook_flags & %d) limit 1", @@ -471,7 +472,7 @@ function zot_refresh($them,$channel = null, $force = false) { $new_perms = get_all_perms($channel['channel_id'],$x['hash']); if($new_perms != $previous_perms) { // Send back a permissions update if permissions have changed - $z = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d)>0 limit 1", + $z = q("select * from abook where abook_xchan = '%s' and abook_channel = %d and not (abook_flags & %d) > 0 limit 1", dbesc($x['hash']), intval($channel['channel_id']), intval(ABOOK_FLAG_SELF) diff --git a/view/js/acl.js b/view/js/acl.js index eb702d2b0..f9fd66bab 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -25,14 +25,16 @@ function ACL(backend_url, preset){ /*events*/ $(document).ready(function() { - that.showall.click(that.on_showall); - $(document).on('click','.acl-button-show',that.on_button_show); - $(document).on('click','.acl-button-hide',that.on_button_hide); - $("#acl-search").keypress(that.on_search); +// setTimeout( function() { + that.showall.click(that.on_showall); + $(document).on('click','.acl-button-show',that.on_button_show); + $(document).on('click','.acl-button-hide',that.on_button_hide); + $("#acl-search").keypress(that.on_search); - /* startup! */ - that.get(0,100); - that.on_submit(); + /* startup! */ + that.get(0,100); + that.on_submit(); +// }, 5000 ); }); } -- cgit v1.2.3 From e8b77fbdff6cfd9455db378b5edb00fece74fea2 Mon Sep 17 00:00:00 2001 From: Klaus Weidenbach Date: Fri, 14 Nov 2014 00:45:25 +0100 Subject: Fixed a variable conflict in mod/xchan.php. A variable $rr inside the foreachs was used twice. Add translation to mod/xchan.php. --- boot.php | 2 +- mod/xchan.php | 19 +++++++++---------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/boot.php b/boot.php index 0feedf7a1..55ae3cc66 100755 --- a/boot.php +++ b/boot.php @@ -950,7 +950,7 @@ class App { foreach($this->widgets as $w) { if ($w['location'] == $location) $ret[] = $w; - } + } $arr = array('location' => $location, 'widgets' => $ret); call_hooks('get_widgets', $arr); return $arr['widgets']; diff --git a/mod/xchan.php b/mod/xchan.php index 714603f6e..69fbdb77d 100644 --- a/mod/xchan.php +++ b/mod/xchan.php @@ -3,16 +3,15 @@ function xchan_content(&$a) { - - $o .= '

Xchan Lookup

'; + $o = '

' . t('Xchan Lookup') . '

'; $o .= '
'; - $o .= 'Lookup xchan beginning with (or webbie): '; - $o .= '
'; - - $o .= '

'; + $o .= t('Lookup xchan beginning with (or webbie): '); + $o .= ''; + $o .= ''; + $o .= '

'; - if(x($_GET,'addr')) { + if(x($_GET, 'addr')) { $addr = trim($_GET['addr']); $r = q("select * from xchan where xchan_hash like '%s%%' or xchan_addr = '%s' group by xchan_hash", @@ -22,15 +21,15 @@ function xchan_content(&$a) { if($r) { foreach($r as $rr) { - $o .= str_replace(array("\n"," "),array("
"," "),print_r($rr,true)) . EOL; + $o .= str_replace(array("\n", " "), array("
", " "), print_r($rr, true)) . EOL; $s = q("select * from hubloc where hubloc_hash like '%s'", dbesc($r[0]['xchan_hash']) ); if($s) { - foreach($s as $rr) - $o .= str_replace(array("\n"," "),array("
"," "),print_r($rr,true)) . EOL; + foreach($s as $rrr) + $o .= str_replace(array("\n", " "), array("
", " "), print_r($rrr, true)) . EOL; } } } -- cgit v1.2.3 From edda931197c9e4d2642c60ab5ec2f1a80ce0e910 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 13 Nov 2014 16:34:36 -0800 Subject: mysql driver - in debug mode for statements that return true/false report the sql along with the result so we can match it to an offending statement. This has bugged me for some time but never got around to fixing it until now. --- include/dba/dba_mysqli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dba/dba_mysqli.php b/include/dba/dba_mysqli.php index 19907705b..c71f493b0 100755 --- a/include/dba/dba_mysqli.php +++ b/include/dba/dba_mysqli.php @@ -40,7 +40,7 @@ class dba_mysqli extends dba_driver { if(($result === true) || ($result === false)) { if($this->debug) { - logger('dba_mysqli: DEBUG: returns ' . (($result) ? 'true' : 'false')); + logger('dba_mysqli: DEBUG: ' . printable($sql) . ' returns ' . (($result) ? 'true' : 'false')); } return $result; } -- cgit v1.2.3 From ee38bebbd6a641eb953eacf493c085053442d972 Mon Sep 17 00:00:00 2001 From: Habeas Codice Date: Thu, 13 Nov 2014 17:57:21 -0800 Subject: Add bitwise xor to db_getfunc() --- include/dba/dba_driver.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index ddff80d7c..103dc8fcc 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -361,6 +361,10 @@ function db_getfunc($f) { 'regexp'=>array( DBTYPE_MYSQL=>'REGEXP', DBTYPE_POSTGRES=>'~' + ), + '^'=>array( + DBTYPE_MYSQL=>'^', + DBTYPE_POSTGRES=>'#' ) ); $f = strtolower($f); -- cgit v1.2.3 From 3d55c9da861f892e53d4303f83da37de7d12996f Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 13 Nov 2014 18:50:46 -0800 Subject: buttonify some design elements that had not yet been buttonified --- view/tpl/blocklist.tpl | 6 +++--- view/tpl/layoutlist.tpl | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/view/tpl/blocklist.tpl b/view/tpl/blocklist.tpl index adf61f788..4068375cb 100644 --- a/view/tpl/blocklist.tpl +++ b/view/tpl/blocklist.tpl @@ -4,9 +4,9 @@ {{foreach $pages as $key => $items}} {{foreach $items as $item}}
- {{if $edit}} {{/if}} - {{if $view}} {{/if}} - {{if $preview}} {{/if}} + {{if $edit}} {{/if}} + {{if $view}} {{/if}} + {{*if $preview}} {{/if*}} {{$item.title}}
{{/foreach}} diff --git a/view/tpl/layoutlist.tpl b/view/tpl/layoutlist.tpl index 96c692c1c..0a0085497 100644 --- a/view/tpl/layoutlist.tpl +++ b/view/tpl/layoutlist.tpl @@ -4,10 +4,10 @@ {{foreach $pages as $key => $items}} {{foreach $items as $item}}
- {{if $edit}} {{/if}} - {{if $view}} {{/if}} - {{if $share}} {{/if}} - {{if $preview}} {{/if}} + {{if $edit}} {{/if}} + {{if $view}} {{/if}} + {{if $share}} {{/if}} + {{*if $preview}} {{/if*}} {{$item.title}}
{{/foreach}} -- cgit v1.2.3 From 8b1e83128a1a9db1c5438dadb407bed18f168e0c Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 15 Nov 2014 14:39:36 +0100 Subject: fix lost $sql_extra in recent sql query changes --- mod/photos.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/photos.php b/mod/photos.php index 95fa162c9..ab1e4b48a 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1175,7 +1175,7 @@ function photos_content(&$a) { $r = q("SELECT p.resource_id, p.id, p.filename, p.type, p.album, p.scale, p.created FROM photo p INNER JOIN (SELECT resource_id, max(scale) scale FROM photo WHERE uid=%d AND album != '%s' AND album != '%s' - AND (photo_flags = %d or photo_flags = %d ) group by resource_id) ph + AND (photo_flags = %d or photo_flags = %d ) $sql_extra group by resource_id) ph ON (p.resource_id = ph.resource_id and p.scale = ph.scale) ORDER by p.created DESC LIMIT %d OFFSET %d", intval($a->data['channel']['channel_id']), dbesc('Contact Photos'), -- cgit v1.2.3 From 87cdfc1751d1e2f16cf651393049c5f6fb1a8efb Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 15 Nov 2014 14:03:28 -0800 Subject: doc updates --- doc/html/annotated.html | 29 +- doc/html/annotated.js | 1 + doc/html/apw_2php_2style_8php.html | 14 +- doc/html/auth_8php.html | 12 +- doc/html/bbcode_8php.html | 2 +- doc/html/blocks_8php.html | 18 + doc/html/blocks_8php.js | 3 +- doc/html/boot_8php.html | 202 ++++++--- doc/html/boot_8php.js | 6 +- doc/html/classApp-members.html | 89 ++-- doc/html/classApp.html | 150 +------ doc/html/classApp.js | 7 +- .../classRedMatrix_1_1RedDAV_1_1RedBrowser.html | 4 +- .../classRedMatrix_1_1RedDAV_1_1RedDirectory.html | 4 +- doc/html/classdba__driver-members.html | 19 +- doc/html/classdba__driver.html | 260 +++++++++++- doc/html/classdba__driver.js | 13 +- doc/html/classdba__driver.png | Bin 591 -> 823 bytes doc/html/classdba__mysql-members.html | 19 +- doc/html/classdba__mysql.html | 29 +- doc/html/classdba__mysqli-members.html | 19 +- doc/html/classdba__mysqli.html | 29 +- doc/html/classdba__postgres-members.html | 141 +++++++ doc/html/classdba__postgres.html | 457 +++++++++++++++++++++ doc/html/classdba__postgres.js | 16 + doc/html/classdba__postgres.png | Bin 0 -> 460 bytes doc/html/classes.html | 16 +- doc/html/classphoto__driver.html | 2 +- doc/html/classphoto__gd.html | 4 +- doc/html/classphoto__imagick.html | 4 +- doc/html/cloud_8php.html | 6 +- doc/html/conversation_8php.html | 4 +- doc/html/crypto_8php.html | 2 +- doc/html/datetime_8php.html | 6 +- doc/html/dba__driver_8php.html | 275 ++++++++++++- doc/html/dba__driver_8php.js | 11 +- doc/html/dba__postgres_8php.html | 120 ++++++ doc/html/dir_21bc5169ff11430004758be31dcfc6c4.html | 3 + doc/html/dir_21bc5169ff11430004758be31dcfc6c4.js | 3 + doc/html/dir__fns_8php.html | 2 +- doc/html/dir_d41ce877eb409a4791b288730010abe2.html | 2 - doc/html/dir_d41ce877eb409a4791b288730010abe2.js | 1 - doc/html/editblock_8php.html | 18 + doc/html/editblock_8php.js | 3 +- doc/html/editlayout_8php.html | 18 + doc/html/editlayout_8php.js | 3 +- doc/html/editwebpage_8php.html | 18 + doc/html/editwebpage_8php.js | 3 +- doc/html/extract_8php.html | 4 +- doc/html/features_8php.html | 2 +- doc/html/files.html | 246 +++++------ doc/html/full_8php.html | 4 +- doc/html/functions.html | 21 +- doc/html/functions_0x63.html | 12 +- doc/html/functions_0x65.html | 10 +- doc/html/functions_0x67.html | 12 +- doc/html/functions_0x69.html | 8 +- doc/html/functions_0x6e.html | 4 + doc/html/functions_0x6f.html | 4 + doc/html/functions_0x71.html | 7 +- doc/html/functions_0x75.html | 11 + doc/html/functions_func_0x63.html | 12 +- doc/html/functions_func_0x65.html | 10 +- doc/html/functions_func_0x67.html | 12 +- doc/html/functions_func_0x6f.html | 4 + doc/html/functions_func_0x71.html | 7 +- doc/html/functions_func_0x75.html | 7 + doc/html/functions_vars.html | 48 ++- doc/html/globals_0x62.html | 7 +- doc/html/globals_0x64.html | 38 +- doc/html/globals_0x65.html | 13 +- doc/html/globals_0x6c.html | 3 + doc/html/globals_0x6e.html | 3 - doc/html/globals_0x77.html | 3 + doc/html/globals_0x78.html | 5 +- doc/html/globals_func_0x62.html | 7 +- doc/html/globals_func_0x64.html | 32 +- doc/html/globals_func_0x65.html | 9 + doc/html/globals_func_0x6c.html | 3 + doc/html/globals_func_0x77.html | 3 + doc/html/globals_func_0x78.html | 2 +- doc/html/globals_vars_0x64.html | 6 + doc/html/globals_vars_0x6e.html | 3 - doc/html/globals_vars_0x78.html | 3 + doc/html/hierarchy.html | 75 ++-- doc/html/hierarchy.js | 3 +- doc/html/identity_8php.html | 10 +- doc/html/include_2config_8php.html | 8 +- doc/html/include_2network_8php.html | 4 +- doc/html/items_8php.html | 14 +- doc/html/language_8php.html | 2 +- doc/html/layouts_8php.html | 18 + doc/html/layouts_8php.js | 3 +- doc/html/navtree.js | 18 +- doc/html/navtreeindex0.js | 138 +++---- doc/html/navtreeindex1.js | 314 +++++++------- doc/html/navtreeindex2.js | 240 +++++------ doc/html/navtreeindex3.js | 236 +++++------ doc/html/navtreeindex4.js | 140 +++---- doc/html/navtreeindex5.js | 108 ++--- doc/html/navtreeindex6.js | 156 +++---- doc/html/navtreeindex7.js | 242 +++++------ doc/html/navtreeindex8.js | 184 ++++----- doc/html/navtreeindex9.js | 122 ++++-- doc/html/permissions_8php.html | 2 +- doc/html/php2po_8php.html | 4 +- doc/html/php_2default_8php.html | 4 +- doc/html/plugin_8php.html | 2 +- doc/html/redable_8php.html | 4 +- doc/html/reddav_8php.html | 6 +- doc/html/search/all_24.js | 8 +- doc/html/search/all_62.js | 1 + doc/html/search/all_63.js | 5 +- doc/html/search/all_64.js | 19 +- doc/html/search/all_65.js | 7 +- doc/html/search/all_67.js | 2 + doc/html/search/all_69.js | 1 + doc/html/search/all_6c.js | 1 + doc/html/search/all_6e.js | 2 +- doc/html/search/all_6f.js | 1 + doc/html/search/all_71.js | 3 +- doc/html/search/all_75.js | 3 + doc/html/search/all_77.js | 1 + doc/html/search/all_78.js | 3 +- doc/html/search/classes_64.js | 3 +- doc/html/search/files_64.js | 4 +- doc/html/search/functions_62.js | 1 + doc/html/search/functions_63.js | 5 +- doc/html/search/functions_64.js | 12 +- doc/html/search/functions_65.js | 7 +- doc/html/search/functions_67.js | 2 + doc/html/search/functions_6c.js | 1 + doc/html/search/functions_6f.js | 1 + doc/html/search/functions_71.js | 3 +- doc/html/search/functions_75.js | 4 +- doc/html/search/functions_77.js | 1 + doc/html/search/functions_78.js | 2 +- doc/html/search/variables_24.js | 8 +- doc/html/search/variables_64.js | 2 + doc/html/search/variables_69.js | 1 + doc/html/search/variables_6e.js | 2 +- doc/html/search/variables_75.js | 3 +- doc/html/search/variables_78.js | 1 + doc/html/setup_8php.html | 2 - doc/html/text_8php.html | 16 +- doc/html/theme_2mytheme_2php_2default_8php.html | 4 +- doc/html/todo.html | 18 +- doc/html/typo_8php.html | 2 +- doc/html/typohelper_8php.html | 2 +- doc/html/webpages_8php.html | 18 + doc/html/webpages_8php.js | 3 +- doc/html/zot_8php.html | 2 +- 152 files changed, 3305 insertions(+), 1591 deletions(-) create mode 100644 doc/html/classdba__postgres-members.html create mode 100644 doc/html/classdba__postgres.html create mode 100644 doc/html/classdba__postgres.js create mode 100644 doc/html/classdba__postgres.png create mode 100644 doc/html/dba__postgres_8php.html diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 8ccd006ba..e56263af5 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -129,22 +129,23 @@ $(document).ready(function(){initNavTree('annotated.html','');}); oCBaseObject oCCache oCConversation -oCdba_driver +oCdba_driverAbstract database driver class oCdba_mysql oCdba_mysqli -oCenotify -oCFKOAuth1 -oCFKOAuthDataStore -oCFriendicaSmarty -oCFriendicaSmartyEngine -oCItem -oCITemplateEngine -oCphoto_driver -oCphoto_gd -oCphoto_imagick -oCProtoDriver -oCTemplate -\CZotDriver +oCdba_postgres +oCenotify +oCFKOAuth1 +oCFKOAuthDataStore +oCFriendicaSmarty +oCFriendicaSmartyEngine +oCItem +oCITemplateEngine +oCphoto_driver +oCphoto_gd +oCphoto_imagick +oCProtoDriver +oCTemplate +\CZotDriver diff --git a/doc/html/annotated.js b/doc/html/annotated.js index 79baf4d64..d812058de 100644 --- a/doc/html/annotated.js +++ b/doc/html/annotated.js @@ -14,6 +14,7 @@ var annotated = [ "dba_driver", "classdba__driver.html", "classdba__driver" ], [ "dba_mysql", "classdba__mysql.html", "classdba__mysql" ], [ "dba_mysqli", "classdba__mysqli.html", "classdba__mysqli" ], + [ "dba_postgres", "classdba__postgres.html", "classdba__postgres" ], [ "enotify", "classenotify.html", null ], [ "FKOAuth1", "classFKOAuth1.html", "classFKOAuth1" ], [ "FKOAuthDataStore", "classFKOAuthDataStore.html", "classFKOAuthDataStore" ], diff --git a/doc/html/apw_2php_2style_8php.html b/doc/html/apw_2php_2style_8php.html index 86bcb312b..6c183a3a5 100644 --- a/doc/html/apw_2php_2style_8php.html +++ b/doc/html/apw_2php_2style_8php.html @@ -118,9 +118,9 @@ Variables    $x = splitFilename($font)   - $fname = $x[0] + $fname = $x[0]   - $fext = $x[1] + $fext = $x[1]   if(file_exists('view/theme/apw/font/'.$fname.
'i.'.$fext)) if(file_exists('view/theme/apw/font/'.$fname.
@@ -143,7 +143,7 @@ Variables
- +
$fext = $x[1]$fext = $x[1]
@@ -155,7 +155,7 @@ Variables
- +
$fname = $x[0]$fname = $x[0]
@@ -246,7 +246,7 @@ Variables
-

Referenced by admin_page_channels(), admin_page_channels_post(), admin_page_users(), admin_page_users_post(), all_friends(), app_destroy(), app_install(), app_installed(), app_list(), build_sync_packet(), catblock(), chat_message(), chatroom_list(), chatroom_list_count(), check_item_source(), check_list_permissions(), common_friends(), common_friends_zcid(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), del_pconfig(), delete_imported_item(), diaspora_get_contact_by_handle(), drop_items(), event_addtocal(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), get_all_perms(), get_channel_default_perms(), get_pconfig(), get_theme_uid(), get_things(), get_words(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), import_channel_photo(), item_add_cid(), item_expire(), item_post(), item_remove_cid(), item_store_update(), items_fetch(), list_post_dates(), load_contact_links(), load_pconfig(), local_dir_update(), FKOAuth1\loginUser(), menu_add_item(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), mini_group_select(), mood_init(), new_contact(), notifier_run(), pdl_selector(), perm_is_allowed(), photo_init(), poke_init(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), update_feed_item(), widget_archive(), widget_follow(), widget_item(), widget_tagcloud(), and zot_feed().

+

Referenced by admin_page_channels(), admin_page_channels_post(), admin_page_users(), admin_page_users_post(), all_friends(), app_destroy(), app_install(), app_installed(), app_list(), blocks_content(), build_sync_packet(), catblock(), chat_message(), chatroom_list(), chatroom_list_count(), check_item_source(), check_list_permissions(), common_friends(), common_friends_zcid(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), del_pconfig(), delete_imported_item(), diaspora_get_contact_by_handle(), drop_items(), editblock_content(), editlayout_content(), editwebpage_content(), event_addtocal(), events_post(), feature_enabled(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), follow_init(), get_all_perms(), get_channel_default_perms(), get_pconfig(), get_theme_uid(), get_things(), get_words(), group_add(), group_add_member(), group_byname(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_feed(), import_channel_photo(), item_add_cid(), item_expire(), item_post(), item_remove_cid(), item_store_update(), items_fetch(), layouts_content(), list_post_dates(), load_contact_links(), load_pconfig(), local_dir_update(), FKOAuth1\loginUser(), menu_add_item(), menu_content(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit_item(), menu_fetch(), menu_post(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_init(), new_contact(), notifier_run(), pdl_selector(), perm_is_allowed(), photo_init(), poke_init(), posted_dates(), private_messages_list(), remove_community_tag(), send_message(), service_class_allows(), service_class_fetch(), set_pconfig(), Conversation\set_profile_owner(), photo_driver\store(), store_item_tag(), suggestion_query(), tag_deliver(), tagadelic(), tagblock(), tgroup_check(), update_feed_item(), webpages_content(), widget_archive(), widget_follow(), widget_item(), widget_tagcloud(), and zot_feed().

@@ -255,12 +255,12 @@ Variables
- +
$x = splitFilename($font)$x = splitFilename($font)
-

Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), advanced_profile(), aes_encapsulate(), api_group_members(), api_login(), app_decode(), app_install(), app_list(), app_render(), app_store(), app_update(), apps_content(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedMatrix\RedDAV\RedDirectory\childExists(), cloud_init(), common_init(), connedit_content(), construct_page(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), decode_tags(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_mention_callback(), diaspora_request(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editwebpage_content(), email_header_encode(), encode_item(), encode_mail(), event_store_item(), events_post(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), fetch_xrd_links(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), foofoo(), fsuggest_post(), get_all_perms(), get_diaspora_reshare_xml(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), get_system_apps(), get_terms_oftype(), get_theme_uid(), get_things(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), handle_feed(), hcard_init(), hostxrd_init(), ids_to_querystr(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), item_remove_cid(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), locs_content(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), mark_orphan_hubsxchans(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), netgrowth_content(), network_content(), new_channel_init(), new_contact(), notification(), notifications_off(), notifications_on(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_init(), parse_app_description(), parse_xml_string(), pdledit_content(), pemtome(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), send_status_notifications(), service_limits_content(), share_init(), share_unshield(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), store_diaspora_comment_sig(), string_splitter(), stringify_array_elms(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), toggle_theme(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_build_packet(), zot_encode_locations(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

+

Referenced by Template\_replcb_for(), Template\_replcb_if(), account_remove(), acl_init(), activity_sanitise(), admin_page_channels(), admin_page_themes(), advanced_profile(), aes_encapsulate(), api_group_members(), api_login(), app_decode(), app_install(), app_list(), app_render(), app_store(), app_update(), apps_content(), argv(), array_sanitise(), attach_change_permissions(), attach_delete(), attach_store(), autoname(), bb_parse_crypt(), bbcode(), block_content(), blocks_content(), bookmark_add(), bookmarks_content(), build_sync_packet(), change_channel(), channel_content(), chat_content(), chat_message(), chat_post(), chatroom_create(), chatroom_enter(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_item_source(), check_list_permissions(), check_webbie(), RedMatrix\RedDAV\RedDirectory\childExists(), cloud_init(), common_init(), connedit_content(), construct_page(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createFile(), photo_gd\cropImage(), photo_imagick\cropImage(), decode_tags(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_mention_callback(), diaspora_request(), dir_tagadelic(), directory_content(), directory_run(), discover_by_url(), discover_by_webbie(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editwebpage_content(), email_header_encode(), encode_item(), encode_mail(), dba_postgres\escape(), event_store_item(), events_post(), expand_groups(), expire_run(), externals_run(), feature_enabled(), fetch_post_tags(), fetch_xrd_links(), filer_content(), find_xchan_in_array(), findpeople_widget(), fix_private_photos(), fix_system_urls(), photo_gd\flip(), foofoo(), fsuggest_post(), get_all_perms(), get_diaspora_reshare_xml(), get_directory_realm(), get_item_elements(), get_mail_elements(), get_mentions(), get_online_status(), get_profile_elements(), get_profile_fields_advanced(), get_profile_fields_basic(), get_role_perms(), get_system_apps(), get_terms_oftype(), get_theme_uid(), get_things(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), RedMatrix\RedDAV\RedDirectory\getQuotaInfo(), gprobe_run(), handle_feed(), hcard_init(), hostxrd_init(), ids_to_querystr(), impel_init(), import_author_diaspora(), import_author_rss(), import_author_unknown(), import_author_xchan(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_site(), import_xchan(), invite_content(), invite_post(), item_post(), item_remove_cid(), items_fetch(), json_decode_plus(), json_return_and_die(), layouts_content(), legal_webbie(), locs_content(), FKOAuth1\loginUser(), magic_init(), mail_post(), manage_content(), mark_orphan_hubsxchans(), match_content(), menu_content(), menu_delete_id(), menu_fetch(), menu_render(), mimetype_select(), nav(), navbar_complete(), netgrowth_content(), network_content(), new_channel_init(), new_contact(), notification(), notifications_off(), notifications_on(), notifier_run(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_init(), parse_app_description(), parse_xml_string(), pdledit_content(), pemtome(), perm_is_allowed(), photos_list_photos(), photos_post(), ping_init(), poco_load(), poller_run(), post_init(), post_post(), preg_heart(), print_template(), private_messages_list(), proc_run(), process_channel_sync_delivery(), process_location_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), prune_hub_reinstalls(), public_recips(), pubrsatome(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), randprof_init(), red_item_new(), RedCollectionData(), RedFileData(), reflect_comment_store(), reflect_find_user(), reflect_photo_callback(), remote_online_status(), remove_community_tag(), remove_obsolete_hublocs(), rpost_content(), photo_driver\save(), scrape_feed(), scrape_vcard(), search_ac_init(), send_status_notifications(), service_limits_content(), share_init(), share_unshield(), site_default_perms(), smilies(), sources_content(), sslify_init(), photo_driver\store(), store_diaspora_comment_sig(), string_splitter(), stringify_array_elms(), sync_directories(), sync_locations(), tag_deliver(), tagadelic(), tagrm_content(), tagrm_post(), theme_status(), thing_content(), toggle_theme(), update_channels_active_halfyear_stat(), update_channels_active_monthly_stat(), update_directory_entry(), update_imported_item(), upgrade_bool_message(), upgrade_message(), valid_email(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), webpages_content(), what_next(), widget_affinity(), widget_bookmarkedchats(), widget_suggestedchats(), widget_suggestions(), xchan_query(), xmlify(), zfinger_init(), zot_build_packet(), zot_encode_locations(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

diff --git a/doc/html/auth_8php.html b/doc/html/auth_8php.html index 6df3cfea4..644e47434 100644 --- a/doc/html/auth_8php.html +++ b/doc/html/auth_8php.html @@ -122,15 +122,15 @@ Functions  account_verify_password ($email, $pass)  Verify login credentials. More...
  -if((x($_POST, 'auth-params'))&&$_POST['auth-params']===
+if((x($_POST, 'auth-params'))&&$_POST['auth-params']===
'login') match_openid ($authid)  Returns the channel_id for a given openid_identity. More...
  - @@ -183,7 +183,7 @@ Variables

Variables

if((isset($_SESSION))&&(x($_SESSION,
-'authenticated'))&&((!(x($_POST,
+
if((isset($_SESSION))&&(x($_SESSION,
+'authenticated'))&&((!(x($_POST,
'auth-params')))||($_POST['auth-params']!==
'login'))) 
else
 
- + @@ -233,7 +233,7 @@ Variables
if ((x($_POST, 'auth-params'))&&$_POST['auth-params']=== 'login') match_openid if ((x($_POST, 'auth-params'))&&$_POST['auth-params']=== 'login') match_openid (   $authid)
- +
if ((isset($_SESSION))&&(x($_SESSION, 'authenticated'))&&((!(x($_POST, 'auth-params')))||($_POST['auth-params']!== 'login'))) elseif ((isset($_SESSION))&&(x($_SESSION, 'authenticated'))&&((!(x($_POST, 'auth-params')))||($_POST['auth-params']!== 'login'))) else
@@ -245,7 +245,7 @@ Variables
-
if((x($_POST, 'password')) && strlen($_POST['password']))
+
if((x($_POST, 'password')) && strlen($_POST['password']))
$encrypted = hash('whirlpool', trim($_POST['password']))

Inline - not a function look for auth parameters or re-validate an existing session also handles logout

diff --git a/doc/html/bbcode_8php.html b/doc/html/bbcode_8php.html index 0134be28f..59de1d660 100644 --- a/doc/html/bbcode_8php.html +++ b/doc/html/bbcode_8php.html @@ -337,7 +337,7 @@ Functions diff --git a/doc/html/blocks_8php.html b/doc/html/blocks_8php.html index 8993de9ed..d6ab862e3 100644 --- a/doc/html/blocks_8php.html +++ b/doc/html/blocks_8php.html @@ -112,6 +112,8 @@ $(document).ready(function(){initNavTree('blocks_8php.html','');}); + +

Functions

 blocks_init (&$a)
 
 blocks_content (&$a)
 
@@ -130,6 +132,22 @@ Functions
+
+ + +
+
+ + + + + + + + +
blocks_init ($a)
+
+
diff --git a/doc/html/blocks_8php.js b/doc/html/blocks_8php.js index b2123aa00..c10da1ce2 100644 --- a/doc/html/blocks_8php.js +++ b/doc/html/blocks_8php.js @@ -1,4 +1,5 @@ var blocks_8php = [ - [ "blocks_content", "blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12", null ] + [ "blocks_content", "blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12", null ], + [ "blocks_init", "blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9", null ] ]; \ No newline at end of file diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index 78676f571..c5ff918aa 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -123,8 +123,9 @@ Functions    get_app ()   - x ($s, $k=NULL) -  + x ($s, $k=null) + Multi-purpose function to check variable state. More...
+   system_unavailable ()    clean_urls () @@ -150,8 +151,10 @@ Functions  goaway ($s)    get_account_id () + Returns the entity id of locally logged in account or false. More...
   local_user () + Returns the entity id of locally logged in user or false. More...
   remote_user ()   @@ -160,26 +163,31 @@ Functions  info ($s)    get_max_import_size () + Wrapper around config to limit the text length of an incoming message. More...
   proc_run ($cmd)    is_windows () + Checks if we are running on M$ Windows. More...
   current_theme ()    current_theme_url ($installing=false)    is_site_admin () + Check if current user has admin role. More...
   is_developer () + Check if current user has developer role. More...
   load_contact_links ($uid)    build_querystring ($params, $name=null) + Returns querystring as string from a mapped array. More...
   argc ()   - argv ($x) + argv ($x)    dba_timer ()   @@ -188,10 +196,13 @@ Functions  curPageURL ()    get_custom_nav (&$a, $navname) + Returns a custom navigation by name??? More...
   load_pdl (&$a) + Loads a page definition file for a module. More...
   construct_page (&$a) + build the page. More...
   appdirpath ()   @@ -212,12 +223,10 @@ Variables   const DB_UPDATE_VERSION 1131   -const EOL '<br />' . "\r\n" +const EOL '<br>' . "\r\n"   const ATOM_TIME 'Y-m-d\TH:i:s\Z'   -const NULL_DATE '0000-00-00 00:00:00' -  const TEMPLATE_BUILD_PATH 'store/[data]/smarty3'   const DIRECTORY_MODE_NORMAL 0x0000 @@ -532,6 +541,8 @@ Variables   const XCHAN_FLAGS_SYSTEM 0x0010   +const XCHAN_FLAGS_PUBFORUM 0x0020 +  const XCHAN_FLAGS_DELETED 0x1000   const HUBLOC_NOTUSED 0x0000 @@ -744,8 +755,14 @@ Variables   const ITEM_RSS 0x8000   +const DBTYPE_MYSQL 0 +  +const DBTYPE_POSTGRES 1 +  -

Function Documentation

+

Detailed Description

+

This file defines some global constants and includes the central App class.

+

Function Documentation

@@ -792,7 +809,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), apps_content(), attach_init(), block_content(), blocks_content(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connedit_content(), connedit_init(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), hcard_init(), help_content(), importelm_post(), item_content(), layouts_content(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), xref_init(), and zotfeed_init().

+

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), apps_content(), attach_init(), block_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connedit_content(), connedit_init(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), group_content(), group_post(), hcard_init(), help_content(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_init(), xref_init(), and zotfeed_init().

@@ -810,7 +827,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), apps_content(), attach_init(), block_content(), block_init(), blocks_content(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), hcard_init(), help_content(), importelm_post(), item_content(), layouts_content(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

+

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_profs(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), apps_content(), attach_init(), block_content(), block_init(), blocks_content(), blocks_init(), channel_init(), chat_content(), chat_init(), cloud_init(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contactgroup_content(), dirsearch_content(), display_content(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), events_content(), feed_init(), filestorage_content(), get_online_status(), group_content(), group_post(), hcard_init(), help_content(), importelm_post(), item_content(), layouts_content(), layouts_init(), like_content(), lockview_content(), mail_content(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), new_channel_init(), notes_init(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), p_init(), page_init(), pdledit_content(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), profile_init(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), queue_run(), rbmark_content(), receive_post(), register_init(), regmod_content(), regver_content(), rpost_content(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_content(), tagrm_content(), thing_content(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewconnections_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), webpages_init(), widget_collections(), widget_mailmenu(), widget_settings_menu(), xref_init(), and zotfeed_init().

@@ -837,10 +854,12 @@ Variables
-

returns querystring as string from a mapped array

+ +

Returns querystring as string from a mapped array.

Parameters
- + +
paramsArray
array$paramsmapped array with query parameters
string$nameof parameter, default null
@@ -896,7 +915,15 @@ Variables
+ +

build the page.

Build the page - now that we have all the components

+
Parameters
+ + +
App&$aglobal application object
+
+

Referenced by RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex().

@@ -1015,6 +1042,10 @@ Variables
+

Returns the entity id of locally logged in account or false.

+

Returns numeric account_id if authenticated or 0. It is possible to be authenticated and not connected to a channel.

+
Returns
int|bool account_id or false
+

Referenced by api_user(), change_channel(), channel_content(), events_post(), feed_init(), home_init(), identity_selector(), import_content(), import_post(), item_post(), manage_content(), mimetype_select(), mood_init(), nav(), new_channel_content(), new_channel_post(), new_contact(), profile_content(), profile_photo_post(), profiles_init(), removeaccount_post(), rpost_content(), settings_post(), z_input_filter(), and zotfeed_init().

@@ -1060,6 +1091,18 @@ Variables
+

Returns a custom navigation by name???

+

If no $navname provided load default page['nav']

+
Todo:
not fully implemented yet
+
Parameters
+ + + +
App$aglobal application object
string$navname
+
+
+
Returns
mixed
+

Referenced by construct_page().

@@ -1094,6 +1137,9 @@ Variables
+

Wrapper around config to limit the text length of an incoming message.

+
Returns
int
+

Referenced by get_item_elements(), and limit_body_size().

@@ -1111,7 +1157,7 @@ Variables
-

Referenced by advanced_profile(), api_statuses_user_timeline(), app_store(), app_update(), attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), block_content(), bookmarks_content(), chat_content(), chatsvc_content(), chatsvc_init(), chatsvc_post(), cloud_init(), comanche_menu(), common_content(), common_friends_visitor_widget(), contact_block(), dir_safe_mode(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_post(), get_public_feed(), impel_init(), importelm_post(), item_content(), item_permissions_sql(), magic_init(), mitem_content(), new_contact(), notice(), permissions_sql(), photo_init(), photos_content(), photos_post(), ping_init(), poll_post(), prepare_body(), profile_content(), profile_sidebar(), RedMatrix\RedDAV\RedBrowser\set_writeable(), stream_perms_xchans(), suggest_content(), tagger_content(), thing_init(), toggle_safesearch_init(), viewconnections_content(), vote_content(), vote_post(), wall_attach_post(), widget_archive(), widget_bookmarkedchats(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud_wall(), and z_readdir().

+

Referenced by advanced_profile(), api_statuses_user_timeline(), app_store(), app_update(), attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), block_content(), bookmarks_content(), chat_content(), chatsvc_content(), chatsvc_init(), chatsvc_post(), cloud_init(), comanche_menu(), common_content(), common_friends_visitor_widget(), contact_block(), dir_safe_mode(), directory_content(), display_content(), editpost_content(), events_post(), get_public_feed(), impel_init(), importelm_post(), item_content(), item_permissions_sql(), magic_init(), new_contact(), notice(), permissions_sql(), photo_init(), photos_content(), photos_post(), ping_init(), poll_post(), prepare_body(), profile_content(), profile_sidebar(), RedMatrix\RedDAV\RedBrowser\set_writeable(), stream_perms_xchans(), suggest_content(), tagger_content(), thing_init(), toggle_safesearch_init(), viewconnections_content(), vote_content(), vote_post(), wall_attach_post(), widget_archive(), widget_bookmarkedchats(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud_wall(), and z_readdir().

@@ -1180,7 +1226,7 @@ Variables
-

Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_post(), appman_post(), bookmarks_init(), connections_post(), connedit_content(), connedit_post(), directory_content(), dirprofile_init(), filestorage_content(), follow_init(), fsuggest_post(), group_content(), group_post(), impel_init(), item_post(), lostpass_content(), lostpass_post(), mail_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), network_content(), oexchange_content(), openid_content(), pdledit_post(), post_init(), profile_photo_post(), profiles_init(), profiles_post(), register_post(), regmod_content(), settings_post(), sources_content(), sources_post(), suggest_content(), tagrm_content(), tagrm_post(), thing_init(), user_allow(), user_approve(), and viewconnections_content().

+

Referenced by admin_page_dbsync(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_post(), appman_post(), bookmarks_init(), connections_post(), connedit_content(), connedit_post(), directory_content(), filestorage_content(), follow_init(), fsuggest_post(), group_content(), group_post(), impel_init(), item_post(), lostpass_content(), lostpass_post(), mail_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), network_content(), oexchange_content(), openid_content(), pdledit_post(), post_init(), profile_photo_post(), profiles_init(), profiles_post(), register_post(), regmod_content(), settings_post(), sources_content(), sources_post(), suggest_content(), tagrm_content(), tagrm_post(), thing_init(), user_allow(), user_approve(), and viewconnections_content().

@@ -1214,6 +1260,10 @@ Variables
+

Check if current user has developer role.

+

Check if the current user has ACCOUNT_ROLE_DEVELOPER.

+
Returns
bool true if user is a developer
+

Referenced by achievements_content(), and change_channel().

@@ -1231,7 +1281,11 @@ Variables @@ -1248,6 +1302,9 @@ Variables
+

Checks if we are running on M$ Windows.

+
Returns
bool true if we run on M$ Windows
+

Referenced by check_php(), and proc_run().

@@ -1265,7 +1322,7 @@ Variables
-

Referenced by FriendicaSmartyEngine\__construct(), acl_init(), admin_content(), api_content(), api_ff_ids(), api_friendica_version(), api_oauth_access_token(), api_oauth_request_token(), api_statusnet_version(), attach_init(), bookmarks_init(), check_form_security_token_ForbiddenOnErr(), cloud_init(), connections_content(), contactgroup_content(), directory_content(), dirprofile_init(), events_content(), fbrowser_content(), feed_init(), filer_content(), filerm_content(), goaway(), hostxrd_init(), http_status_exit(), importelm_post(), item_post(), json_return_and_die(), layouts_content(), like_content(), lockview_content(), msearch_post(), netgrowth_content(), network_content(), oembed_init(), oexchange_init(), opensearch_init(), p_init(), parse_url_content(), photo_init(), photos_content(), photos_post(), php_init(), ping_init(), poco_init(), poll_content(), poller_run(), pretheme_init(), profiles_init(), App\register_template_engine(), regmod_content(), regver_content(), search_ac_init(), setup_init(), setup_post(), share_init(), sitelist_init(), sslify_init(), starred_init(), subthread_content(), system_unavailable(), tagger_content(), App\template_engine(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), wfinger_init(), xml_status(), and xrd_init().

+

Referenced by FriendicaSmartyEngine\__construct(), acl_init(), admin_content(), api_content(), api_ff_ids(), api_friendica_version(), api_oauth_access_token(), api_oauth_request_token(), api_statusnet_version(), attach_init(), bookmarks_init(), check_form_security_token_ForbiddenOnErr(), cloud_init(), connections_content(), contactgroup_content(), directory_content(), events_content(), fbrowser_content(), feed_init(), filer_content(), filerm_content(), goaway(), hostxrd_init(), http_status_exit(), importelm_post(), item_post(), json_return_and_die(), layouts_content(), like_content(), lockview_content(), msearch_post(), netgrowth_content(), network_content(), oembed_init(), oexchange_init(), opensearch_init(), p_init(), parse_url_content(), photo_init(), photos_content(), photos_post(), php_init(), ping_init(), poco_init(), poll_content(), poller_run(), pretheme_init(), profiles_init(), App\register_template_engine(), regmod_content(), regver_content(), search_ac_init(), setup_init(), setup_post(), share_init(), sitelist_init(), sslify_init(), starred_init(), subthread_content(), system_unavailable(), tagger_content(), App\template_engine(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), view_init(), viewsrc_content(), wall_attach_post(), wall_upload_post(), wfinger_init(), xml_status(), and xrd_init().

@@ -1301,6 +1358,15 @@ Variables
+

Loads a page definition file for a module.

+

If there is no parsed Comanche template already load a module's pdl file and parse it with Comanche.

+
Parameters
+ + +
App&$aglobal application object
+
+
+

Referenced by RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex().

@@ -1318,7 +1384,11 @@ Variables
-

Referenced by Conversation\__construct(), acl_init(), api_content(), api_get_user(), api_post(), api_user(), app_render(), appman_content(), appman_post(), apps_content(), apw_form(), best_link_url(), blocks_content(), bookmarks_content(), bookmarks_init(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), cloud_init(), comanche_get_channel_id(), common_friends_visitor_widget(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contact_block(), contact_select(), contactgroup_content(), conversation(), current_theme(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), group_get_members(), group_post(), group_select(), group_side(), handle_tag(), hcard_init(), home_init(), identity_selector(), impel_init(), invite_content(), invite_post(), is_public_profile(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), lockview_content(), locs_content(), locs_post(), login(), login_content(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_add_item(), menu_content(), menu_edit_item(), menu_post(), message_content(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), new_contact(), notes_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), parse_app_description(), pdledit_content(), pdledit_post(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poke_content(), poke_init(), post_init(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rbmark_content(), redbasic_form(), regmod_content(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), Conversation\set_mode(), settings_init(), settings_post(), share_init(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_notes(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

+

Returns the entity id of locally logged in user or false.

+

Returns authenticated numeric channel_id if authenticated and connected to a channel or 0. Sometimes referred to as $uid in the code.

+
Returns
int|bool channel_id or false
+ +

Referenced by Conversation\__construct(), acl_init(), api_content(), api_get_user(), api_post(), api_user(), app_render(), appman_content(), appman_post(), apps_content(), apw_form(), best_link_url(), blocks_content(), bookmarks_content(), bookmarks_init(), App\build_pagehead(), build_sync_packet(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), cloud_init(), comanche_get_channel_id(), common_friends_visitor_widget(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), contact_block(), contact_select(), contactgroup_content(), conversation(), current_theme(), delegate_content(), directory_content(), display_content(), drop_item(), drop_items(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_content(), follow_init(), fsuggest_content(), fsuggest_post(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), group_get_members(), group_post(), group_select(), group_side(), handle_tag(), hcard_init(), home_init(), identity_selector(), impel_init(), invite_content(), invite_post(), is_public_profile(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), lockview_content(), locs_content(), locs_post(), login(), login_content(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_add_item(), menu_content(), menu_edit_item(), menu_post(), message_content(), mimetype_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), new_contact(), notes_init(), notifications_content(), notifications_post(), notify_content(), notify_init(), oexchange_content(), parse_app_description(), pdledit_content(), pdledit_post(), permissions_sql(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poke_content(), poke_init(), post_init(), prepare_body(), private_messages_list(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rbmark_content(), redbasic_form(), regmod_content(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), Conversation\set_mode(), settings_init(), settings_post(), share_init(), smilies(), sources_content(), sources_post(), starred_init(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), thing_content(), thing_init(), uexport_init(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_notes(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), z_input_filter(), zid_init(), and zping_content().

@@ -1370,7 +1440,7 @@ Variables
-

Referenced by account_remove(), achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_profs(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), sources_content(), sources_post(), subthread_content(), suggest_content(), thing_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

+

Referenced by account_remove(), achievements_content(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_hubloc(), admin_page_plugins(), admin_page_profs(), admin_page_themes(), admin_page_users(), admin_page_users_post(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_form_security_token_redirectOnErr(), common_content(), common_init(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_content(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), sources_content(), sources_post(), subthread_content(), suggest_content(), thing_content(), thing_init(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), and xchan_content().

@@ -1443,7 +1513,7 @@ Variables @@ -1480,7 +1550,7 @@ Variables - +
@@ -1494,7 +1564,7 @@ Variables - + @@ -1504,7 +1574,19 @@ Variables
 $k = NULL $k = null 
-

Referenced by FriendicaSmarty\__construct(), App\__construct(), account_service_class_fetch(), acl_init(), admin_page_channels_post(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), app_store(), app_update(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), bookmark_add(), App\build_pagehead(), channel_content(), chatsvc_content(), check_form_security_token(), cli_startup(), cloud_init(), connections_content(), connections_post(), connedit_content(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), current_theme(), current_theme_url(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), diaspora_asphoto(), diaspora_conversation(), diaspora_message(), directory_content(), dirprofile_init(), dirsearch_content(), discover_by_url(), display_content(), encode_rel_links(), event_addtocal(), events_content(), events_post(), feed_init(), filerm_content(), filestorage_post(), get_atom_elements(), get_browser_language(), get_item_elements(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), group_side(), home_content(), import_post(), import_xchan(), info(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), load_contact_links(), local_user(), lostpass_content(), magic_init(), mail_content(), mail_post(), mail_store(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_content(), new_cookie(), notice(), oexchange_content(), openid_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), post_init(), printable(), probe_content(), proc_run(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_post(), rbmark_content(), rbmark_post(), red_item_new(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeaccount_post(), removeme_post(), rpost_content(), scrape_feed(), script_path(), search_ac_init(), search_content(), search_init(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), widget_affinity(), widget_categories(), widget_filer(), widget_savedsearch(), widget_tagcloud(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

+

Multi-purpose function to check variable state.

+

Usage: x($var) or $x($array, 'key')

+

returns false if variable/key is not set if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0. e.g. x('') or x(0) returns 0;

+
Parameters
+ + + +
string | array$svariable to check
string$kkey inside the array to check
+
+
+
Returns
bool
+ +

Referenced by FriendicaSmarty\__construct(), App\__construct(), account_service_class_fetch(), acl_init(), admin_page_channels_post(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_themes(), admin_page_users_post(), api_content(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_format_messages(), api_get_user(), api_login(), api_post(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_user(), app_store(), app_update(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), bookmark_add(), App\build_pagehead(), channel_content(), chatsvc_content(), check_form_security_token(), cli_startup(), cloud_init(), connections_content(), connections_post(), connedit_content(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), current_theme(), current_theme_url(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), diaspora_asphoto(), diaspora_conversation(), diaspora_message(), directory_content(), dirsearch_content(), discover_by_url(), display_content(), encode_rel_links(), event_addtocal(), events_content(), events_post(), feed_init(), filerm_content(), filestorage_post(), get_atom_elements(), get_browser_language(), get_item_elements(), get_my_address(), get_my_url(), get_plink(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), group_side(), home_content(), import_post(), import_xchan(), info(), invite_post(), item_post(), item_store(), item_store_update(), lang_selector(), load_contact_links(), local_user(), lostpass_content(), magic_init(), mail_content(), mail_post(), mail_store(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_content(), new_cookie(), notice(), oexchange_content(), openid_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), post_activity_item(), post_init(), probe_content(), proc_run(), profile_photo_post(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_post(), rbmark_content(), rbmark_post(), red_item_new(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeaccount_post(), removeme_post(), rpost_content(), scrape_feed(), script_path(), search_ac_init(), search_content(), search_init(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), suggest_init(), t(), tagrm_post(), App\template_engine(), tt(), validate_channelname(), wall_upload_post(), webfinger_content(), wfinger_init(), widget_affinity(), widget_categories(), widget_filer(), widget_savedsearch(), widget_tagcloud(), xchan_content(), z_fetch_url(), z_post_url(), and zfinger_init().

@@ -1538,7 +1620,7 @@ Variables
-

Referenced by admin_content(), admin_page_profs(), admin_page_profs_post(), allowed_public_recips(), app_render(), app_store(), app_update(), appman_post(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_post(), diaspora_request(), diaspora_reshare(), directory_content(), dirprofile_init(), discover_by_url(), discover_by_webbie(), display_content(), event_store_item(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), get_parent_cloudpath(), RedMatrix\RedDAV\RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_init(), hostxrd_init(), import_post(), import_xchan(), invite_content(), item_photo_menu(), item_post(), item_store(), layouts_content(), like_content(), locs_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), oembed_iframe(), openid_content(), pagelist_widget(), parse_app_description(), pdledit_post(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), poll_content(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), register_post(), remove_obsolete_hublocs(), removeaccount_content(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), verify_email_address(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xchan_store(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

+

Referenced by admin_content(), admin_page_profs(), admin_page_profs_post(), allowed_public_recips(), app_render(), app_store(), app_update(), appman_post(), authenticate_success(), bb_parse_crypt(), bbcode(), blocks_content(), chanlink_cid(), chanlink_hash(), chanlink_url(), channel_content(), channel_remove(), chat_content(), chat_post(), chatsvc_content(), check_config(), connect_post(), connections_content(), connections_post(), conversation(), create_identity(), deliver_run(), diaspora_comment(), diaspora_like(), diaspora_post(), diaspora_request(), diaspora_reshare(), directory_content(), discover_by_url(), discover_by_webbie(), display_content(), event_store_item(), externals_run(), filestorage_content(), find_upstream_directory(), follow_init(), format_categories(), format_filer(), get_parent_cloudpath(), RedMatrix\RedDAV\RedBrowser\getAssetUrl(), group_post(), handle_tag(), App\head_get_icon(), head_get_icon(), home_init(), hostxrd_init(), import_post(), import_xchan(), invite_content(), item_photo_menu(), item_post(), item_store(), layouts_content(), like_content(), locs_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), nav(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), oembed_iframe(), openid_content(), pagelist_widget(), parse_app_description(), pdledit_post(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), poll_content(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), reflect_article_callback(), reflect_comment_store(), reflect_photo_callback(), register_post(), remove_obsolete_hublocs(), removeaccount_content(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), script_path(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), sources_content(), sources_post(), sslify(), sync_directories(), tagger_content(), theme_attachments(), thing_init(), toggle_safesearch_init(), update_suggestions(), user_allow(), vcard_from_xchan(), verify_email_address(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xchan_store(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), zot_new_uid(), and zot_refresh().

@@ -1659,7 +1741,7 @@ Variables @@ -2356,6 +2438,32 @@ Variables

Referenced by api_statusnet_config(), check_config(), identity_basic_export(), and zfinger_init().

+ + + +
+
+ + + + +
const DBTYPE_MYSQL 0
+
+ +
+
+ +
+
+ + + + +
const DBTYPE_POSTGRES 1
+
@@ -2409,7 +2517,7 @@ Variables @@ -2437,7 +2545,7 @@ Variables @@ -2502,12 +2610,12 @@ Variables
- +
const EOL '<br />' . "\r\n"const EOL '<br>' . "\r\n"
-

Referenced by account_remove(), achievements_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_profs(), admin_page_site_post(), admin_page_users(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), bookmarks_init(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_htaccess(), check_keys(), check_php(), check_smarty3(), check_store(), common_content(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), dirprofile_init(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), load_database(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), refimport_content(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), setup_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagrm_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_approve(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), xchan_content(), and zot_process_message_request().

+

Referenced by account_remove(), achievements_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_profs(), admin_page_site_post(), admin_page_users(), api_content(), api_post(), appman_content(), appman_post(), attach_init(), block_content(), blocks_content(), bookmarks_content(), bookmarks_init(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_enter(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_htaccess(), check_keys(), check_php(), check_smarty3(), check_store(), common_content(), common_init(), connect_init(), connections_content(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), filestorage_content(), filestorage_post(), follow_init(), format_like(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), importelm_post(), invite_content(), invite_post(), item_content(), item_post(), layouts_content(), like_content(), load_database(), locs_content(), locs_post(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), notifications_content(), notifications_post(), oexchange_content(), openid_content(), page_init(), pdledit_content(), pdledit_post(), photos_content(), photos_post(), poke_content(), post_init(), post_post(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), refimport_content(), register_content(), register_post(), regmod_content(), removeaccount_post(), removeme_post(), rmagic_post(), search_content(), service_limits_content(), settings_post(), setup_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagrm_content(), tagrm_post(), thing_content(), thing_init(), user_allow(), user_approve(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), webpages_content(), xchan_content(), and zot_process_message_request().

@@ -2832,7 +2940,7 @@ Variables @@ -3138,7 +3246,7 @@ Variables
-

Referenced by admin_page_logs(), bb2diaspora_itemwallwall(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), deliver_run(), detect_language(), diaspora_decode(), diaspora_msg_build(), diaspora_pubmsg_build(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), dir_parse_query(), directory_content(), dirprofile_init(), discover_by_url(), encode_item(), fetch_xrd_links(), find_diaspora_person_by_handle(), fix_private_photos(), get_atom_elements(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), impel_init(), import_xchan(), item_post(), item_store(), item_store_update(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), magic_init(), mail_post(), mail_store(), mini_group_select(), new_contact(), notifier_run(), old_webfinger(), onepoll_run(), openid_content(), parse_xml_string(), photos_post(), ping_init(), poco_load(), post_post(), public_recips(), receive_post(), RedChannelList(), RedFileData(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), sync_directories(), tag_deliver(), tgroup_check(), update_directory_entry(), update_feed_item(), xml2array(), z_fetch_url(), z_post_url(), zot_build_packet(), zot_fetch(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

+

Referenced by admin_page_logs(), bb2diaspora_itemwallwall(), build_sync_packet(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), consume_feed(), deliver_run(), detect_language(), diaspora_decode(), diaspora_msg_build(), diaspora_pubmsg_build(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), dir_parse_query(), directory_content(), discover_by_url(), encode_item(), fetch_xrd_links(), find_diaspora_person_by_handle(), fix_private_photos(), get_atom_elements(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), impel_init(), import_xchan(), item_post(), item_store(), item_store_update(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), magic_init(), mail_post(), mail_store(), mini_group_select(), new_contact(), notifier_run(), old_webfinger(), onepoll_run(), openid_content(), parse_xml_string(), photos_post(), ping_init(), poco_load(), post_post(), public_recips(), receive_post(), RedChannelList(), RedFileData(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), sync_directories(), tag_deliver(), tgroup_check(), update_directory_entry(), update_feed_item(), xml2array(), z_fetch_url(), z_post_url(), zot_build_packet(), zot_fetch(), zot_finger(), zot_import(), zot_process_response(), zot_refresh(), and zot_register_hub().

@@ -3152,7 +3260,7 @@ Variables
-

Referenced by Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_page_logs(), admin_post(), api_login(), api_statuses_user_timeline(), avatar_img(), bb2diaspora_itemwallwall(), bookmark_add(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), diaspora_conversation(), diaspora_handle_from_contact(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_reshare(), diaspora_transmit(), directory_content(), directory_run(), dirprofile_init(), discover_by_webbie(), expire_run(), externals_run(), fetch_lrdd_template(), fix_private_photos(), RedMatrix\RedDAV\RedFile\get(), get_diaspora_key(), get_diaspora_reshare_xml(), get_language_name(), Conversation\get_template_data(), group_content(), guess_image_type(), hubloc_change_primary(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_profile_photo(), import_xchan(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), FKOAuth1\loginUser(), magic_init(), mail_store(), mood_init(), new_contact(), notes_init(), notification(), notifier_run(), onepoll_run(), parse_url_content(), photo_upload(), photos_post(), poco_init(), poco_load(), poke_init(), post_post(), process_delivery(), process_location_delivery(), process_profile_delivery(), profile_load(), RedMatrix\RedDAV\RedFile\put(), queue_run(), receive_post(), Item\remove_child(), remove_obsolete_hublocs(), scale_external_images(), scrape_feed(), enotify\send(), Conversation\set_mode(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), sync_locations(), tag_deliver(), unload_plugin(), z_fetch_url(), z_post_url(), zot_feed(), zot_finger(), zot_gethub(), zot_register_hub(), and zotfeed_init().

+

Referenced by Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_page_logs(), admin_post(), api_login(), api_statuses_user_timeline(), avatar_img(), bb2diaspora_itemwallwall(), bookmark_add(), consume_feed(), conversation(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), diaspora_conversation(), diaspora_handle_from_contact(), diaspora_like(), diaspora_message(), diaspora_photo(), diaspora_reshare(), diaspora_transmit(), directory_content(), directory_run(), discover_by_webbie(), expire_run(), externals_run(), fetch_lrdd_template(), fix_private_photos(), RedMatrix\RedDAV\RedFile\get(), get_diaspora_key(), get_diaspora_reshare_xml(), get_language_name(), Conversation\get_template_data(), group_content(), guess_image_type(), hubloc_change_primary(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_profile_photo(), import_xchan(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), FKOAuth1\loginUser(), magic_init(), mail_store(), mood_init(), new_contact(), notes_init(), notification(), notifier_run(), onepoll_run(), parse_url_content(), photo_upload(), photos_post(), poco_init(), poco_load(), poke_init(), post_post(), process_delivery(), process_location_delivery(), process_profile_delivery(), profile_load(), RedMatrix\RedDAV\RedFile\put(), queue_run(), receive_post(), Item\remove_child(), remove_obsolete_hublocs(), scale_external_images(), scrape_feed(), enotify\send(), Conversation\set_mode(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), sync_locations(), tag_deliver(), unload_plugin(), z_fetch_url(), z_post_url(), zot_feed(), zot_finger(), zot_gethub(), zot_register_hub(), and zotfeed_init().

@@ -3914,20 +4022,6 @@ Variables

Referenced by item_post(), and notification().

- - - - @@ -4412,7 +4506,7 @@ Variables @@ -4455,7 +4549,7 @@ Variables @@ -4469,7 +4563,7 @@ Variables @@ -5219,6 +5313,20 @@ Variables

Referenced by connections_content(), contact_block(), dirsearch_content(), manage_content(), mark_orphan_hubsxchans(), ping_init(), post_post(), sync_locations(), and viewconnections_content().

+ + + +
+
+ + + + +
const XCHAN_FLAGS_PUBFORUM 0x0020
+
+ +

Referenced by dirsearch_content(), and import_xchan().

+
diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index bebc6f291..b460c9fee 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -39,7 +39,7 @@ var boot_8php = [ "remote_user", "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209", null ], [ "startup", "boot_8php.html#aca47505b8732177f52bb2d647eb2741c", null ], [ "system_unavailable", "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0", null ], - [ "x", "boot_8php.html#a01353c9abebc3544ea080ac161729632", null ], + [ "x", "boot_8php.html#ae97836b0547953be182a2334c9c91d3c", null ], [ "z_path", "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda", null ], [ "z_root", "boot_8php.html#add517a0958ac684792c62142a3877f81", null ], [ "$DIRECTORY_FALLBACK_SERVERS", "boot_8php.html#a107d53f96acf5319905a34b1870db09a", null ], @@ -101,6 +101,8 @@ var boot_8php = [ "CONTACT_IS_FRIEND", "boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f", null ], [ "CONTACT_IS_SHARING", "boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9", null ], [ "DB_UPDATE_VERSION", "boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03", null ], + [ "DBTYPE_MYSQL", "boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f", null ], + [ "DBTYPE_POSTGRES", "boot_8php.html#a37ddabc112db443b4c67fbc0f708817e", null ], [ "DEFAULT_DB_ENGINE", "boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d", null ], [ "DIRECTORY_FALLBACK_MASTER", "boot_8php.html#abedd940e664017c61b48c6efa31d0cb8", null ], [ "DIRECTORY_MODE_NORMAL", "boot_8php.html#ab7d65a7e7417825a4db62906bb600729", null ], @@ -214,7 +216,6 @@ var boot_8php = [ "NOTIFY_TAGSELF", "boot_8php.html#ab724491497ab2618b23a01d5da60aec0", null ], [ "NOTIFY_TAGSHARE", "boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461", null ], [ "NOTIFY_WALL", "boot_8php.html#a505410c7edc5f5bb5fa227b98359793e", null ], - [ "NULL_DATE", "boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c", null ], [ "PAGE_ADULT", "boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32", null ], [ "PAGE_APPLICATION", "boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed", null ], [ "PAGE_AUTOCONNECT", "boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9", null ], @@ -308,6 +309,7 @@ var boot_8php = [ "XCHAN_FLAGS_HIDDEN", "boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2", null ], [ "XCHAN_FLAGS_NORMAL", "boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6", null ], [ "XCHAN_FLAGS_ORPHAN", "boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f", null ], + [ "XCHAN_FLAGS_PUBFORUM", "boot_8php.html#a0209e605028a5bb492683951ab30d49d", null ], [ "XCHAN_FLAGS_SELFCENSORED", "boot_8php.html#a5a681a672e007cdc22b43345d71f07c6", null ], [ "XCHAN_FLAGS_SYSTEM", "boot_8php.html#afef254290febac854c85fc698d9483a6", null ], [ "ZCURL_TIMEOUT", "boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af", null ], diff --git a/doc/html/classApp-members.html b/doc/html/classApp-members.html index 6e2218d84..199120188 100644 --- a/doc/html/classApp-members.html +++ b/doc/html/classApp-members.html @@ -117,8 +117,6 @@ $(document).ready(function(){initNavTree('classApp.html','');}); $argcApp $argvApp $baseurlAppprivate - $cached_profile_imageAppprivate - $cached_profile_picdateAppprivate $categoryApp $channelApp $cidApp @@ -128,18 +126,16 @@ $(document).ready(function(){initNavTree('classApp.html','');}); $contactsApp $contentApp $css_sourcesApp - $curl_codeAppprivate - $curl_headersAppprivate $dataApp - $dbAppprivate - $errorApp - $force_max_itemsApp - $groupsApp - $hooksApp - $hostnameAppprivate - $identitiesApp - $installApp - $interactiveApp + $errorApp + $force_max_itemsApp + $groupsApp + $hooksApp + $hostnameAppprivate + $identitiesApp + $installApp + $interactiveApp + $is_sysApp $js_sourcesApp $languageApp $layoutApp @@ -170,40 +166,39 @@ $(document).ready(function(){initNavTree('classApp.html','');}); $userApp $videoheightApp $videowidthApp - $widgetlistAppprivate - $widgetsAppprivate - __construct()App - build_pagehead()App - get_account()App - get_apps()App - get_baseurl($ssl=false)App - get_channel()App - get_groups()App - get_hostname()App - get_observer()App - get_path()App - get_perms()App - get_template_engine()App - get_template_ldelim($engine= 'smarty3')App - get_template_rdelim($engine= 'smarty3')App - get_widgets($location= '')App - head_get_icon()App - head_set_icon($icon)App - register_template_engine($class, $name= '')App - set_account($acct)App - set_apps($arr)App - set_baseurl($url)App - set_channel($channel)App - set_groups($g)App - set_hostname($h)App - set_observer($xchan)App - set_pager_itemspage($n)App - set_pager_total($n)App - set_path($p)App - set_perms($perms)App - set_template_engine($engine= 'smarty3')App - set_widget($title, $html, $location= 'aside')App - template_engine($name= '')App + $widgetsAppprivate + __construct()App + build_pagehead()App + get_account()App + get_apps()App + get_baseurl($ssl=false)App + get_channel()App + get_groups()App + get_hostname()App + get_observer()App + get_path()App + get_perms()App + get_template_engine()App + get_template_ldelim($engine= 'smarty3')App + get_template_rdelim($engine= 'smarty3')App + get_widgets($location= '')App + head_get_icon()App + head_set_icon($icon)App + register_template_engine($class, $name= '')App + set_account($acct)App + set_apps($arr)App + set_baseurl($url)App + set_channel($channel)App + set_groups($g)App + set_hostname($h)App + set_observer($xchan)App + set_pager_itemspage($n)App + set_pager_total($n)App + set_path($p)App + set_perms($perms)App + set_template_engine($engine= 'smarty3')App + set_widget($title, $html, $location= 'aside')App + template_engine($name= '')App diff --git a/doc/html/classApp.html b/doc/html/classApp.html index bd8e6bbf0..c0a79a04e 100644 --- a/doc/html/classApp.html +++ b/doc/html/classApp.html @@ -254,6 +254,8 @@ Public Attributes    $theme_info = array()   + $is_sys = false +   $nav_sel    $category @@ -279,8 +281,6 @@ Private Attributes    $widgets = array()   - $widgetlist = null -   $apps = array()    $theme @@ -297,16 +297,6 @@ Private Attributes    $path   - $db -  - $curl_code -  - $curl_headers -  - $cached_profile_image -  - $cached_profile_picdate

Detailed Description

class: App

@@ -861,7 +851,7 @@ Private Attributes

return template engine instance. If $name is not defined, return engine defined by theme, or default

Parameters
- +
strin$nameTemplate engine name
string$nameTemplate engine name
@@ -950,46 +940,6 @@ Private Attributes

Referenced by get_baseurl().

-
- - -
-
- - - - - -
- - - - -
App::$cached_profile_image
-
-private
-
- -
-
- -
-
- - - - - -
- - - - -
App::$cached_profile_picdate
-
-private
-
-
@@ -1100,46 +1050,6 @@ Private Attributes
-
- - -
-
- - - - - -
- - - - -
App::$curl_code
-
-private
-
- -
-
- -
-
- - - - - -
- - - - -
App::$curl_headers
-
-private
-
-
@@ -1152,26 +1062,6 @@ Private Attributes
-
- - -
-
- - - - - -
- - - - -
App::$db
-
-private
-
-
@@ -1280,6 +1170,18 @@ Private Attributes
+
+ + +
+
+ + + + +
App::$is_sys = false
+
+
@@ -1713,26 +1615,6 @@ Private Attributes
-
- - -
-
- - - - - -
- - - - -
App::$widgetlist = null
-
-private
-
-
@@ -1753,8 +1635,6 @@ Private Attributes
-

Referenced by get_widgets().

-

The documentation for this class was generated from the following file: diff --git a/doc/html/functions_0x65.html b/doc/html/functions_0x65.html index f9b5ba9bd..efb086291 100644 --- a/doc/html/functions_0x65.html +++ b/doc/html/functions_0x65.html @@ -142,8 +142,16 @@ $(document).ready(function(){initNavTree('functions_0x65.html','');});

- e -

diff --git a/doc/html/functions_0x67.html b/doc/html/functions_0x67.html index 744665c6b..b4867d63e 100644 --- a/doc/html/functions_0x67.html +++ b/doc/html/functions_0x67.html @@ -205,6 +205,9 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • get_id() : Item
  • +
  • get_install_script() +: dba_driver +
  • get_intltext_template() : FriendicaSmartyEngine
  • @@ -225,6 +228,9 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • get_mode() : Conversation
  • +
  • get_null_date() +: dba_driver +
  • get_observer() : App , Conversation @@ -307,16 +313,16 @@ $(document).ready(function(){initNavTree('functions_0x67.html','');});
  • getImage() : photo_imagick -, photo_gd , photo_driver +, photo_gd
  • getLastModified() : RedMatrix\RedDAV\RedDirectory , RedMatrix\RedDAV\RedFile
  • getName() -: RedMatrix\RedDAV\RedFile -, RedMatrix\RedDAV\RedDirectory +: RedMatrix\RedDAV\RedDirectory +, RedMatrix\RedDAV\RedFile
  • getQuotaInfo() : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/functions_0x69.html b/doc/html/functions_0x69.html index 5c919b259..3d44a81a4 100644 --- a/doc/html/functions_0x69.html +++ b/doc/html/functions_0x69.html @@ -148,9 +148,13 @@ $(document).ready(function(){initNavTree('functions_0x69.html','');});
  • install() : dba_driver
  • +
  • INSTALL_SCRIPT +: dba_driver +, dba_postgres +
  • is_commentable() -: Conversation -, Item +: Item +, Conversation
  • is_preview() : Conversation diff --git a/doc/html/functions_0x6e.html b/doc/html/functions_0x6e.html index 72fb064ff..5fde22d13 100644 --- a/doc/html/functions_0x6e.html +++ b/doc/html/functions_0x6e.html @@ -146,6 +146,10 @@ $(document).ready(function(){initNavTree('functions_0x6e.html','');});
  • new_request_token() : FKOAuthDataStore
  • +
  • NULL_DATE +: dba_driver +, dba_postgres +
  • diff --git a/doc/html/functions_0x6f.html b/doc/html/functions_0x6f.html index cff96e18b..0d3b556fc 100644 --- a/doc/html/functions_0x6f.html +++ b/doc/html/functions_0x6f.html @@ -140,6 +140,10 @@ $(document).ready(function(){initNavTree('functions_0x6f.html','');});
    Here is a list of all class members with links to the classes they belong to:

    - o -

    diff --git a/doc/html/functions_func_0x65.html b/doc/html/functions_func_0x65.html index 2add8b68a..8fa81466f 100644 --- a/doc/html/functions_func_0x65.html +++ b/doc/html/functions_func_0x65.html @@ -141,8 +141,16 @@ $(document).ready(function(){initNavTree('functions_func_0x65.html','');});

    - e -

    diff --git a/doc/html/functions_func_0x67.html b/doc/html/functions_func_0x67.html index 2e4957360..f8f8d7154 100644 --- a/doc/html/functions_func_0x67.html +++ b/doc/html/functions_func_0x67.html @@ -204,6 +204,9 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');});
  • get_id() : Item
  • +
  • get_install_script() +: dba_driver +
  • get_intltext_template() : FriendicaSmartyEngine
  • @@ -224,6 +227,9 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');});
  • get_mode() : Conversation
  • +
  • get_null_date() +: dba_driver +
  • get_observer() : App , Conversation @@ -306,16 +312,16 @@ $(document).ready(function(){initNavTree('functions_func_0x67.html','');});
  • getImage() : photo_imagick -, photo_gd , photo_driver +, photo_gd
  • getLastModified() : RedMatrix\RedDAV\RedDirectory , RedMatrix\RedDAV\RedFile
  • getName() -: RedMatrix\RedDAV\RedFile -, RedMatrix\RedDAV\RedDirectory +: RedMatrix\RedDAV\RedDirectory +, RedMatrix\RedDAV\RedFile
  • getQuotaInfo() : RedMatrix\RedDAV\RedDirectory diff --git a/doc/html/functions_func_0x6f.html b/doc/html/functions_func_0x6f.html index c955abd89..382222e6f 100644 --- a/doc/html/functions_func_0x6f.html +++ b/doc/html/functions_func_0x6f.html @@ -139,6 +139,10 @@ $(document).ready(function(){initNavTree('functions_func_0x6f.html','');});  

    - o -

      +
    • optimize_table() +: dba_driver +, dba_postgres +
    • orient() : photo_driver
    • diff --git a/doc/html/functions_func_0x71.html b/doc/html/functions_func_0x71.html index df5b7d285..186454586 100644 --- a/doc/html/functions_func_0x71.html +++ b/doc/html/functions_func_0x71.html @@ -141,8 +141,13 @@ $(document).ready(function(){initNavTree('functions_func_0x71.html','');});

      - q -

      diff --git a/doc/html/functions_func_0x75.html b/doc/html/functions_func_0x75.html index 00d4ae0f4..7996cb15c 100644 --- a/doc/html/functions_func_0x75.html +++ b/doc/html/functions_func_0x75.html @@ -139,9 +139,16 @@ $(document).ready(function(){initNavTree('functions_func_0x75.html','');});  

      - u -

      diff --git a/doc/html/functions_vars.html b/doc/html/functions_vars.html index 18ed219ed..d9445bd4d 100644 --- a/doc/html/functions_vars.html +++ b/doc/html/functions_vars.html @@ -85,6 +85,9 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search'); @@ -146,12 +149,6 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
    • $browser : RedMatrix\RedDAV\RedBasicAuth
    • -
    • $cached_profile_image -: App -
    • -
    • $cached_profile_picdate -: App -
    • $category : App
    • @@ -211,12 +208,6 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
    • $css_sources : App
    • -
    • $curl_code -: App -
    • -
    • $curl_headers -: App -
    • $d : Template
    • @@ -226,8 +217,7 @@ $(document).ready(function(){initNavTree('functions_vars.html','');}); , RedMatrix\RedDAV\RedFile
    • $db -: App -, dba_driver +: dba_driver
    • $debug : dba_driver @@ -276,6 +266,9 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
    • $interactive : App
    • +
    • $is_sys +: App +
    • $itemlist : Redmatrix\Import\Import
    • @@ -470,9 +463,6 @@ $(document).ready(function(){initNavTree('functions_vars.html','');});
    • $wall_to_wall : Item
    • -
    • $widgetlist -: App -
    • $widgets : App
    • @@ -483,6 +473,30 @@ $(document).ready(function(){initNavTree('functions_vars.html','');}); : Conversation
    + + +

    - i -

    + + +

    - n -

    + + +

    - u -

    diff --git a/doc/html/globals_0x62.html b/doc/html/globals_0x62.html index 64384e429..5e4fffd45 100644 --- a/doc/html/globals_0x62.html +++ b/doc/html/globals_0x62.html @@ -222,8 +222,11 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');});
  • blocks_content() : blocks.php
  • +
  • blocks_init() +: blocks.php +
  • blog_init() -: theme.php +: theme.php
  • blog_install() : theme.php @@ -235,7 +238,7 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');}); : theme.php
  • blogtheme_form() -: config.php +: config.php
  • blogtheme_imgurl() : theme.php diff --git a/doc/html/globals_0x64.html b/doc/html/globals_0x64.html index 52b9313da..1474f98ba 100644 --- a/doc/html/globals_0x64.html +++ b/doc/html/globals_0x64.html @@ -156,11 +156,26 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');});
  • day_translate() : text.php
  • +
  • db_concat() +: dba_driver.php +
  • +
  • db_getfunc() +: dba_driver.php +
  • +
  • db_optimizetable() +: dba_driver.php +
  • +
  • db_quoteinterval() +: dba_driver.php +
  • DB_UPDATE_VERSION : boot.php
  • +
  • db_utcnow() +: dba_driver.php +
  • dba_factory() -: dba_driver.php +: dba_driver.php
  • dba_timer() : boot.php @@ -174,12 +189,30 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');});
  • dbesc_array_cb() : dba_driver.php
  • +
  • dbesc_identifier() +: dba_driver.php +
  • +
  • dbescbin() +: dba_driver.php +
  • +
  • dbescdate() +: dba_driver.php +
  • dbg() : dba_driver.php
  • dbq() : dba_driver.php
  • +
  • DBTYPE_MYSQL +: boot.php +
  • +
  • DBTYPE_POSTGRES +: boot.php +
  • +
  • dbunescbin() +: dba_driver.php +
  • decode_tags() : items.php
  • @@ -372,9 +405,6 @@ $(document).ready(function(){initNavTree('globals_0x64.html','');});
  • directory_run() : directory.php
  • -
  • dirprofile_init() -: dirprofile.php -
  • dirsearch_content() : dirsearch.php
  • diff --git a/doc/html/globals_0x65.html b/doc/html/globals_0x65.html index ddd15a2ec..15f68dbbc 100644 --- a/doc/html/globals_0x65.html +++ b/doc/html/globals_0x65.html @@ -147,20 +147,29 @@ $(document).ready(function(){initNavTree('globals_0x65.html','');});
  • editblock_content() : editblock.php
  • +
  • editblock_init() +: editblock.php +
  • editlayout_content() : editlayout.php
  • +
  • editlayout_init() +: editlayout.php +
  • editpost_content() : editpost.php
  • editwebpage_content() : editwebpage.php
  • +
  • editwebpage_init() +: editwebpage.php +
  • else -: style.php -, auth.php +: auth.php , fpostit.php , tpldebug.php +, style.php
  • email_header_encode() : network.php diff --git a/doc/html/globals_0x6c.html b/doc/html/globals_0x6c.html index 7aef7b38d..57ca38e8b 100644 --- a/doc/html/globals_0x6c.html +++ b/doc/html/globals_0x6c.html @@ -162,6 +162,9 @@ $(document).ready(function(){initNavTree('globals_0x6c.html','');});
  • layouts_content() : layouts.php
  • +
  • layouts_init() +: layouts.php +
  • legal_webbie() : text.php
  • diff --git a/doc/html/globals_0x6e.html b/doc/html/globals_0x6e.html index 9e373f1d8..4d5aa9883 100644 --- a/doc/html/globals_0x6e.html +++ b/doc/html/globals_0x6e.html @@ -363,9 +363,6 @@ $(document).ready(function(){initNavTree('globals_0x6e.html','');});
  • nuke_session() : auth.php
  • -
  • NULL_DATE -: boot.php -
  • diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html index 466a1efb7..ad5b01942 100644 --- a/doc/html/globals_0x77.html +++ b/doc/html/globals_0x77.html @@ -159,6 +159,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • webpages_content() : webpages.php
  • +
  • webpages_init() +: webpages.php +
  • wfinger_init() : wfinger.php
  • diff --git a/doc/html/globals_0x78.html b/doc/html/globals_0x78.html index dc2845bd9..e3a2f782c 100644 --- a/doc/html/globals_0x78.html +++ b/doc/html/globals_0x78.html @@ -145,7 +145,7 @@ $(document).ready(function(){initNavTree('globals_0x78.html','');});

    - x -

    • x() -: boot.php +: boot.php
    • xchan_content() : xchan.php @@ -168,6 +168,9 @@ $(document).ready(function(){initNavTree('globals_0x78.html','');});
    • XCHAN_FLAGS_ORPHAN : boot.php
    • +
    • XCHAN_FLAGS_PUBFORUM +: boot.php +
    • XCHAN_FLAGS_SELFCENSORED : boot.php
    • diff --git a/doc/html/globals_func_0x62.html b/doc/html/globals_func_0x62.html index 099922e7d..e141975a7 100644 --- a/doc/html/globals_func_0x62.html +++ b/doc/html/globals_func_0x62.html @@ -221,8 +221,11 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');});
    • blocks_content() : blocks.php
    • +
    • blocks_init() +: blocks.php +
    • blog_init() -: theme.php +: theme.php
    • blog_install() : theme.php @@ -234,7 +237,7 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');}); : theme.php
    • blogtheme_form() -: config.php +: config.php
    • blogtheme_imgurl() : theme.php diff --git a/doc/html/globals_func_0x64.html b/doc/html/globals_func_0x64.html index c788e8a9f..44261db96 100644 --- a/doc/html/globals_func_0x64.html +++ b/doc/html/globals_func_0x64.html @@ -155,8 +155,23 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');});
    • day_translate() : text.php
    • +
    • db_concat() +: dba_driver.php +
    • +
    • db_getfunc() +: dba_driver.php +
    • +
    • db_optimizetable() +: dba_driver.php +
    • +
    • db_quoteinterval() +: dba_driver.php +
    • +
    • db_utcnow() +: dba_driver.php +
    • dba_factory() -: dba_driver.php +: dba_driver.php
    • dba_timer() : boot.php @@ -170,12 +185,24 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');});
    • dbesc_array_cb() : dba_driver.php
    • +
    • dbesc_identifier() +: dba_driver.php +
    • +
    • dbescbin() +: dba_driver.php +
    • +
    • dbescdate() +: dba_driver.php +
    • dbg() : dba_driver.php
    • dbq() : dba_driver.php
    • +
    • dbunescbin() +: dba_driver.php +
    • decode_tags() : items.php
    • @@ -347,9 +374,6 @@ $(document).ready(function(){initNavTree('globals_func_0x64.html','');});
    • directory_run() : directory.php
    • -
    • dirprofile_init() -: dirprofile.php -
    • dirsearch_content() : dirsearch.php
    • diff --git a/doc/html/globals_func_0x65.html b/doc/html/globals_func_0x65.html index d52e7eb3c..fc927e91c 100644 --- a/doc/html/globals_func_0x65.html +++ b/doc/html/globals_func_0x65.html @@ -146,15 +146,24 @@ $(document).ready(function(){initNavTree('globals_func_0x65.html','');});
    • editblock_content() : editblock.php
    • +
    • editblock_init() +: editblock.php +
    • editlayout_content() : editlayout.php
    • +
    • editlayout_init() +: editlayout.php +
    • editpost_content() : editpost.php
    • editwebpage_content() : editwebpage.php
    • +
    • editwebpage_init() +: editwebpage.php +
    • email_header_encode() : network.php
    • diff --git a/doc/html/globals_func_0x6c.html b/doc/html/globals_func_0x6c.html index 43986657d..9cdb99640 100644 --- a/doc/html/globals_func_0x6c.html +++ b/doc/html/globals_func_0x6c.html @@ -155,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_func_0x6c.html','');});
    • layouts_content() : layouts.php
    • +
    • layouts_init() +: layouts.php +
    • legal_webbie() : text.php
    • diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html index 374fcd7dc..9985b26a1 100644 --- a/doc/html/globals_func_0x77.html +++ b/doc/html/globals_func_0x77.html @@ -158,6 +158,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
    • webpages_content() : webpages.php
    • +
    • webpages_init() +: webpages.php +
    • wfinger_init() : wfinger.php
    • diff --git a/doc/html/globals_func_0x78.html b/doc/html/globals_func_0x78.html index d20431ab2..133418043 100644 --- a/doc/html/globals_func_0x78.html +++ b/doc/html/globals_func_0x78.html @@ -144,7 +144,7 @@ $(document).ready(function(){initNavTree('globals_func_0x78.html','');});

      - x -

      • x() -: boot.php +: boot.php
      • xchan_content() : xchan.php diff --git a/doc/html/globals_vars_0x64.html b/doc/html/globals_vars_0x64.html index dd0bf4e87..eeee1c304 100644 --- a/doc/html/globals_vars_0x64.html +++ b/doc/html/globals_vars_0x64.html @@ -143,6 +143,12 @@ $(document).ready(function(){initNavTree('globals_vars_0x64.html','');});
      • DB_UPDATE_VERSION : boot.php
      • +
      • DBTYPE_MYSQL +: boot.php +
      • +
      • DBTYPE_POSTGRES +: boot.php +
      • DEFAULT_DB_ENGINE : boot.php
      • diff --git a/doc/html/globals_vars_0x6e.html b/doc/html/globals_vars_0x6e.html index 45c9f9743..645094fe8 100644 --- a/doc/html/globals_vars_0x6e.html +++ b/doc/html/globals_vars_0x6e.html @@ -263,9 +263,6 @@ $(document).ready(function(){initNavTree('globals_vars_0x6e.html','');});
      • NOTIFY_WALL : boot.php
      • -
      • NULL_DATE -: boot.php -
      diff --git a/doc/html/globals_vars_0x78.html b/doc/html/globals_vars_0x78.html index c229b615f..41525e813 100644 --- a/doc/html/globals_vars_0x78.html +++ b/doc/html/globals_vars_0x78.html @@ -155,6 +155,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x78.html','');});
    • XCHAN_FLAGS_ORPHAN : boot.php
    • +
    • XCHAN_FLAGS_PUBFORUM +: boot.php +
    • XCHAN_FLAGS_SELFCENSORED : boot.php
    • diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html index 76f606ace..bab370cec 100644 --- a/doc/html/hierarchy.html +++ b/doc/html/hierarchy.html @@ -118,44 +118,45 @@ $(document).ready(function(){initNavTree('hierarchy.html','');}); |oCConversation |\CItem oCCache -oCdba_driver +oCdba_driverAbstract database driver class |oCdba_mysql -|\Cdba_mysqli -oCenotify -oCICollection -|\CRedMatrix\RedDAV\RedDirectoryRedDirectory class -oCIFile -|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV -oCRedmatrix\Import\Import -oCIQuota -|\CRedMatrix\RedDAV\RedDirectoryRedDirectory class -oCITemplateEngine -|oCFriendicaSmartyEngine -|\CTemplate -oCNode -|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class -|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV -oCOAuthDataStore -|\CFKOAuthDataStore -oCOAuthServer -|\CFKOAuth1 -oCphoto_driver -|oCphoto_gd -|\Cphoto_imagick -oCPlugin -|\CRedMatrix\RedDAV\RedBrowserProvides a DAV frontend for the webbrowser -oCProtoDriver -|\CZotDriver -oCSabre -|oCRedMatrix\RedDAV\RedBasicAuthAuthentication backend class for RedDAV -|oCRedMatrix\RedDAV\RedBrowserProvides a DAV frontend for the webbrowser -|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class -|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class -|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class -|oCRedMatrix\RedDAV\RedFileThis class represents a file in DAV -|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV -\CSmarty - \CFriendicaSmarty +|oCdba_mysqli +|\Cdba_postgres +oCenotify +oCICollection +|\CRedMatrix\RedDAV\RedDirectoryRedDirectory class +oCIFile +|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV +oCRedmatrix\Import\Import +oCIQuota +|\CRedMatrix\RedDAV\RedDirectoryRedDirectory class +oCITemplateEngine +|oCFriendicaSmartyEngine +|\CTemplate +oCNode +|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class +|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV +oCOAuthDataStore +|\CFKOAuthDataStore +oCOAuthServer +|\CFKOAuth1 +oCphoto_driver +|oCphoto_gd +|\Cphoto_imagick +oCPlugin +|\CRedMatrix\RedDAV\RedBrowserProvides a DAV frontend for the webbrowser +oCProtoDriver +|\CZotDriver +oCSabre +|oCRedMatrix\RedDAV\RedBasicAuthAuthentication backend class for RedDAV +|oCRedMatrix\RedDAV\RedBrowserProvides a DAV frontend for the webbrowser +|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class +|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class +|oCRedMatrix\RedDAV\RedDirectoryRedDirectory class +|oCRedMatrix\RedDAV\RedFileThis class represents a file in DAV +|\CRedMatrix\RedDAV\RedFileThis class represents a file in DAV +\CSmarty + \CFriendicaSmarty diff --git a/doc/html/hierarchy.js b/doc/html/hierarchy.js index cad7823d1..e8df755d6 100644 --- a/doc/html/hierarchy.js +++ b/doc/html/hierarchy.js @@ -11,7 +11,8 @@ var hierarchy = [ "Cache", "classCache.html", null ], [ "dba_driver", "classdba__driver.html", [ [ "dba_mysql", "classdba__mysql.html", null ], - [ "dba_mysqli", "classdba__mysqli.html", null ] + [ "dba_mysqli", "classdba__mysqli.html", null ], + [ "dba_postgres", "classdba__postgres.html", null ] ] ], [ "enotify", "classenotify.html", null ], [ "ICollection", null, [ diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index fed3e46d6..e6956b904 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -290,7 +290,7 @@ Functions @@ -454,7 +454,7 @@ Functions @@ -759,7 +759,7 @@ Functions

      The channel default theme is also selected for use, unless over-riden elsewhere.

      load/reload current theme info

      -

      Referenced by achievements_content(), block_init(), blocks_content(), channel_init(), chat_init(), cloud_init(), common_init(), connect_init(), hcard_init(), layouts_content(), page_init(), photos_init(), profile_init(), profile_photo_init(), profiles_init(), profperm_init(), viewconnections_init(), and webpages_content().

      +

      Referenced by achievements_content(), block_init(), blocks_init(), channel_init(), chat_init(), cloud_init(), common_init(), connect_init(), editblock_init(), editlayout_init(), editwebpage_init(), hcard_init(), layouts_init(), page_init(), photos_init(), profile_init(), profile_photo_init(), profiles_init(), profiles_post(), profperm_init(), viewconnections_init(), and webpages_init().

      @@ -815,8 +815,6 @@ Functions
      -

      Referenced by dirprofile_init().

      -
      @@ -924,7 +922,7 @@ Functions
      Returns
      string

      'zid' string url - url to accept zid string zid - urlencoded zid string result - the return string we calculated, change it if you want to return something else

      -

      Referenced by advanced_profile(), app_render(), chanview_content(), chatsvc_content(), conversation(), dirprofile_init(), format_categories(), format_hashtags(), format_mentions(), get_plink(), get_things(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), and widget_suggestedchats().

      +

      Referenced by advanced_profile(), app_render(), chanview_content(), chatsvc_content(), conversation(), format_categories(), format_hashtags(), format_mentions(), get_plink(), get_things(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), parse_app_description(), tryzrlaudio(), tryzrlvideo(), widget_bookmarkedchats(), widget_photo(), and widget_suggestedchats().

      diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index 6c68d2138..091ea54ec 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -159,10 +159,10 @@ Functions

      Arbitrary configuration storage.

      Note: Please do not store booleans - convert to 0/1 integer values The get_?config() functions return boolean false for keys that are unset, and this could lead to subtle bugs.

      Arrays get stored as serialize strings.

      -
      Todo:
      There are a few places in the code (such as the admin panel) where boolean configurations need to be fixed as of 10/08/2011.
      +
      Todo:
      There are a few places in the code (such as the admin panel) where boolean configurations need to be fixed as of 10/08/2011.
      @@ -433,7 +433,7 @@ Functions
      Returns
      mixed Stored value or false if it does not exist
      -

      Referenced by Conversation\__construct(), acl_init(), bb2diaspora_itembody(), App\build_pagehead(), change_channel(), channel_content(), connect_content(), connedit_content(), connedit_post(), contact_block(), contact_remove(), conversation(), current_theme(), diaspora_request(), display_content(), editpost_content(), feature_enabled(), findpeople_widget(), fix_attached_file_permissions(), fix_attached_photo_permissions(), Item\get_comment_box(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), home_init(), invite_content(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), load_pdl(), FKOAuth1\loginUser(), mail_content(), message_content(), nav(), network_content(), new_contact(), notification(), pdledit_content(), ping_init(), post_post(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), rpost_content(), search_content(), set_pconfig(), settings_post(), smilies(), tag_deliver(), theme_content(), webpages_content(), widget_archive(), widget_notes(), widget_settings_menu(), and zot_refresh().

      +

      Referenced by Conversation\__construct(), acl_init(), bb2diaspora_itembody(), blocks_content(), App\build_pagehead(), change_channel(), channel_content(), connect_content(), connedit_content(), connedit_post(), contact_block(), contact_remove(), conversation(), current_theme(), diaspora_request(), directory_content(), display_content(), editpost_content(), feature_enabled(), findpeople_widget(), fix_attached_file_permissions(), fix_attached_photo_permissions(), Item\get_comment_box(), get_online_status(), Item\get_template_data(), get_theme_uid(), group_content(), home_init(), invite_content(), invite_post(), item_post(), item_store(), item_store_update(), items_fetch(), load_pdl(), FKOAuth1\loginUser(), mail_content(), message_content(), nav(), network_content(), new_contact(), notification(), pdledit_content(), ping_init(), post_post(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), rpost_content(), search_content(), set_pconfig(), settings_post(), smilies(), tag_deliver(), theme_content(), webpages_content(), widget_archive(), widget_notes(), widget_settings_menu(), zfinger_init(), and zot_refresh().

      diff --git a/doc/html/include_2network_8php.html b/doc/html/include_2network_8php.html index dc050e058..56a0aadea 100644 --- a/doc/html/include_2network_8php.html +++ b/doc/html/include_2network_8php.html @@ -120,7 +120,7 @@ Functions    z_post_url_json ($url, $params, $redirects=0, $opts=array())   - json_return_and_die ($x) + json_return_and_die ($x)    xml_status ($st, $message= '')   @@ -747,7 +747,7 @@ Functions
      Returns
      array 'return_code' => HTTP return code or 0 if timeout or failure 'success' => boolean true (if HTTP 2xx result) or false 'header' => HTTP headers 'body' => fetched content
      -

      Referenced by check_htaccess(), directory_content(), dirprofile_init(), discover_by_url(), discover_by_webbie(), externals_run(), fetch_xrd_links(), get_diaspora_reshare_xml(), handle_feed(), import_post(), import_profile_photo(), import_site(), import_xchan(), navbar_complete(), oembed_fetch_url(), oexchange_content(), onepoll_run(), parseurl_getsiteinfo(), poco_load(), pubsites_content(), reflect_photo_callback(), remote_online_status(), scale_external_images(), scrape_feed(), scrape_vcard(), setup_post(), sslify_init(), sync_directories(), update_suggestions(), webfinger_rfc7033(), z_post_url(), zot_finger(), and zot_register_hub().

      +

      Referenced by check_htaccess(), directory_content(), discover_by_url(), discover_by_webbie(), externals_run(), fetch_xrd_links(), get_diaspora_reshare_xml(), handle_feed(), import_post(), import_profile_photo(), import_site(), import_xchan(), navbar_complete(), oembed_fetch_url(), oexchange_content(), onepoll_run(), parseurl_getsiteinfo(), poco_load(), pubsites_content(), reflect_photo_callback(), remote_online_status(), scale_external_images(), scrape_feed(), scrape_vcard(), setup_post(), sslify_init(), sync_directories(), update_suggestions(), webfinger_rfc7033(), z_post_url(), zot_finger(), and zot_register_hub().

      diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html index cfe6a12b6..b6fe1692b 100644 --- a/doc/html/items_8php.html +++ b/doc/html/items_8php.html @@ -148,15 +148,15 @@ Functions    title_is_body ($title, $body)   - get_item_elements ($x) + get_item_elements ($x)   - import_author_xchan ($x) + import_author_xchan ($x)   - import_author_diaspora ($x) + import_author_diaspora ($x)   - import_author_rss ($x) + import_author_rss ($x)   - import_author_unknown ($x) + import_author_unknown ($x)    encode_item ($item, $mirror=false)   @@ -180,9 +180,9 @@ Functions    encode_mail ($item)   - get_mail_elements ($x) + get_mail_elements ($x)   - get_profile_elements ($x) + get_profile_elements ($x)    get_atom_elements ($feed, $item, &$author)   diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 3e1fd3824..3e8307803 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -372,7 +372,7 @@ Functions
      Returns
      translated string if exists, otherwise return $s
      -

      Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), catblock(), categories_widget(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), conversation(), create_account(), create_identity(), day_translate(), delegate_content(), design_tools(), diaspora_like(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), foofoo(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), gender_selector_min(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), home_content(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_check_service_class(), impel_init(), import_author_rss(), import_author_unknown(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), like_puller(), load_database(), localize_item(), lockview_content(), locs_content(), locs_post(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), marital_selector_min(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_init(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), update_birthdays(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_approve(), user_deny(), validate_channelname(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

      +

      Referenced by account_remove(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), app_render(), app_store(), app_update(), appman_content(), appman_post(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bb2diaspora_itembody(), bbcode(), block_content(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), catblock(), categories_widget(), channel_content(), channel_init(), chat_content(), chat_init(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatsvc_content(), check_account_email(), check_account_invite(), check_config(), check_form_security_std_err_msg(), check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), check_smarty3(), check_store(), cloud_init(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), conversation(), create_account(), create_identity(), day_translate(), delegate_content(), design_tools(), diaspora_like(), dir_safe_mode(), dir_sort_links(), dir_tagblock(), directory_content(), dirsearch_content(), display_content(), dob(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store_item(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), follow_init(), foofoo(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), gender_selector_min(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_features(), get_mood_verbs(), get_perms(), get_plink(), get_poke_verbs(), Item\get_template_data(), group_add(), group_content(), group_post(), group_side(), hcard_init(), help_content(), home_content(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_check_service_class(), impel_init(), import_author_rss(), import_author_unknown(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_content(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), like_puller(), load_database(), localize_item(), lockview_content(), locs_content(), locs_post(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), marital_selector_min(), match_content(), menu_content(), menu_post(), menu_render(), message_content(), mimetype_select(), mini_group_select(), mitem_content(), mitem_init(), mitem_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), network_to_name(), new_channel_content(), new_channel_post(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notify_content(), obj_verbs(), oembed_bbcode2html(), oembed_iframe(), oexchange_content(), openid_content(), page_init(), pagelist_widget(), paginate(), pdl_selector(), pdledit_content(), pdledit_post(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), poll_content(), populate_acl(), post_activity_item(), post_init(), probe_content(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), rbmark_content(), rbmark_post(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), rmagic_content(), rmagic_post(), role_selector(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), service_limits_content(), settings_post(), setup_content(), sexpref_selector(), sexpref_selector_min(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), sync_locations(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), translate_scope(), translate_system_apps(), update_birthdays(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_approve(), user_deny(), validate_channelname(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), viewsrc_content(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

      diff --git a/doc/html/layouts_8php.html b/doc/html/layouts_8php.html index 01db274f4..7287e9147 100644 --- a/doc/html/layouts_8php.html +++ b/doc/html/layouts_8php.html @@ -112,6 +112,8 @@ $(document).ready(function(){initNavTree('layouts_8php.html','');}); + +

      Functions

       layouts_init (&$a)
       
       layouts_content (&$a)
       
      @@ -130,6 +132,22 @@ Functions
      +
      + + +
      +
      + + + + + + + + +
      layouts_init ($a)
      +
      +
      diff --git a/doc/html/layouts_8php.js b/doc/html/layouts_8php.js index ee929d2fc..5c56bc6c3 100644 --- a/doc/html/layouts_8php.js +++ b/doc/html/layouts_8php.js @@ -1,4 +1,5 @@ var layouts_8php = [ - [ "layouts_content", "layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50", null ] + [ "layouts_content", "layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50", null ], + [ "layouts_init", "layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa", null ] ]; \ No newline at end of file diff --git a/doc/html/navtree.js b/doc/html/navtree.js index cc61fa4f9..ae229089f 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -37,15 +37,15 @@ var NAVTREE = var NAVTREEINDEX = [ "BS-Default_8php.html", -"boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501", -"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c", -"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6", -"diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668", -"globals_func_0x6e.html", -"include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571", -"mod__chanview_8php.html", -"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82", -"tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149" +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115", +"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f", +"classTemplate.html#a37c15f6d1ade500943629f27a62808b7", +"dba__driver_8php.html", +"globals_0x67.html", +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941", +"mod_2bookmarks_8php.html", +"refimport_8php.html", +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 0deb6b75f..4c0766557 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -144,6 +144,7 @@ var NAVTREEINDEX0 = "block_8php.html#a9b61c96044ed2a068f18c10370a78d5c":[6,0,1,8,1], "blocks_8php.html":[6,0,1,9], "blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12":[6,0,1,9,0], +"blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9":[6,0,1,9,1], "blogga_2php_2theme_8php.html":[6,0,3,1,1,0,2], "blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b":[6,0,3,1,1,0,2,0], "blogga_2view_2theme_2blog_2theme_8php.html":[6,0,3,1,1,1,0,0,2], @@ -153,101 +154,100 @@ var NAVTREEINDEX0 = "blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae":[6,0,3,1,1,1,0,0,2,1], "blogga_2view_2theme_2blog_2theme_8php.html#af634a3f721c5e238530d0636d33230ec":[6,0,3,1,1,1,0,0,2,4], "boot_8php.html":[6,0,4], -"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,146], -"boot_8php.html#a01353c9abebc3544ea080ac161729632":[6,0,4,39], -"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,160], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,266], -"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,138], +"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[6,0,4,148], +"boot_8php.html#a0209e605028a5bb492683951ab30d49d":[6,0,4,309], +"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[6,0,4,162], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[6,0,4,267], +"boot_8php.html#a028380b2902a86ba32198f6d3b5d10bb":[6,0,4,140], "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[6,0,4,58], -"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,179], +"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[6,0,4,181], "boot_8php.html#a0450389f24c632906fbc24347700a543":[6,0,4,49], -"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,111], +"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[6,0,4,113], "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[6,0,4,1], -"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,222], +"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[6,0,4,223], "boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[6,0,4,73], -"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[6,0,4,299], -"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,183], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,286], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,282], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,285], +"boot_8php.html#a0afeb43da443d6ff3526ede5ecdcc3b3":[6,0,4,300], +"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[6,0,4,185], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[6,0,4,287], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[6,0,4,283], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[6,0,4,286], "boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[6,0,4,22], "boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[6,0,4,65], "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[6,0,4,15], "boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[6,0,4,83], "boot_8php.html#a107d53f96acf5319905a34b1870db09a":[6,0,4,42], -"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,271], -"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,140], -"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,270], +"boot_8php.html#a115faf8797718c3165498abbd6895843":[6,0,4,272], +"boot_8php.html#a11cfe7d99b4dac0454d0de8873989f81":[6,0,4,142], +"boot_8php.html#a1200c1f968ff3d52ef878de5fc5c30c1":[6,0,4,271], "boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[6,0,4,87], "boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[6,0,4,84], -"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,210], +"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[6,0,4,212], "boot_8php.html#a176664e78dcb9132e16be69418223eb2":[6,0,4,68], -"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,159], -"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,155], -"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,182], -"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,149], -"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[6,0,4,298], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,305], -"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,260], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,307], -"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,186], +"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[6,0,4,161], +"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[6,0,4,157], +"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[6,0,4,184], +"boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[6,0,4,151], +"boot_8php.html#a1997c4b7d0253e036bc0fb6b20e4af71":[6,0,4,299], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[6,0,4,306], +"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[6,0,4,261], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[6,0,4,308], +"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[6,0,4,188], "boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[6,0,4,82], -"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,237], -"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,113], -"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,166], -"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,231], -"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,203], -"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,262], +"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[6,0,4,238], +"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[6,0,4,115], +"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[6,0,4,168], +"boot_8php.html#a205d013103997adfa72953d2f20c01e1":[6,0,4,232], +"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[6,0,4,205], +"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[6,0,4,263], "boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[6,0,4,43], "boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[6,0,4,21], -"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,106], +"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[6,0,4,108], "boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[6,0,4,98], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,274], -"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,206], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[6,0,4,275], +"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[6,0,4,208], "boot_8php.html#a29528a2544373cc19a378f350040c6a1":[6,0,4,89], -"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,139], -"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,235], -"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,114], -"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,258], -"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,202], -"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,135], +"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[6,0,4,141], +"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[6,0,4,236], +"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[6,0,4,116], +"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[6,0,4,259], +"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[6,0,4,204], +"boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[6,0,4,137], "boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[6,0,4,74], "boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[6,0,4,79], "boot_8php.html#a329400dcb29897cdaae3020109272285":[6,0,4,17], -"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,242], -"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,153], +"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[6,0,4,243], +"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[6,0,4,155], "boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[6,0,4,46], -"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,128], -"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,168], -"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,218], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,311], -"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[6,0,4,297], -"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,191], -"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,117], -"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,122], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,310], -"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,188], -"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,233], +"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[6,0,4,130], +"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[6,0,4,170], +"boot_8php.html#a36003bebe4ce860c6652bcc3e09b2214":[6,0,4,219], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[6,0,4,313], +"boot_8php.html#a37281c30bd92cecb499878d6778c570f":[6,0,4,298], +"boot_8php.html#a37ddabc112db443b4c67fbc0f708817e":[6,0,4,102], +"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[6,0,4,193], +"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[6,0,4,119], +"boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[6,0,4,124], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[6,0,4,312], +"boot_8php.html#a3d48dffd9dc73a187263c3002cdf00c0":[6,0,4,190], +"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[6,0,4,234], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[6,0,4,12], "boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[6,0,4,66], "boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[6,0,4,96], "boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[6,0,4,56], -"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,142], -"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,226], -"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,201], +"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[6,0,4,144], +"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[6,0,4,227], +"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[6,0,4,203], "boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[6,0,4,95], -"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[6,0,4,176], -"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,163], +"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[6,0,4,178], +"boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[6,0,4,165], "boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[6,0,4,77], -"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,169], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,283], -"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,189], -"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,112], -"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,252], -"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,187], +"boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[6,0,4,171], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[6,0,4,284], +"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[6,0,4,191], +"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[6,0,4,114], +"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[6,0,4,253], +"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[6,0,4,189], "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[6,0,4,6], -"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,224], -"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,62], -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,247], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,213] +"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[6,0,4,225], +"boot_8php.html#a4f507a5996dbb3da148add0339a40d5a":[6,0,4,62] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 49933455f..e5c55b0c2 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,219 +1,222 @@ var NAVTREEINDEX1 = { +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[6,0,4,248], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[6,0,4,215], "boot_8php.html#a50a6707a28c7d05d3f49eaabc7994501":[6,0,4,30], -"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,167], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[6,0,4,169], "boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[6,0,4,44], "boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[6,0,4,88], "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[6,0,4,36], -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,205], -"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,246], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,308], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[6,0,4,207], +"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[6,0,4,247], +"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[6,0,4,310], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[6,0,4,20], "boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[6,0,4,67], -"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,195], -"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[6,0,4,219], +"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[6,0,4,197], +"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[6,0,4,220], "boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[6,0,4,85], -"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,174], -"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,220], +"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[6,0,4,176], +"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[6,0,4,221], "boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c":[6,0,4,34], "boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[6,0,4,19], "boot_8php.html#a6252d8eca67c689d9035ec6da544cf46":[6,0,4,25], "boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[6,0,4,81], -"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,110], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,279], -"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,180], -"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,151], -"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,154], +"boot_8php.html#a639f079bf28f7bbb2769fee651d76dd8":[6,0,4,112], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[6,0,4,280], +"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[6,0,4,182], +"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[6,0,4,153], +"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[6,0,4,156], "boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[6,0,4,48], -"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,157], -"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,264], -"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,250], -"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,244], -"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,107], +"boot_8php.html#a6969947145a139ec374ce098224d8e81":[6,0,4,159], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[6,0,4,265], +"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[6,0,4,251], +"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[6,0,4,245], +"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[6,0,4,109], "boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[6,0,4,99], -"boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c":[6,0,4,214], -"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,230], -"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,137], -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,225], -"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,108], -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,263], -"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,173], +"boot_8php.html#a6df1102664f64b274810db85197c2755":[6,0,4,231], +"boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[6,0,4,139], +"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[6,0,4,226], +"boot_8php.html#a7037bcbca223395c06bc67f65024de7a":[6,0,4,110], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[6,0,4,264], +"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[6,0,4,175], "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[6,0,4,29], -"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,196], -"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,144], +"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[6,0,4,198], +"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[6,0,4,146], "boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[6,0,4,78], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[6,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,287], -"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,296], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[6,0,4,288], +"boot_8php.html#a76480b213af379c0c6c7fa4e39019ca9":[6,0,4,297], "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[6,0,4,4], "boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[6,0,4,80], "boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[6,0,4,93], -"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,254], -"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,123], +"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[6,0,4,255], +"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[6,0,4,125], "boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[6,0,4,71], -"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,143], -"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[6,0,4,294], -"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,175], +"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[6,0,4,145], +"boot_8php.html#a7b511bd93202c43405adbe3b5bcebbfe":[6,0,4,295], +"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[6,0,4,177], "boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[6,0,4,75], -"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,115], +"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[6,0,4,117], "boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[6,0,4,63], -"boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1":[6,0,4,302], -"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,177], +"boot_8php.html#a7e5627b5ca4b7464feb0f08663b19ea1":[6,0,4,303], +"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[6,0,4,179], "boot_8php.html#a7eeb83e15968f7a6cc5937d493815773":[6,0,4,50], "boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[6,0,4,53], "boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[6,0,4,90], -"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,126], -"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,216], +"boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[6,0,4,128], +"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[6,0,4,217], "boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[6,0,4,57], -"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,120], +"boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[6,0,4,122], "boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[6,0,4,61], -"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,228], -"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,133], -"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,125], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,278], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,277], -"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,194], +"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[6,0,4,229], +"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[6,0,4,135], +"boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[6,0,4,127], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[6,0,4,279], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[6,0,4,278], +"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[6,0,4,196], "boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[6,0,4,16], -"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,104], -"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,248], -"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,136], -"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,130], -"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,256], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,306], -"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,251], +"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[6,0,4,106], +"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[6,0,4,249], +"boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f":[6,0,4,101], +"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[6,0,4,138], +"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[6,0,4,132], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[6,0,4,257], +"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[6,0,4,307], +"boot_8php.html#a921c55b9fa59a327a5f0e07fa1ccb2e0":[6,0,4,252], "boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[6,0,4,33], "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[6,0,4,11], -"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,158], -"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,134], -"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,132], -"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,290], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,261], +"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[6,0,4,160], +"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[6,0,4,136], +"boot_8php.html#a949116d9a295b214293006c060ca4848":[6,0,4,134], +"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[6,0,4,291], +"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[6,0,4,262], "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[6,0,4,18], -"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,208], -"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[6,0,4,300], -"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,249], +"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[6,0,4,210], +"boot_8php.html#a997614f25e58f8313641e1eb0109fd10":[6,0,4,301], +"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[6,0,4,250], "boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[6,0,4,52], "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[6,0,4,5], -"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,240], -"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,209], -"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,304], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,280], -"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[6,0,4,292], -"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,239], -"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,197], +"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[6,0,4,241], +"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[6,0,4,211], +"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[6,0,4,305], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[6,0,4,281], +"boot_8php.html#a9f8a2938ddd9ee2867e6f8ce77b61b2f":[6,0,4,293], +"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[6,0,4,240], +"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[6,0,4,199], "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[6,0,4,26], -"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,217], +"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[6,0,4,218], "boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[6,0,4,47], -"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,165], +"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[6,0,4,167], "boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[6,0,4,9], -"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,162], -"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,119], +"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[6,0,4,164], +"boot_8php.html#aa589421267f0c2f0d643f727792cce35":[6,0,4,121], "boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[6,0,4,92], -"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,101], -"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,245], -"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[6,0,4,148], -"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,227], +"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[6,0,4,103], +"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[6,0,4,246], +"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[6,0,4,150], +"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[6,0,4,228], "boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[6,0,4,72], -"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,200], -"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,124], -"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,229], +"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[6,0,4,202], +"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[6,0,4,126], +"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[6,0,4,230], "boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[6,0,4,35], -"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,223], -"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,253], -"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,193], -"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,234], -"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,118], -"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,150], +"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[6,0,4,224], +"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[6,0,4,254], +"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[6,0,4,195], +"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[6,0,4,235], +"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[6,0,4,120], +"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[6,0,4,152], "boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[6,0,4,59], -"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,211], +"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[6,0,4,213], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[6,0,4,7], -"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,103], -"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,289], +"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[6,0,4,105], +"boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d":[6,0,4,290], "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[6,0,4,40], -"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,257], +"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[6,0,4,258], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[6,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,284], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[6,0,4,285], "boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[6,0,4,70], -"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,121], -"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,102], -"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,131], +"boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[6,0,4,123], +"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[6,0,4,104], +"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[6,0,4,133], "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[6,0,4,24], -"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,178], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,255], -"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,141], +"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[6,0,4,180], +"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[6,0,4,256], +"boot_8php.html#ac4d1c93dabcace711ffb4931204c336b":[6,0,4,143], "boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[6,0,4,100], "boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[6,0,4,27], "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[6,0,4,38], "boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[6,0,4,60], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,291], -"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,127], -"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[6,0,4,293], -"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,129], -"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,207], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[6,0,4,292], +"boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[6,0,4,129], +"boot_8php.html#ac89396b9144391acd08d6d0f9b332220":[6,0,4,294], +"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[6,0,4,131], +"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[6,0,4,209], "boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[6,0,4,37], "boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[6,0,4,13], "boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[6,0,4,8], -"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,181], -"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,303], -"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,241], -"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,276], -"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,215], +"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[6,0,4,183], +"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[6,0,4,304], +"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[6,0,4,242], +"boot_8php.html#ace6d70ac290397ddd40e561fd0831858":[6,0,4,277], +"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[6,0,4,216], "boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[6,0,4,69], -"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,161], -"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,171], +"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[6,0,4,163], +"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[6,0,4,173], "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[6,0,4,10], "boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[6,0,4,76], "boot_8php.html#ad34c1547020a305915bcc39707744690":[6,0,4,91], "boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[6,0,4,31], -"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,236], -"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,265], -"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,259], -"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,295], +"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[6,0,4,237], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[6,0,4,266], +"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[6,0,4,260], +"boot_8php.html#ad94aca4c260b8a892397786201dc4664":[6,0,4,296], "boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[6,0,4,97], -"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,145], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,268], +"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[6,0,4,147], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[6,0,4,269], "boot_8php.html#add517a0958ac684792c62142a3877f81":[6,0,4,41], "boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[6,0,4,23], -"boot_8php.html#ae09767b94688657978ff9366ec63684b":[6,0,4,301], +"boot_8php.html#ae09767b94688657978ff9366ec63684b":[6,0,4,302], "boot_8php.html#ae0d9527117cd87dcba11986047ae336e":[6,0,4,45], -"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,109], -"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,275], -"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,190], -"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,164], -"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,198], -"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,288], +"boot_8php.html#ae0da3ca0f54d75d22c71e007331f8d06":[6,0,4,111], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[6,0,4,276], +"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[6,0,4,192], +"boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[6,0,4,166], +"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[6,0,4,200], +"boot_8php.html#ae97836b0547953be182a2334c9c91d3c":[6,0,4,39], +"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[6,0,4,289], "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[6,0,4,28], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,281], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[6,0,4,282], "boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[6,0,4,54], -"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,238], -"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,269], -"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,172], -"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,105], -"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,184], -"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,199], -"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,147], -"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,116], +"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[6,0,4,239], +"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[6,0,4,270], +"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[6,0,4,174], +"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[6,0,4,107], +"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[6,0,4,186], +"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[6,0,4,201], +"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[6,0,4,149], +"boot_8php.html#aefe573c3c7b0d37fbff264bbae79d673":[6,0,4,118], "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[6,0,4,32], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,272], -"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,192], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[6,0,4,273], +"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[6,0,4,194], "boot_8php.html#af3a4271630aabd8be592213f925d6a36":[6,0,4,64], "boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[6,0,4,55], -"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,243], -"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,152], -"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,212], -"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,170], +"boot_8php.html#af3ff14985bffbd951a6ea356b7ec3007":[6,0,4,244], +"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[6,0,4,154], +"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[6,0,4,214], +"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[6,0,4,172], "boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[6,0,4,94], -"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,267], -"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,204], -"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,185], -"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,273], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[6,0,4,268], +"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[6,0,4,206], +"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[6,0,4,187], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[6,0,4,274], "boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[6,0,4,51], -"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,221], +"boot_8php.html#afbb21ecccac9819aa65397e816868a5f":[6,0,4,222], "boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[6,0,4,86], -"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,156], +"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[6,0,4,158], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[6,0,4,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,309], -"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,232], +"boot_8php.html#afef254290febac854c85fc698d9483a6":[6,0,4,311], +"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[6,0,4,233], "boxy_8php.html":[6,0,3,1,4,1,0], "cache_8php.html":[6,0,0,15], "chanman_8php.html":[6,0,0,16], @@ -229,25 +232,22 @@ var NAVTREEINDEX1 = "chatsvc_8php.html#a7c9a9b9c24a2b02eed8efd6b09632d03":[6,0,1,14,2], "choklet_8php.html":[6,0,3,0,0], "classApp.html":[5,0,7], -"classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3":[5,0,7,56], -"classApp.html#a050b0696118da47e8b30859ad1a2c149":[5,0,7,40], +"classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3":[5,0,7,51], +"classApp.html#a050b0696118da47e8b30859ad1a2c149":[5,0,7,38], "classApp.html#a084e03c77686d8c13390fef3f7428a2b":[5,0,7,5], "classApp.html#a08bc87aff64f39fbc084e9d6545cee4d":[5,0,7,2], -"classApp.html#a08c24d6a6fc52fcc784b0f765f13b820":[5,0,7,75], +"classApp.html#a08c24d6a6fc52fcc784b0f765f13b820":[5,0,7,71], "classApp.html#a08f0537964d98958d218066364cff785":[5,0,7,1], -"classApp.html#a0ce85be198e46570366cb3344f3c55b8":[5,0,7,50], -"classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d":[5,0,7,60], +"classApp.html#a0ce85be198e46570366cb3344f3c55b8":[5,0,7,46], +"classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d":[5,0,7,56], "classApp.html#a123b903dfe5d3488cc68db3471d36fd2":[5,0,7,30], -"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11":[5,0,7,79], +"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11":[5,0,7,75], "classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3":[5,0,7,32], -"classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a":[5,0,7,73], -"classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f":[5,0,7,61], +"classApp.html#a1936f2afce0dc0d1bbed15ae1f2ee81a":[5,0,7,69], +"classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f":[5,0,7,57], "classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2":[5,0,7,8], +"classApp.html#a1f60d19d47021629faac7a0a6d917e94":[5,0,7,55], "classApp.html#a20d1890cc16b22ba79eeb0cbf2f719f7":[5,0,7,29], "classApp.html#a230e975296cf164da2fee35ef720964f":[5,0,7,33], -"classApp.html#a244b2d53b21be269aad2269d23192f95":[5,0,7,77], -"classApp.html#a256360c9184fed6d7556e0bc0a835d7f":[5,0,7,48], -"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[5,0,7,76], -"classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[5,0,7,12], -"classApp.html#a330410a288f3393d53772f5e98f857ea":[5,0,7,51] +"classApp.html#a244b2d53b21be269aad2269d23192f95":[5,0,7,73] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 6f46ad030..933ac1c64 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,74 +1,72 @@ var NAVTREEINDEX2 = { -"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,7,66], +"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[5,0,7,72], +"classApp.html#a2eb832a8577dee7d40b93abdf6d1d35a":[5,0,7,12], +"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[5,0,7,62], "classApp.html#a344d2b7dc2f276648d521aee4da1731c":[5,0,7,23], -"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,7,55], +"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[5,0,7,50], "classApp.html#a3d84af5e42082098672531cd1a618853":[5,0,7,22], "classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[5,0,7,6], "classApp.html#a4776d9322edea17fae56afa5d01a323e":[5,0,7,24], -"classApp.html#a4833bee2eae4ad1691a04fa19e11a766":[5,0,7,90], -"classApp.html#a487332f8de40414ca1a54a4265570b70":[5,0,7,85], -"classApp.html#a495ec082c2719314e536070ca1ce073d":[5,0,7,42], -"classApp.html#a4b67935096f66d1f14b657399a8461ac":[5,0,7,68], +"classApp.html#a487332f8de40414ca1a54a4265570b70":[5,0,7,81], +"classApp.html#a495ec082c2719314e536070ca1ce073d":[5,0,7,40], +"classApp.html#a4b67935096f66d1f14b657399a8461ac":[5,0,7,64], "classApp.html#a4bdd7bfed62f50515fce652127bf481b":[5,0,7,25], -"classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[5,0,7,59], -"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[5,0,7,67], +"classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[5,0,7,54], +"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[5,0,7,63], "classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be":[5,0,7,9], "classApp.html#a557d7b779d8259027f4724ebf7b248dc":[5,0,7,28], "classApp.html#a560189f048d3db2f526841963cc43e97":[5,0,7,26], -"classApp.html#a56b1a432c96aef8b1971f779c9d93c8c":[5,0,7,88], -"classApp.html#a576ecb1c5b4a283221e6f2f0ec248251":[5,0,7,58], -"classApp.html#a57d041fcc003d08c127dfa99a02bc192":[5,0,7,74], -"classApp.html#a58ac598544892ff7c32890291b72635e":[5,0,7,62], -"classApp.html#a59dd4b665c70e7dbd80682c014ff7145":[5,0,7,63], +"classApp.html#a56b1a432c96aef8b1971f779c9d93c8c":[5,0,7,84], +"classApp.html#a576ecb1c5b4a283221e6f2f0ec248251":[5,0,7,53], +"classApp.html#a57d041fcc003d08c127dfa99a02bc192":[5,0,7,70], +"classApp.html#a58ac598544892ff7c32890291b72635e":[5,0,7,58], +"classApp.html#a59dd4b665c70e7dbd80682c014ff7145":[5,0,7,59], "classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad":[5,0,7,3], -"classApp.html#a5cfc098c061b7d765add58fd2ca97445":[5,0,7,39], -"classApp.html#a5f64620473a9727a48ebe9cf6f335a98":[5,0,7,80], +"classApp.html#a5cfc098c061b7d765add58fd2ca97445":[5,0,7,37], +"classApp.html#a5f64620473a9727a48ebe9cf6f335a98":[5,0,7,76], "classApp.html#a604d659d6977a99de42a160343e5289a":[5,0,7,4], -"classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2":[5,0,7,45], +"classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2":[5,0,7,43], "classApp.html#a622eace13f8fc9f4b5672a68e2bc4396":[5,0,7,7], -"classApp.html#a6844aedad10e201b8c3d80cfc9e876d3":[5,0,7,81], -"classApp.html#a6859a4848a5c0049b4134cc4b34228b6":[5,0,7,82], -"classApp.html#a6bcb19cdc4907077da72864686d5a780":[5,0,7,69], -"classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165":[5,0,7,65], -"classApp.html#a6f55d087e1ff4710132c1b0863faa2ee":[5,0,7,47], -"classApp.html#a764cc6cd7578132c21d2b4545de9301c":[5,0,7,83], +"classApp.html#a6844aedad10e201b8c3d80cfc9e876d3":[5,0,7,77], +"classApp.html#a6859a4848a5c0049b4134cc4b34228b6":[5,0,7,78], +"classApp.html#a6bcb19cdc4907077da72864686d5a780":[5,0,7,65], +"classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165":[5,0,7,61], +"classApp.html#a6f55d087e1ff4710132c1b0863faa2ee":[5,0,7,45], +"classApp.html#a764cc6cd7578132c21d2b4545de9301c":[5,0,7,79], "classApp.html#a78788f6e9d8b713b138f81e457c5cd08":[5,0,7,20], -"classApp.html#a7954862f44f606b0ff83d4c74d15e792":[5,0,7,57], +"classApp.html#a7954862f44f606b0ff83d4c74d15e792":[5,0,7,52], "classApp.html#a871898becd0697d778f36d9336253ae8":[5,0,7,14], "classApp.html#a8863703a0305eaa45eb970dbd2046291":[5,0,7,16], "classApp.html#a89e9feb2bfb5253883a9720beaffe876":[5,0,7,21], -"classApp.html#a91fd3c8b89016113b05f3be24805ccff":[5,0,7,87], +"classApp.html#a91fd3c8b89016113b05f3be24805ccff":[5,0,7,83], "classApp.html#a94a1ed2dc493c58612d17035b74ae736":[5,0,7,31], -"classApp.html#a98ef4cfd36693a3457c879b76bc6d694":[5,0,7,44], -"classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d":[5,0,7,64], -"classApp.html#aa5a87c46ab3fee21362c466bf78042ef":[5,0,7,91], +"classApp.html#a98ef4cfd36693a3457c879b76bc6d694":[5,0,7,42], +"classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d":[5,0,7,60], +"classApp.html#aa5a87c46ab3fee21362c466bf78042ef":[5,0,7,86], "classApp.html#aab23c59172310fd30f2d60dc039d3eea":[5,0,7,13], -"classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e":[5,0,7,38], -"classApp.html#ab35b01a366a2ea95725e97af278f87ab":[5,0,7,86], +"classApp.html#ab35b01a366a2ea95725e97af278f87ab":[5,0,7,82], "classApp.html#ab3da757abe5cb45bf88f07cc51a73b58":[5,0,7,35], -"classApp.html#ab47de68fa39806d1fb0976407e188b77":[5,0,7,71], -"classApp.html#abe0e4fa91097f7a6588e1213a834121c":[5,0,7,37], +"classApp.html#ab47de68fa39806d1fb0976407e188b77":[5,0,7,67], "classApp.html#abea5a4f77dcd53c928dc4eed86616637":[5,0,7,19], "classApp.html#abf46a653d8499e7c253cc1be894a6d83":[5,0,7,17], -"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[5,0,7,52], -"classApp.html#ac1d80a14492acc932715d54567d8a589":[5,0,7,46], -"classApp.html#ac6e6b1c7d6df408580ff79977fcfa656":[5,0,7,54], -"classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88":[5,0,7,43], -"classApp.html#acad5896b7a79ae31433ad8f89606c728":[5,0,7,70], +"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[5,0,7,47], +"classApp.html#ac1d80a14492acc932715d54567d8a589":[5,0,7,44], +"classApp.html#ac6e6b1c7d6df408580ff79977fcfa656":[5,0,7,49], +"classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88":[5,0,7,41], +"classApp.html#acad5896b7a79ae31433ad8f89606c728":[5,0,7,66], "classApp.html#acb27e607fe4c82603444676e25c36b70":[5,0,7,11], -"classApp.html#ad082d63acc078e5bf23825a03bdd6a76":[5,0,7,78], -"classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0":[5,0,7,41], +"classApp.html#ad082d63acc078e5bf23825a03bdd6a76":[5,0,7,74], +"classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0":[5,0,7,39], "classApp.html#ad5175536561021548ae8188e24c7b80c":[5,0,7,36], "classApp.html#adb060d5c7f35a521ec7ec0effbe08097":[5,0,7,27], "classApp.html#adb5a4bb657881e553978ff390babd01f":[5,0,7,10], -"classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8":[5,0,7,89], -"classApp.html#ae3f47830543d0d902f66913def8db66b":[5,0,7,53], -"classApp.html#ae9f96338f32187d308b67b980eea0008":[5,0,7,72], +"classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8":[5,0,7,85], +"classApp.html#ae3f47830543d0d902f66913def8db66b":[5,0,7,48], +"classApp.html#ae9f96338f32187d308b67b980eea0008":[5,0,7,68], "classApp.html#aeb1fe1c8ad9aa639909bd183ce578536":[5,0,7,18], -"classApp.html#aeca29fd4f7192ca07369b3c598c36e67":[5,0,7,84], +"classApp.html#aeca29fd4f7192ca07369b3c598c36e67":[5,0,7,80], "classApp.html#af17df107f2216ddf5ad2a7e0f2ba2166":[5,0,7,15], -"classApp.html#af5007c42a693afd9c4899c243b2e1363":[5,0,7,49], "classApp.html#af58db526040829b1c8bd95561b329262":[5,0,7,34], "classApp.html#af6d39f63fb7116bbeb04e51696f99474":[5,0,7,0], "classBaseObject.html":[5,0,8], @@ -97,80 +95,80 @@ var NAVTREEINDEX2 = "classConversation.html#af84ea6ccd72214c9bb4c504461cc8b09":[5,0,10,0], "classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a":[5,0,10,15], "classConversation.html#afd4965d22a6e4bfea2f35e931b3273c6":[5,0,10,14], -"classFKOAuth1.html":[5,0,15], -"classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f":[5,0,15,1], -"classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6":[5,0,15,0], -"classFKOAuthDataStore.html":[5,0,16], -"classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1":[5,0,16,1], -"classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050":[5,0,16,5], -"classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934":[5,0,16,4], -"classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599":[5,0,16,2], -"classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab":[5,0,16,3], -"classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819":[5,0,16,0], -"classFriendicaSmarty.html":[5,0,17], -"classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690":[5,0,17,2], -"classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9":[5,0,17,1], -"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6":[5,0,17,0], -"classFriendicaSmartyEngine.html":[5,0,18], -"classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118":[5,0,18,1], -"classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88":[5,0,18,2], -"classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6":[5,0,18,0], -"classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2":[5,0,18,3], -"classItem.html":[5,0,19], -"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[5,0,19,34], -"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[5,0,19,37], -"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[5,0,19,8], -"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[5,0,19,39], -"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[5,0,19,42], -"classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2":[5,0,19,0], -"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[5,0,19,24], -"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[5,0,19,6], -"classItem.html#a428f448f89a8629055ea3294eb942aea":[5,0,19,16], -"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[5,0,19,44], -"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[5,0,19,15], -"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[5,0,19,20], -"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[5,0,19,40], -"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[5,0,19,43], -"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[5,0,19,45], -"classItem.html#a632185dd25c5caf277067c76230a4320":[5,0,19,4], -"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[5,0,19,12], -"classItem.html#a7f7bc059de377319282cb4ef4a828480":[5,0,19,41], -"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[5,0,19,31], -"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[5,0,19,1], -"classItem.html#a904421c7a427411bb2ab473bca872f63":[5,0,19,7], -"classItem.html#a90743c8348b13213275c223bb9333aa0":[5,0,19,32], -"classItem.html#a9594df6014b0b6f45364ea7a34510130":[5,0,19,36], -"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[5,0,19,22], -"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[5,0,19,28], -"classItem.html#a9f2d219da712390f59012fc32a342074":[5,0,19,14], -"classItem.html#aa0ee775ec94abccec6c798428835d001":[5,0,19,5], -"classItem.html#aa1bd19fc8b5577078530265a7bf64123":[5,0,19,26], -"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[5,0,19,33], -"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[5,0,19,25], -"classItem.html#aa49e40f961dff66da32c5ae110e32993":[5,0,19,21], -"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[5,0,19,13], -"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[5,0,19,27], -"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[5,0,19,23], -"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[5,0,19,17], -"classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8":[5,0,19,2], -"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[5,0,19,19], -"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[5,0,19,11], -"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[5,0,19,10], -"classItem.html#aca1e66988ed00cd627b2a359b72cd0ae":[5,0,19,3], -"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[5,0,19,30], -"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[5,0,19,9], -"classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8":[5,0,19,18], -"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[5,0,19,35], -"classItem.html#af1b73df9b7c4b927e26b7e243b491f42":[5,0,19,29], -"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[5,0,19,38], -"classProtoDriver.html":[5,0,24], -"classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a":[5,0,24,0], -"classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d":[5,0,24,2], -"classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67":[5,0,24,1], -"classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337":[5,0,24,6], -"classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b":[5,0,24,4], -"classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181":[5,0,24,5], -"classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b":[5,0,24,3], +"classFKOAuth1.html":[5,0,16], +"classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f":[5,0,16,1], +"classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6":[5,0,16,0], +"classFKOAuthDataStore.html":[5,0,17], +"classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1":[5,0,17,1], +"classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050":[5,0,17,5], +"classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934":[5,0,17,4], +"classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599":[5,0,17,2], +"classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab":[5,0,17,3], +"classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819":[5,0,17,0], +"classFriendicaSmarty.html":[5,0,18], +"classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690":[5,0,18,2], +"classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9":[5,0,18,1], +"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6":[5,0,18,0], +"classFriendicaSmartyEngine.html":[5,0,19], +"classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118":[5,0,19,1], +"classFriendicaSmartyEngine.html#aab5994077fc3a64222e41b28e2bd8d88":[5,0,19,2], +"classFriendicaSmartyEngine.html#ab7c305bd8c386c2944e4dc9136cea5b6":[5,0,19,0], +"classFriendicaSmartyEngine.html#ad62f1181d2f02b54b46731ad2bd46db2":[5,0,19,3], +"classItem.html":[5,0,20], +"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[5,0,20,34], +"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[5,0,20,37], +"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[5,0,20,8], +"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[5,0,20,39], +"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[5,0,20,42], +"classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2":[5,0,20,0], +"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[5,0,20,24], +"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[5,0,20,6], +"classItem.html#a428f448f89a8629055ea3294eb942aea":[5,0,20,16], +"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[5,0,20,44], +"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[5,0,20,15], +"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[5,0,20,20], +"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[5,0,20,40], +"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[5,0,20,43], +"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[5,0,20,45], +"classItem.html#a632185dd25c5caf277067c76230a4320":[5,0,20,4], +"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[5,0,20,12], +"classItem.html#a7f7bc059de377319282cb4ef4a828480":[5,0,20,41], +"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[5,0,20,31], +"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[5,0,20,1], +"classItem.html#a904421c7a427411bb2ab473bca872f63":[5,0,20,7], +"classItem.html#a90743c8348b13213275c223bb9333aa0":[5,0,20,32], +"classItem.html#a9594df6014b0b6f45364ea7a34510130":[5,0,20,36], +"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[5,0,20,22], +"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[5,0,20,28], +"classItem.html#a9f2d219da712390f59012fc32a342074":[5,0,20,14], +"classItem.html#aa0ee775ec94abccec6c798428835d001":[5,0,20,5], +"classItem.html#aa1bd19fc8b5577078530265a7bf64123":[5,0,20,26], +"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[5,0,20,33], +"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[5,0,20,25], +"classItem.html#aa49e40f961dff66da32c5ae110e32993":[5,0,20,21], +"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[5,0,20,13], +"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[5,0,20,27], +"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[5,0,20,23], +"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[5,0,20,17], +"classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8":[5,0,20,2], +"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[5,0,20,19], +"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[5,0,20,11], +"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[5,0,20,10], +"classItem.html#aca1e66988ed00cd627b2a359b72cd0ae":[5,0,20,3], +"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[5,0,20,30], +"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[5,0,20,9], +"classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8":[5,0,20,18], +"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[5,0,20,35], +"classItem.html#af1b73df9b7c4b927e26b7e243b491f42":[5,0,20,29], +"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[5,0,20,38], +"classProtoDriver.html":[5,0,25], +"classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a":[5,0,25,0], +"classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d":[5,0,25,2], +"classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67":[5,0,25,1], +"classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337":[5,0,25,6], +"classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b":[5,0,25,4], +"classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181":[5,0,25,5], +"classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b":[5,0,25,3], "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html":[5,0,3,0,0], "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a112ad78a863dc0e598b5f02c596798c0":[5,0,3,0,0,9], "classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3":[5,0,3,0,0,8], @@ -247,7 +245,9 @@ var NAVTREEINDEX2 = "classRedmatrix_1_1Import_1_1Import.html#ae705dd1deb245b1d06baa73062330e43":[5,0,4,0,0,5], "classRedmatrix_1_1Import_1_1Import.html#af432ecbc45b812a03d58dfb378a212f7":[5,0,4,0,0,9], "classRedmatrix_1_1Import_1_1Import.html#afd251e6e5a18516bac4d1a40435602f1":[5,0,4,0,0,11], -"classTemplate.html":[5,0,25], -"classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b":[5,0,25,13], -"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[5,0,25,12] +"classTemplate.html":[5,0,26], +"classTemplate.html#a07737733f6949bdedea1e3d301b2ab7b":[5,0,26,13], +"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[5,0,26,12], +"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[5,0,26,22], +"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,26,2] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index a855bf2c7..3efe3732e 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,48 +1,57 @@ var NAVTREEINDEX3 = { -"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[5,0,25,22], -"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[5,0,25,2], -"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,25,3], -"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,25,6], -"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,25,21], -"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,25,23], -"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,25,15], -"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[5,0,25,9], -"classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[5,0,25,19], -"classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[5,0,25,4], -"classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee":[5,0,25,10], -"classTemplate.html#aac9a4638f11271e1b1dcc9f247242718":[5,0,25,20], -"classTemplate.html#aae9c4d761ea1298e745e8052d7910194":[5,0,25,1], -"classTemplate.html#abbc484016ddf5d818f55b823cae6feb0":[5,0,25,14], -"classTemplate.html#abda4c8d049f70553338eae7c905e9d5c":[5,0,25,17], -"classTemplate.html#abf71098c80fd1f218a59452b3408309e":[5,0,25,7], -"classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4":[5,0,25,0], -"classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8":[5,0,25,18], -"classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228":[5,0,25,8], -"classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934":[5,0,25,5], -"classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a":[5,0,25,16], -"classTemplate.html#afd97b4b1e7754a550e67c0ea79159059":[5,0,25,11], -"classZotDriver.html":[5,0,26], -"classZotDriver.html#a2e15ff09772f0608203dad1c98299394":[5,0,26,3], -"classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2":[5,0,26,0], -"classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514":[5,0,26,6], -"classZotDriver.html#a6776935156accb0f170e2e24577133db":[5,0,26,1], -"classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f":[5,0,26,4], -"classZotDriver.html#af65febb26031eb7f39871b9e2a539797":[5,0,26,2], -"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6":[5,0,26,5], +"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[5,0,26,3], +"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[5,0,26,6], +"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[5,0,26,21], +"classTemplate.html#a6f0efc256688c36110180b501067ff11":[5,0,26,23], +"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[5,0,26,15], +"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[5,0,26,9], +"classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[5,0,26,19], +"classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[5,0,26,4], +"classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee":[5,0,26,10], +"classTemplate.html#aac9a4638f11271e1b1dcc9f247242718":[5,0,26,20], +"classTemplate.html#aae9c4d761ea1298e745e8052d7910194":[5,0,26,1], +"classTemplate.html#abbc484016ddf5d818f55b823cae6feb0":[5,0,26,14], +"classTemplate.html#abda4c8d049f70553338eae7c905e9d5c":[5,0,26,17], +"classTemplate.html#abf71098c80fd1f218a59452b3408309e":[5,0,26,7], +"classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4":[5,0,26,0], +"classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8":[5,0,26,18], +"classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228":[5,0,26,8], +"classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934":[5,0,26,5], +"classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a":[5,0,26,16], +"classTemplate.html#afd97b4b1e7754a550e67c0ea79159059":[5,0,26,11], +"classZotDriver.html":[5,0,27], +"classZotDriver.html#a2e15ff09772f0608203dad1c98299394":[5,0,27,3], +"classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2":[5,0,27,0], +"classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514":[5,0,27,6], +"classZotDriver.html#a6776935156accb0f170e2e24577133db":[5,0,27,1], +"classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f":[5,0,27,4], +"classZotDriver.html#af65febb26031eb7f39871b9e2a539797":[5,0,27,2], +"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6":[5,0,27,5], "classdba__driver.html":[5,0,11], "classdba__driver.html#a1a8bc9dc839a6320a0e07d8047a6b721":[5,0,11,1], -"classdba__driver.html#a205f6535e399700b6fca2492f96f2229":[5,0,11,8], -"classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6":[5,0,11,9], -"classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746":[5,0,11,6], -"classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555":[5,0,11,7], +"classdba__driver.html#a205f6535e399700b6fca2492f96f2229":[5,0,11,16], +"classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6":[5,0,11,17], +"classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746":[5,0,11,10], +"classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555":[5,0,11,12], "classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975":[5,0,11,2], -"classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c":[5,0,11,11], -"classdba__driver.html#adcc1f8955120fec0708bce39202d0422":[5,0,11,4], -"classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc":[5,0,11,3], +"classdba__driver.html#a65a5c7b355ab5529a43049e160006426":[5,0,11,9], +"classdba__driver.html#a77e59dcbeab30ca6000131d2e9ad4092":[5,0,11,11], +"classdba__driver.html#a7dbe8318587ff1694825042bf58f4fbd":[5,0,11,7], +"classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c":[5,0,11,19], +"classdba__driver.html#a8d6a79d39d7eaee5aea4e952c4529d48":[5,0,11,8], +"classdba__driver.html#a98d8523dcedda316085b4d4f856b6583":[5,0,11,20], +"classdba__driver.html#aa3325d982d4ee5d1114fd7e02a4356e8":[5,0,11,22], +"classdba__driver.html#ab43184239e1d6eb00a98319f4a3df155":[5,0,11,14], +"classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4":[5,0,11,3], +"classdba__driver.html#ac9127e9c55fcc93bcfbb323b9b99b9d9":[5,0,11,13], +"classdba__driver.html#ad700712879719bee23752b8f424d97d0":[5,0,11,15], +"classdba__driver.html#adcc1f8955120fec0708bce39202d0422":[5,0,11,5], +"classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc":[5,0,11,4], "classdba__driver.html#af3541d13ccb7a3eddfc03e253c746186":[5,0,11,0], -"classdba__driver.html#af48e2afeded5285766bf92e22123ed03":[5,0,11,10], -"classdba__driver.html#afc95ffa103a3290581b537670cde5311":[5,0,11,5], +"classdba__driver.html#af48e2afeded5285766bf92e22123ed03":[5,0,11,18], +"classdba__driver.html#afc95ffa103a3290581b537670cde5311":[5,0,11,6], +"classdba__driver.html#afce39394c010ea589d99a21579b2c31e":[5,0,11,21], "classdba__mysql.html":[5,0,12], "classdba__mysql.html#a1887338627ce0e28786839363014bd0b":[5,0,12,1], "classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e":[5,0,12,0], @@ -53,62 +62,76 @@ var NAVTREEINDEX3 = "classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec":[5,0,13,3], "classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55":[5,0,13,0], "classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1":[5,0,13,1], -"classenotify.html":[5,0,14], +"classdba__postgres.html":[5,0,14], +"classdba__postgres.html#a3de1ac375e98886dfc38fd0066e88f90":[5,0,14,6], +"classdba__postgres.html#a56f926f218155c88807e0e06f6817a72":[5,0,14,8], +"classdba__postgres.html#a677f850211975c9ab89602c67e2dcad9":[5,0,14,9], +"classdba__postgres.html#a70352880231fba0b859f82cd5b290a9a":[5,0,14,7], +"classdba__postgres.html#a7108eaaae7cc2fb236212041afc9ac0f":[5,0,14,3], +"classdba__postgres.html#a7267f91c3f87f600b30d7560de62dfd7":[5,0,14,10], +"classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058":[5,0,14,0], +"classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa":[5,0,14,1], +"classdba__postgres.html#a8d2c6d8c92fe6f074452876483dd17fc":[5,0,14,5], +"classdba__postgres.html#ab2e44e9f41d05e585afd873d18e8c127":[5,0,14,4], +"classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e":[5,0,14,2], +"classdba__postgres.html#ace80a204e34b20b9907650399cce02a3":[5,0,14,12], +"classdba__postgres.html#aeb404a85974d6c5df30c21650888000b":[5,0,14,11], +"classenotify.html":[5,0,15], "classes.html":[5,1], -"classphoto__driver.html":[5,0,21], -"classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03":[5,0,21,27], -"classphoto__driver.html#a01d28d43b404d6f6de219dc9c5069dc9":[5,0,21,28], -"classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712":[5,0,21,13], -"classphoto__driver.html#a1a63c4ae17e892a115ab9cf6efb960ce":[5,0,21,20], -"classphoto__driver.html#a22ecb8c696de65a5a10bd185be9d90c3":[5,0,21,17], -"classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832":[5,0,21,5], -"classphoto__driver.html#a2e6e61f1e356a90bc978f4404a77137e":[5,0,21,2], -"classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec":[5,0,21,15], -"classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1":[5,0,21,29], -"classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03":[5,0,21,26], -"classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d":[5,0,21,14], -"classphoto__driver.html#a56634842b071b96502716e9843ea5361":[5,0,21,19], -"classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac":[5,0,21,16], -"classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b":[5,0,21,22], -"classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3":[5,0,21,9], -"classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da":[5,0,21,23], -"classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55":[5,0,21,25], -"classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab":[5,0,21,12], -"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[5,0,21,6], -"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[5,0,21,8], -"classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd":[5,0,21,11], -"classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae":[5,0,21,0], -"classphoto__driver.html#acc30486acee9e89e32701f44a1738117":[5,0,21,10], -"classphoto__driver.html#ae18716018afcf362c7c24586b53e9e2f":[5,0,21,4], -"classphoto__driver.html#ae1a9edaf846983780dc65ea77d99e813":[5,0,21,3], -"classphoto__driver.html#ae4501abdc9651359f81d036b63625686":[5,0,21,1], -"classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143":[5,0,21,21], -"classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80":[5,0,21,24], -"classphoto__driver.html#af0f7ec48a31ae9b557b6e3f8bd5b4af0":[5,0,21,18], -"classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468":[5,0,21,7], -"classphoto__gd.html":[5,0,22], -"classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00":[5,0,22,5], -"classphoto__gd.html#a16f3dd7d3559f715aa2fe3f7880836dd":[5,0,22,9], -"classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e":[5,0,22,8], -"classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754":[5,0,22,2], -"classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9":[5,0,22,6], -"classphoto__gd.html#a44cedef376044018702d9355ddc813ce":[5,0,22,3], -"classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1":[5,0,22,1], -"classphoto__gd.html#a77f87730b11093b76980c541159df37d":[5,0,22,7], -"classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484":[5,0,22,4], -"classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c":[5,0,22,0], -"classphoto__imagick.html":[5,0,23], -"classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7":[5,0,23,10], -"classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8":[5,0,23,7], -"classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4":[5,0,23,0], -"classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66":[5,0,23,2], -"classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019":[5,0,23,6], -"classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f":[5,0,23,8], -"classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc":[5,0,23,5], -"classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4":[5,0,23,4], -"classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb":[5,0,23,9], -"classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207":[5,0,23,1], -"classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393":[5,0,23,3], +"classphoto__driver.html":[5,0,22], +"classphoto__driver.html#a00cb166c00b7502dbc456c94330e5b03":[5,0,22,27], +"classphoto__driver.html#a01d28d43b404d6f6de219dc9c5069dc9":[5,0,22,28], +"classphoto__driver.html#a19e1af2b6af4c63aa6230abe69f83712":[5,0,22,13], +"classphoto__driver.html#a1a63c4ae17e892a115ab9cf6efb960ce":[5,0,22,20], +"classphoto__driver.html#a22ecb8c696de65a5a10bd185be9d90c3":[5,0,22,17], +"classphoto__driver.html#a2b2a99021fc63ed6465d703ddddcb832":[5,0,22,5], +"classphoto__driver.html#a2e6e61f1e356a90bc978f4404a77137e":[5,0,22,2], +"classphoto__driver.html#a2f2b6337cf9aa0688d10b422123f0eec":[5,0,22,15], +"classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1":[5,0,22,29], +"classphoto__driver.html#a4920ed7cbb1ac735ac84153067537f03":[5,0,22,26], +"classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d":[5,0,22,14], +"classphoto__driver.html#a56634842b071b96502716e9843ea5361":[5,0,22,19], +"classphoto__driver.html#a5864fae7d8389372955a8e78cec527ac":[5,0,22,16], +"classphoto__driver.html#a642a8d0c4ad5f887c99c6af77cee287b":[5,0,22,22], +"classphoto__driver.html#a6c6c16dbc4f517ce799f9143ed61f0e3":[5,0,22,9], +"classphoto__driver.html#a6eee8e36eaf9339f4faf80ddd43162da":[5,0,22,23], +"classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55":[5,0,22,25], +"classphoto__driver.html#a97289aef3be43d9435ca3717ef10b8ab":[5,0,22,12], +"classphoto__driver.html#aa2efb5b2a6af3fd67e3f1c2b9852a5ba":[5,0,22,6], +"classphoto__driver.html#ab98da263bd7341fc132c4fb6fc76e8d5":[5,0,22,8], +"classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd":[5,0,22,11], +"classphoto__driver.html#ac6e85f8e507cab4e755ed7acdec401ae":[5,0,22,0], +"classphoto__driver.html#acc30486acee9e89e32701f44a1738117":[5,0,22,10], +"classphoto__driver.html#ae18716018afcf362c7c24586b53e9e2f":[5,0,22,4], +"classphoto__driver.html#ae1a9edaf846983780dc65ea77d99e813":[5,0,22,3], +"classphoto__driver.html#ae4501abdc9651359f81d036b63625686":[5,0,22,1], +"classphoto__driver.html#ae663867d2c4eaa2fae50d60670920143":[5,0,22,21], +"classphoto__driver.html#aea560be5dfba09117d36c12bacbf3b80":[5,0,22,24], +"classphoto__driver.html#af0f7ec48a31ae9b557b6e3f8bd5b4af0":[5,0,22,18], +"classphoto__driver.html#af769e9abb144e57002c59aa2aa8f3468":[5,0,22,7], +"classphoto__gd.html":[5,0,23], +"classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00":[5,0,23,5], +"classphoto__gd.html#a16f3dd7d3559f715aa2fe3f7880836dd":[5,0,23,9], +"classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e":[5,0,23,8], +"classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754":[5,0,23,2], +"classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9":[5,0,23,6], +"classphoto__gd.html#a44cedef376044018702d9355ddc813ce":[5,0,23,3], +"classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1":[5,0,23,1], +"classphoto__gd.html#a77f87730b11093b76980c541159df37d":[5,0,23,7], +"classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484":[5,0,23,4], +"classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c":[5,0,23,0], +"classphoto__imagick.html":[5,0,24], +"classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7":[5,0,24,10], +"classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8":[5,0,24,7], +"classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4":[5,0,24,0], +"classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66":[5,0,24,2], +"classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019":[5,0,24,6], +"classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f":[5,0,24,8], +"classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc":[5,0,24,5], +"classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4":[5,0,24,4], +"classphoto__imagick.html#af92901d252c1e6ab5b54eebedbed23bb":[5,0,24,9], +"classphoto__imagick.html#afd49d64751ee3a298eac0c0ce0ba0207":[5,0,24,1], +"classphoto__imagick.html#aff6bcdbab18593a3fc5a480db8509393":[5,0,24,3], "cli__startup_8php.html":[6,0,0,18], "cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[6,0,0,18,0], "cli__suggest_8php.html":[6,0,0,19], @@ -226,28 +249,5 @@ var NAVTREEINDEX3 = "datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[6,0,0,29,3], "datetime_8php.html#aea356409ba69f9de412298c998595dd2":[6,0,0,29,1], "datetime_8php.html#af1cd77c97c901d9239cb7a61f97f9826":[6,0,0,29,13], -"db__update_8php.html":[6,0,2,1], -"dba__driver_8php.html":[6,0,0,0,0], -"dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[6,0,0,0,0,8], -"dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249":[6,0,0,0,0,7], -"dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4":[6,0,0,0,0,3], -"dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee":[6,0,0,0,0,6], -"dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb":[6,0,0,0,0,5], -"dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e":[6,0,0,0,0,2], -"dba__driver_8php.html#ac10e60f6e5b95bcf67bd82cb88f37947":[6,0,0,0,0,1], -"dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930":[6,0,0,0,0,4], -"dba__mysql_8php.html":[6,0,0,0,1], -"dba__mysqli_8php.html":[6,0,0,0,2], -"delegate_8php.html":[6,0,1,21], -"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[6,0,1,21,0], -"deliver_8php.html":[6,0,0,30], -"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[6,0,0,30,0], -"diaspora_8php.html":[6,0,0,31], -"diaspora_8php.html#a006731620a5242d410358b32678e48e3":[6,0,0,31,0], -"diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d":[6,0,0,31,24], -"diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829":[6,0,0,31,1], -"diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605":[6,0,0,31,15], -"diaspora_8php.html#a1704748aa2384c73e43f10e71defd31a":[6,0,0,31,25], -"diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31":[6,0,0,31,14], -"diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007":[6,0,0,31,19] +"db__update_8php.html":[6,0,2,1] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index f296d3fe2..41a1f286a 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,5 +1,38 @@ var NAVTREEINDEX4 = { +"dba__driver_8php.html":[6,0,0,0,0], +"dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67":[6,0,0,0,0,2], +"dba__driver_8php.html#a2a38996670c2936b5769270c49c57593":[6,0,0,0,0,11], +"dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[6,0,0,0,0,17], +"dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78":[6,0,0,0,0,12], +"dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645":[6,0,0,0,0,5], +"dba__driver_8php.html#a55bf30d8176967e682656b5be4ad9249":[6,0,0,0,0,16], +"dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0":[6,0,0,0,0,6], +"dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4":[6,0,0,0,0,8], +"dba__driver_8php.html#a75098bf1d59ea57f7ebae657a369137e":[6,0,0,0,0,3], +"dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee":[6,0,0,0,0,1], +"dba__driver_8php.html#aa051799567690a124a3b865bf902f58a":[6,0,0,0,0,10], +"dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee":[6,0,0,0,0,14], +"dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb":[6,0,0,0,0,13], +"dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e":[6,0,0,0,0,7], +"dba__driver_8php.html#acec84a8fb75d78daf657cbe5df74e25a":[6,0,0,0,0,4], +"dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930":[6,0,0,0,0,9], +"dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e":[6,0,0,0,0,15], +"dba__mysql_8php.html":[6,0,0,0,1], +"dba__mysqli_8php.html":[6,0,0,0,2], +"dba__postgres_8php.html":[6,0,0,0,3], +"delegate_8php.html":[6,0,1,21], +"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[6,0,1,21,0], +"deliver_8php.html":[6,0,0,30], +"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[6,0,0,30,0], +"diaspora_8php.html":[6,0,0,31], +"diaspora_8php.html#a006731620a5242d410358b32678e48e3":[6,0,0,31,0], +"diaspora_8php.html#a0b3628a5e53332c3d3196b689fe2b94d":[6,0,0,31,24], +"diaspora_8php.html#a0fb2abe304aae19efc040a5e6b917829":[6,0,0,31,1], +"diaspora_8php.html#a131abd521b218d6ae6f7d2917d8b2605":[6,0,0,31,15], +"diaspora_8php.html#a1704748aa2384c73e43f10e71defd31a":[6,0,0,31,25], +"diaspora_8php.html#a20b968d64ef26afe5cb0cc75a7570a31":[6,0,0,31,14], +"diaspora_8php.html#a2bf43f6b5890897f425ef4325d34b007":[6,0,0,31,19], "diaspora_8php.html#a33ae0c4606a7df4d801c05507d87f668":[6,0,0,31,26], "diaspora_8php.html#a4901762cba5cd8dcdc57bdf285eefb1b":[6,0,0,31,12], "diaspora_8php.html#a586d5a3ba92d35cee14f879f290072aa":[6,0,0,31,17], @@ -68,16 +101,14 @@ var NAVTREEINDEX4 = "dir_d520c5cf583201d9437764f209363c22.html":[6,0,3,1,0], "dir_e7f045be8bb383d8447c6a6b84145083.html":[6,0,0,3], "dir_f19da925ee886ec38f19b0e8c19779bc.html":[6,0,3,1,0,0], -"dirprofile_8php.html":[6,0,1,23], -"dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052":[6,0,1,23,0], -"dirsearch_8php.html":[6,0,1,24], -"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[6,0,1,24,3], -"dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2":[6,0,1,24,1], -"dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305":[6,0,1,24,0], -"dirsearch_8php.html#a985d410a170549429857af6ff2673149":[6,0,1,24,4], -"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[6,0,1,24,2], -"display_8php.html":[6,0,1,25], -"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[6,0,1,25,0], +"dirsearch_8php.html":[6,0,1,23], +"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[6,0,1,23,3], +"dirsearch_8php.html#a52bcac49b0e35cc8c6b70066143c2ee2":[6,0,1,23,1], +"dirsearch_8php.html#a7d4cd9890d5ed23c3efc58e2a778a305":[6,0,1,23,0], +"dirsearch_8php.html#a985d410a170549429857af6ff2673149":[6,0,1,23,4], +"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[6,0,1,23,2], +"display_8php.html":[6,0,1,24], +"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[6,0,1,24,0], "docblox__errorchecker_8php.html":[6,0,2,2], "docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62":[6,0,2,2,3], "docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec":[6,0,2,2,2], @@ -90,14 +121,17 @@ var NAVTREEINDEX4 = "docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6":[6,0,2,2,4], "docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f":[6,0,2,2,1], "docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d":[6,0,2,2,10], -"editblock_8php.html":[6,0,1,26], -"editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6":[6,0,1,26,0], -"editlayout_8php.html":[6,0,1,27], -"editlayout_8php.html#aa877e4157a26b099de904164181dd386":[6,0,1,27,0], -"editpost_8php.html":[6,0,1,28], -"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[6,0,1,28,0], -"editwebpage_8php.html":[6,0,1,29], -"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[6,0,1,29,0], +"editblock_8php.html":[6,0,1,25], +"editblock_8php.html#ab7806bb42ae5e93f0330d7bd179d4b3e":[6,0,1,25,1], +"editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6":[6,0,1,25,0], +"editlayout_8php.html":[6,0,1,26], +"editlayout_8php.html#a97c1e93d9e75ad8cd2c2f9a7f77341a7":[6,0,1,26,1], +"editlayout_8php.html#aa877e4157a26b099de904164181dd386":[6,0,1,26,0], +"editpost_8php.html":[6,0,1,27], +"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[6,0,1,27,0], +"editwebpage_8php.html":[6,0,1,28], +"editwebpage_8php.html#a375e945255fad79a71036528f7480650":[6,0,1,28,0], +"editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f":[6,0,1,28,1], "enotify_8php.html":[6,0,0,35], "enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[6,0,0,35,1], "event_8php.html":[6,0,0,36], @@ -110,9 +144,9 @@ var NAVTREEINDEX4 = "event_8php.html#abb74206cf42d694307c3d7abb7af9869":[6,0,0,36,6], "event_8php.html#ac9f206819186b65952ac1869f0da8c6e":[6,0,0,36,3], "event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c":[6,0,0,36,4], -"events_8php.html":[6,0,1,30], -"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[6,0,1,30,0], -"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[6,0,1,30,1], +"events_8php.html":[6,0,1,29], +"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[6,0,1,29,0], +"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[6,0,1,29,1], "expire_8php.html":[6,0,0,37], "expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[6,0,0,37,0], "externals_8php.html":[6,0,0,38], @@ -122,21 +156,21 @@ var NAVTREEINDEX4 = "extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634":[6,0,2,3,2], "extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb":[6,0,2,3,0], "extract_8php.html#a9590b15215a21e9b42eb546aeef79704":[6,0,2,3,1], -"fbrowser_8php.html":[6,0,1,31], -"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[6,0,1,31,0], +"fbrowser_8php.html":[6,0,1,30], +"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[6,0,1,30,0], "features_8php.html":[6,0,0,39], "features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[6,0,0,39,0], "features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[6,0,0,39,1], -"feed_8php.html":[6,0,1,32], -"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[6,0,1,32,0], -"filer_8php.html":[6,0,1,33], -"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[6,0,1,33,0], -"filerm_8php.html":[6,0,1,34], -"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[6,0,1,34,0], +"feed_8php.html":[6,0,1,31], +"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[6,0,1,31,0], +"filer_8php.html":[6,0,1,32], +"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[6,0,1,32,0], +"filerm_8php.html":[6,0,1,33], +"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[6,0,1,33,0], "files.html":[6,0], -"filestorage_8php.html":[6,0,1,35], -"filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[6,0,1,35,0], -"filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[6,0,1,35,1], +"filestorage_8php.html":[6,0,1,34], +"filestorage_8php.html#a61bb1be78472555df4ce619f51014040":[6,0,1,34,0], +"filestorage_8php.html#ad3b64e3ece9831f9d3a9f00c0ae983cd":[6,0,1,34,1], "fpostit_8php.html":[6,0,2,0,0], "fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443":[6,0,2,0,0,0], "fpostit_8php.html#a501b5ca82f287509fc691c88524064c1":[6,0,2,0,0,1], @@ -156,9 +190,9 @@ var NAVTREEINDEX4 = "friendica-to-smarty-tpl_8py.html#ae74419b16516956c66f7db714a93a6ac":[6,0,2,4,7], "friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb":[6,0,2,4,4], "friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[6,0,2,4,3], -"fsuggest_8php.html":[6,0,1,37], -"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[6,0,1,37,1], -"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[6,0,1,37,0], +"fsuggest_8php.html":[6,0,1,36], +"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[6,0,1,36,1], +"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[6,0,1,36,0], "full_8php.html":[6,0,3,0,2], "full_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,0,2,0], "functions.html":[5,3,0], @@ -215,39 +249,5 @@ var NAVTREEINDEX4 = "globals_0x63.html":[6,1,0,4], "globals_0x64.html":[6,1,0,5], "globals_0x65.html":[6,1,0,6], -"globals_0x66.html":[6,1,0,7], -"globals_0x67.html":[6,1,0,8], -"globals_0x68.html":[6,1,0,9], -"globals_0x69.html":[6,1,0,10], -"globals_0x6a.html":[6,1,0,11], -"globals_0x6b.html":[6,1,0,12], -"globals_0x6c.html":[6,1,0,13], -"globals_0x6d.html":[6,1,0,14], -"globals_0x6e.html":[6,1,0,15], -"globals_0x6f.html":[6,1,0,16], -"globals_0x70.html":[6,1,0,17], -"globals_0x71.html":[6,1,0,18], -"globals_0x72.html":[6,1,0,19], -"globals_0x73.html":[6,1,0,20], -"globals_0x74.html":[6,1,0,21], -"globals_0x75.html":[6,1,0,22], -"globals_0x76.html":[6,1,0,23], -"globals_0x77.html":[6,1,0,24], -"globals_0x78.html":[6,1,0,25], -"globals_0x7a.html":[6,1,0,26], -"globals_func.html":[6,1,1], -"globals_func.html":[6,1,1,0], -"globals_func_0x61.html":[6,1,1,1], -"globals_func_0x62.html":[6,1,1,2], -"globals_func_0x63.html":[6,1,1,3], -"globals_func_0x64.html":[6,1,1,4], -"globals_func_0x65.html":[6,1,1,5], -"globals_func_0x66.html":[6,1,1,6], -"globals_func_0x67.html":[6,1,1,7], -"globals_func_0x68.html":[6,1,1,8], -"globals_func_0x69.html":[6,1,1,9], -"globals_func_0x6a.html":[6,1,1,10], -"globals_func_0x6b.html":[6,1,1,11], -"globals_func_0x6c.html":[6,1,1,12], -"globals_func_0x6d.html":[6,1,1,13] +"globals_0x66.html":[6,1,0,7] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index ed6a6c92d..0dfd8348f 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,5 +1,39 @@ var NAVTREEINDEX5 = { +"globals_0x67.html":[6,1,0,8], +"globals_0x68.html":[6,1,0,9], +"globals_0x69.html":[6,1,0,10], +"globals_0x6a.html":[6,1,0,11], +"globals_0x6b.html":[6,1,0,12], +"globals_0x6c.html":[6,1,0,13], +"globals_0x6d.html":[6,1,0,14], +"globals_0x6e.html":[6,1,0,15], +"globals_0x6f.html":[6,1,0,16], +"globals_0x70.html":[6,1,0,17], +"globals_0x71.html":[6,1,0,18], +"globals_0x72.html":[6,1,0,19], +"globals_0x73.html":[6,1,0,20], +"globals_0x74.html":[6,1,0,21], +"globals_0x75.html":[6,1,0,22], +"globals_0x76.html":[6,1,0,23], +"globals_0x77.html":[6,1,0,24], +"globals_0x78.html":[6,1,0,25], +"globals_0x7a.html":[6,1,0,26], +"globals_func.html":[6,1,1], +"globals_func.html":[6,1,1,0], +"globals_func_0x61.html":[6,1,1,1], +"globals_func_0x62.html":[6,1,1,2], +"globals_func_0x63.html":[6,1,1,3], +"globals_func_0x64.html":[6,1,1,4], +"globals_func_0x65.html":[6,1,1,5], +"globals_func_0x66.html":[6,1,1,6], +"globals_func_0x67.html":[6,1,1,7], +"globals_func_0x68.html":[6,1,1,8], +"globals_func_0x69.html":[6,1,1,9], +"globals_func_0x6a.html":[6,1,1,10], +"globals_func_0x6b.html":[6,1,1,11], +"globals_func_0x6c.html":[6,1,1,12], +"globals_func_0x6d.html":[6,1,1,13], "globals_func_0x6e.html":[6,1,1,14], "globals_func_0x6f.html":[6,1,1,15], "globals_func_0x70.html":[6,1,1,16], @@ -12,8 +46,8 @@ var NAVTREEINDEX5 = "globals_func_0x77.html":[6,1,1,23], "globals_func_0x78.html":[6,1,1,24], "globals_func_0x7a.html":[6,1,1,25], -"globals_vars.html":[6,1,2,0], "globals_vars.html":[6,1,2], +"globals_vars.html":[6,1,2,0], "globals_vars_0x61.html":[6,1,2,1], "globals_vars_0x63.html":[6,1,2,2], "globals_vars_0x64.html":[6,1,2,3], @@ -39,21 +73,21 @@ var NAVTREEINDEX5 = "gprobe_8php.html":[6,0,0,41], "gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[6,0,0,41,0], "greenthumbnails_8php.html":[6,0,3,1,0,2,3], -"hcard_8php.html":[6,0,1,39], -"hcard_8php.html#a3663012f1549849af88aba2bb87388e3":[6,0,1,39,0], -"hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d":[6,0,1,39,1], -"help_8php.html":[6,0,1,40], -"help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[6,0,1,40,1], -"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[6,0,1,40,0], +"hcard_8php.html":[6,0,1,38], +"hcard_8php.html#a3663012f1549849af88aba2bb87388e3":[6,0,1,38,0], +"hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d":[6,0,1,38,1], +"help_8php.html":[6,0,1,39], +"help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[6,0,1,39,1], +"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[6,0,1,39,0], "hierarchy.html":[5,2], "hivenet_2php_2style_8php.html":[6,0,3,1,2,0,0], "hivenet_2php_2theme_8php.html":[6,0,3,1,2,0,1], "hivenet_2php_2theme_8php.html#a3a8b539b112ae63936025236dbaf0a29":[6,0,3,1,2,0,1,0], -"home_8php.html":[6,0,1,41], -"home_8php.html#aa1cf697851a646755baf537f75334c46":[6,0,1,41,0], -"home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[6,0,1,41,1], -"hostxrd_8php.html":[6,0,1,42], -"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[6,0,1,42,0], +"home_8php.html":[6,0,1,40], +"home_8php.html#aa1cf697851a646755baf537f75334c46":[6,0,1,40,0], +"home_8php.html#ac4642c38b6f23a8d065dd4a75c620bde":[6,0,1,40,1], +"hostxrd_8php.html":[6,0,1,41], +"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[6,0,1,41,0], "html2bbcode_8php.html":[6,0,0,43], "html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[6,0,0,43,3], "html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[6,0,0,43,1], @@ -105,13 +139,13 @@ var NAVTREEINDEX5 = "identity_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[6,0,0,46,8], "identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[6,0,0,46,30], "identity_8php.html#afaedbc8e2d2a70ec8b006162baac5249":[6,0,0,46,16], -"impel_8php.html":[6,0,1,43], -"impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b":[6,0,1,43,0], -"import_8php.html":[6,0,1,44], -"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[6,0,1,44,1], -"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[6,0,1,44,0], -"importelm_8php.html":[6,0,1,45], -"importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f":[6,0,1,45,0], +"impel_8php.html":[6,0,1,42], +"impel_8php.html#ab7db6fca43b42ea4332cb3e841b3cf7b":[6,0,1,42,0], +"import_8php.html":[6,0,1,43], +"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[6,0,1,43,1], +"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[6,0,1,43,0], +"importelm_8php.html":[6,0,1,44], +"importelm_8php.html#a1a4f71e6d76ace6add5e9659845f5e5f":[6,0,1,44,0], "include_2api_8php.html":[6,0,0,7], "include_2api_8php.html#a0991f72554f821255397d615e76f3203":[6,0,0,7,12], "include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5":[6,0,0,7,5], @@ -215,39 +249,5 @@ var NAVTREEINDEX5 = "include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[6,0,0,21,7], "include_2config_8php.html#a549910227348003efc3c05c9105c42da":[6,0,0,21,0], "include_2config_8php.html#a559791dda7fef8a4b2394c83e835787b":[6,0,0,21,8], -"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[6,0,0,21,11], -"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[6,0,0,21,1], -"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[6,0,0,21,2], -"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[6,0,0,21,6], -"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[6,0,0,21,5], -"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[6,0,0,21,10], -"include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52":[6,0,0,21,9], -"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[6,0,0,21,3], -"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[6,0,0,21,4], -"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[6,0,0,21,12], -"include_2directory_8php.html":[6,0,0,34], -"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[6,0,0,34,0], -"include_2follow_8php.html":[6,0,0,40], -"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[6,0,0,40,0], -"include_2group_8php.html":[6,0,0,42], -"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[6,0,0,42,2], -"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[6,0,0,42,10], -"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[6,0,0,42,1], -"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[6,0,0,42,0], -"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[6,0,0,42,6], -"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[6,0,0,42,7], -"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[6,0,0,42,4], -"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[6,0,0,42,8], -"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[6,0,0,42,5], -"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[6,0,0,42,11], -"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[6,0,0,42,3], -"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[6,0,0,42,9], -"include_2menu_8php.html":[6,0,0,51], -"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[6,0,0,51,11], -"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[6,0,0,51,1], -"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[6,0,0,51,10], -"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,51,9], -"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,51,3], -"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,51,8], -"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,51,7] +"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[6,0,0,21,11] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 4976e91e3..24f45fa52 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,39 @@ var NAVTREEINDEX6 = { +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[6,0,0,21,1], +"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[6,0,0,21,2], +"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[6,0,0,21,6], +"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[6,0,0,21,5], +"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[6,0,0,21,10], +"include_2config_8php.html#aee4b619839cf4b64220f34edf5c67b52":[6,0,0,21,9], +"include_2config_8php.html#af02c96e6b37335774b548914ede1d22e":[6,0,0,21,3], +"include_2config_8php.html#af08b7adb63adfb2eda7c466fba0cce74":[6,0,0,21,4], +"include_2config_8php.html#afe117b70f1bba2f6348d9300b601f86e":[6,0,0,21,12], +"include_2directory_8php.html":[6,0,0,34], +"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[6,0,0,34,0], +"include_2follow_8php.html":[6,0,0,40], +"include_2follow_8php.html#ae387d4ae097c23d69f3247e7f08140c7":[6,0,0,40,0], +"include_2group_8php.html":[6,0,0,42], +"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[6,0,0,42,2], +"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[6,0,0,42,10], +"include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce":[6,0,0,42,1], +"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[6,0,0,42,0], +"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[6,0,0,42,6], +"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[6,0,0,42,7], +"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[6,0,0,42,4], +"include_2group_8php.html#a6a69bd7be032fa8ce4e49c43a42cc6e9":[6,0,0,42,8], +"include_2group_8php.html#a90e157b3e1b99c981809cb5a2abd3245":[6,0,0,42,5], +"include_2group_8php.html#ab0e422a0f31c0c64fd9084ca03d85f32":[6,0,0,42,11], +"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[6,0,0,42,3], +"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[6,0,0,42,9], +"include_2menu_8php.html":[6,0,0,51], +"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[6,0,0,51,11], +"include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[6,0,0,51,1], +"include_2menu_8php.html#a251bf7e15d21627fd92614198e41c485":[6,0,0,51,10], +"include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[6,0,0,51,9], +"include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[6,0,0,51,3], +"include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[6,0,0,51,8], +"include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[6,0,0,51,7], "include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[6,0,0,51,5], "include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[6,0,0,51,2], "include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa":[6,0,0,51,6], @@ -69,19 +103,19 @@ var NAVTREEINDEX6 = "include_2probe_8php.html#aa748dc73a6686c13826b1ee9d16c800d":[6,0,0,66,7], "include_2probe_8php.html#ab19a52326b27607a0fb8191cc75ba481":[6,0,0,66,5], "index.html":[], -"interfaceITemplateEngine.html":[5,0,20], -"interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[5,0,20,1], -"interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442":[5,0,20,0], -"invite_8php.html":[6,0,1,46], -"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[6,0,1,46,0], -"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[6,0,1,46,1], -"item_8php.html":[6,0,1,47], -"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[6,0,1,47,0], -"item_8php.html#a5b1b36cb301a94b38150074f0d424e74":[6,0,1,47,3], -"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[6,0,1,47,5], -"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[6,0,1,47,4], -"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[6,0,1,47,1], -"item_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,1,47,2], +"interfaceITemplateEngine.html":[5,0,21], +"interfaceITemplateEngine.html#aaa7381c8becc3d1c1790b53988a0f243":[5,0,21,1], +"interfaceITemplateEngine.html#aaf2698adbf46c073c24b162fe1b1c442":[5,0,21,0], +"invite_8php.html":[6,0,1,45], +"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[6,0,1,45,0], +"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[6,0,1,45,1], +"item_8php.html":[6,0,1,46], +"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[6,0,1,46,0], +"item_8php.html#a5b1b36cb301a94b38150074f0d424e74":[6,0,1,46,3], +"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[6,0,1,46,5], +"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[6,0,1,46,4], +"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[6,0,1,46,1], +"item_8php.html#aa22feef4de326e1d7078dedd892e615c":[6,0,1,46,2], "items_8php.html":[6,0,0,49], "items_8php.html#a016dd86c827d08db89061ea81d15c6cb":[6,0,0,49,3], "items_8php.html#a02ca33c31ed535d24894f8a9a91ce9df":[6,0,0,49,42], @@ -156,8 +190,8 @@ var NAVTREEINDEX6 = "items_8php.html#af6237605c60d69abdd959ddbbee3420c":[6,0,0,49,61], "items_8php.html#af94c281016c6c912d06e064113336c5c":[6,0,0,49,50], "items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[6,0,0,49,24], -"lang_8php.html":[6,0,1,48], -"lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[6,0,1,48,0], +"lang_8php.html":[6,0,1,47], +"lang_8php.html#a4c5c1140f51a638f224275cd618c2f37":[6,0,1,47,0], "language_8php.html":[6,0,0,50], "language_8php.html#a151e5b4689aef86a12642cbb7a00bfe0":[6,0,0,50,7], "language_8php.html#a43e6ddba9df019c9ac3ab4c94c444ae7":[6,0,0,50,3], @@ -169,29 +203,30 @@ var NAVTREEINDEX6 = "language_8php.html#ac6ae482ee54fa2764d5c2e77305aeb96":[6,0,0,50,8], "language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[6,0,0,50,6], "language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e":[6,0,0,50,2], -"layouts_8php.html":[6,0,1,49], -"layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[6,0,1,49,0], -"like_8php.html":[6,0,1,50], -"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[6,0,1,50,0], -"lockview_8php.html":[6,0,1,51], -"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[6,0,1,51,0], -"locs_8php.html":[6,0,1,52], -"locs_8php.html#a6b43654592919ac863d67a1f787a69b9":[6,0,1,52,1], -"locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44":[6,0,1,52,0], -"login_8php.html":[6,0,1,53], -"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[6,0,1,53,0], -"lostpass_8php.html":[6,0,1,54], -"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[6,0,1,54,0], -"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[6,0,1,54,1], -"magic_8php.html":[6,0,1,55], -"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[6,0,1,55,0], -"mail_8php.html":[6,0,1,56], -"mail_8php.html#a3c7c485fc69f92371e8b20936040eca1":[6,0,1,56,0], -"mail_8php.html#acfc2cc0bf4e0b178207758384977f25a":[6,0,1,56,1], -"manage_8php.html":[6,0,1,57], -"manage_8php.html#a2bca247b5296827638959138367db4f5":[6,0,1,57,0], -"match_8php.html":[6,0,1,58], -"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[6,0,1,58,0], +"layouts_8php.html":[6,0,1,48], +"layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa":[6,0,1,48,1], +"layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50":[6,0,1,48,0], +"like_8php.html":[6,0,1,49], +"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[6,0,1,49,0], +"lockview_8php.html":[6,0,1,50], +"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[6,0,1,50,0], +"locs_8php.html":[6,0,1,51], +"locs_8php.html#a6b43654592919ac863d67a1f787a69b9":[6,0,1,51,1], +"locs_8php.html#a6c900f53970c0d0e738d2fe06d27ca44":[6,0,1,51,0], +"login_8php.html":[6,0,1,52], +"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[6,0,1,52,0], +"lostpass_8php.html":[6,0,1,53], +"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[6,0,1,53,0], +"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[6,0,1,53,1], +"magic_8php.html":[6,0,1,54], +"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[6,0,1,54,0], +"mail_8php.html":[6,0,1,55], +"mail_8php.html#a3c7c485fc69f92371e8b20936040eca1":[6,0,1,55,0], +"mail_8php.html#acfc2cc0bf4e0b178207758384977f25a":[6,0,1,55,1], +"manage_8php.html":[6,0,1,56], +"manage_8php.html#a2bca247b5296827638959138367db4f5":[6,0,1,56,0], +"match_8php.html":[6,0,1,57], +"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[6,0,1,57,0], "md_README.html":[2], "md_config.html":[0], "md_fresh.html":[1], @@ -203,10 +238,10 @@ var NAVTREEINDEX6 = "minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf":[6,0,3,1,0,2,4,0], "minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb":[6,0,3,1,0,2,4,2], "minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b":[6,0,3,1,0,2,4,1], -"mitem_8php.html":[6,0,1,61], -"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[6,0,1,61,2], -"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[6,0,1,61,0], -"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[6,0,1,61,1], +"mitem_8php.html":[6,0,1,60], +"mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[6,0,1,60,2], +"mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[6,0,1,60,0], +"mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518":[6,0,1,60,1], "mod_2api_8php.html":[6,0,1,4], "mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[6,0,1,4,2], "mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[6,0,1,4,0], @@ -214,40 +249,5 @@ var NAVTREEINDEX6 = "mod_2apps_8php.html":[6,0,1,6], "mod_2apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[6,0,1,6,0], "mod_2attach_8php.html":[6,0,1,7], -"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[6,0,1,7,0], -"mod_2bookmarks_8php.html":[6,0,1,10], -"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[6,0,1,10,1], -"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[6,0,1,10,0], -"mod_2chat_8php.html":[6,0,1,13], -"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[6,0,1,13,0], -"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[6,0,1,13,2], -"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[6,0,1,13,1], -"mod_2directory_8php.html":[6,0,1,22], -"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[6,0,1,22,1], -"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[6,0,1,22,0], -"mod_2follow_8php.html":[6,0,1,36], -"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[6,0,1,36,1], -"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[6,0,1,36,0], -"mod_2group_8php.html":[6,0,1,38], -"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[6,0,1,38,0], -"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[6,0,1,38,1], -"mod_2menu_8php.html":[6,0,1,59], -"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[6,0,1,59,0], -"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[6,0,1,59,1], -"mod_2message_8php.html":[6,0,1,60], -"mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f":[6,0,1,60,0], -"mod_2network_8php.html":[6,0,1,65], -"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[6,0,1,65,1], -"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[6,0,1,65,0], -"mod_2notify_8php.html":[6,0,1,69], -"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[6,0,1,69,1], -"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[6,0,1,69,0], -"mod_2oembed_8php.html":[6,0,1,70], -"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[6,0,1,70,0], -"mod_2photos_8php.html":[6,0,1,80], -"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[6,0,1,80,2], -"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[6,0,1,80,0], -"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[6,0,1,80,1], -"mod_2probe_8php.html":[6,0,1,88], -"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[6,0,1,88,0] +"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[6,0,1,7,0] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 750d36362..95e51661f 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,92 +1,127 @@ var NAVTREEINDEX7 = { +"mod_2bookmarks_8php.html":[6,0,1,10], +"mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3":[6,0,1,10,1], +"mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a":[6,0,1,10,0], +"mod_2chat_8php.html":[6,0,1,13], +"mod_2chat_8php.html#a8b0b8bee6fef6477e8c64c5e951b1b4f":[6,0,1,13,0], +"mod_2chat_8php.html#a999d594745597c656c9760253ae297ad":[6,0,1,13,2], +"mod_2chat_8php.html#aa9ae4782e9baef0b7314ab9527c2707e":[6,0,1,13,1], +"mod_2directory_8php.html":[6,0,1,22], +"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[6,0,1,22,1], +"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[6,0,1,22,0], +"mod_2follow_8php.html":[6,0,1,35], +"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[6,0,1,35,1], +"mod_2follow_8php.html#a4c540ea4e9f5c581c1a53516ac585592":[6,0,1,35,0], +"mod_2group_8php.html":[6,0,1,37], +"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[6,0,1,37,0], +"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[6,0,1,37,1], +"mod_2menu_8php.html":[6,0,1,58], +"mod_2menu_8php.html#a6fed23af14d71a78a4153c8363a685cf":[6,0,1,58,0], +"mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393":[6,0,1,58,1], +"mod_2message_8php.html":[6,0,1,59], +"mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f":[6,0,1,59,0], +"mod_2network_8php.html":[6,0,1,64], +"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[6,0,1,64,1], +"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[6,0,1,64,0], +"mod_2notify_8php.html":[6,0,1,68], +"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[6,0,1,68,1], +"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[6,0,1,68,0], +"mod_2oembed_8php.html":[6,0,1,69], +"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[6,0,1,69,0], +"mod_2photos_8php.html":[6,0,1,79], +"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[6,0,1,79,2], +"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[6,0,1,79,0], +"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[6,0,1,79,1], +"mod_2probe_8php.html":[6,0,1,87], +"mod_2probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[6,0,1,87,0], "mod__chanview_8php.html":[6,0,3,1,0,0,0], "mod__import_8php.html":[6,0,3,0,4], "mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[6,0,3,0,4,0], -"mood_8php.html":[6,0,1,62], -"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[6,0,1,62,0], -"mood_8php.html#a7ae136dd7476865b4828136175db5022":[6,0,1,62,1], -"msearch_8php.html":[6,0,1,63], -"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[6,0,1,63,0], +"mood_8php.html":[6,0,1,61], +"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[6,0,1,61,0], +"mood_8php.html#a7ae136dd7476865b4828136175db5022":[6,0,1,61,1], +"msearch_8php.html":[6,0,1,62], +"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[6,0,1,62,0], "mytheme_2php_2style_8php.html":[6,0,3,1,3,0,1], "mytheme_2php_2theme_8php.html":[6,0,3,1,3,0,2], "mytheme_2php_2theme_8php.html#a6ce5df8ece6acc09c1fddaccbeb244e8":[6,0,3,1,3,0,2,0], -"namespaceFriendica.html":[4,0,1], "namespaceFriendica.html":[5,0,1], +"namespaceFriendica.html":[4,0,1], "namespaceRedMatrix.html":[4,0,3], "namespaceRedMatrix.html":[5,0,3], -"namespaceRedMatrix_1_1RedDAV.html":[4,0,3,0], "namespaceRedMatrix_1_1RedDAV.html":[5,0,3,0], +"namespaceRedMatrix_1_1RedDAV.html":[4,0,3,0], "namespaceRedmatrix.html":[5,0,4], "namespaceRedmatrix.html":[4,0,4], "namespaceRedmatrix_1_1Import.html":[5,0,4,0], "namespaceRedmatrix_1_1Import.html":[4,0,4,0], -"namespaceacl__selectors.html":[4,0,0], "namespaceacl__selectors.html":[5,0,0], +"namespaceacl__selectors.html":[4,0,0], "namespacefriendica-to-smarty-tpl.html":[4,0,2], "namespacefriendica-to-smarty-tpl.html":[5,0,2], "namespacemembers.html":[4,1,0], "namespacemembers_func.html":[4,1,1], "namespacemembers_vars.html":[4,1,2], "namespaces.html":[4,0], -"namespaceupdatetpl.html":[4,0,5], "namespaceupdatetpl.html":[5,0,5], +"namespaceupdatetpl.html":[4,0,5], "namespaceutil.html":[4,0,6], "namespaceutil.html":[5,0,6], "nav_8php.html":[6,0,0,53], "nav_8php.html#a43be0df73b90647ea70947ce004e231e":[6,0,0,53,0], "nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[6,0,0,53,1], -"netgrowth_8php.html":[6,0,1,64], -"netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[6,0,1,64,0], -"new__channel_8php.html":[6,0,1,66], -"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[6,0,1,66,2], -"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[6,0,1,66,1], -"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[6,0,1,66,0], +"netgrowth_8php.html":[6,0,1,63], +"netgrowth_8php.html#a9b87bfc25a7cb11bc7f8e1fdd0310919":[6,0,1,63,0], +"new__channel_8php.html":[6,0,1,65], +"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[6,0,1,65,2], +"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[6,0,1,65,1], +"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[6,0,1,65,0], "none_8php.html":[6,0,3,0,5], -"notes_8php.html":[6,0,1,67], -"notes_8php.html#a4dbd7b1f906440746af48b484d66535a":[6,0,1,67,0], -"notifications_8php.html":[6,0,1,68], -"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[6,0,1,68,1], -"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[6,0,1,68,0], +"notes_8php.html":[6,0,1,66], +"notes_8php.html#a4dbd7b1f906440746af48b484d66535a":[6,0,1,66,0], +"notifications_8php.html":[6,0,1,67], +"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[6,0,1,67,1], +"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[6,0,1,67,0], "notifier_8php.html":[6,0,0,55], "notifier_8php.html#a568c502f626cff95e344c0748938b85d":[6,0,0,55,0], "notred_8php.html":[6,0,3,1,4,1,3], "oauth_8php.html":[6,0,0,57], "oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[6,0,0,57,3], "oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[6,0,0,57,2], -"oexchange_8php.html":[6,0,1,71], -"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[6,0,1,71,0], -"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[6,0,1,71,1], +"oexchange_8php.html":[6,0,1,70], +"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[6,0,1,70,0], +"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[6,0,1,70,1], "olddefault_8php.html":[6,0,3,1,0,2,5], "onedirsync_8php.html":[6,0,0,59], "onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[6,0,0,59,0], "onepoll_8php.html":[6,0,0,60], "onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[6,0,0,60,0], -"online_8php.html":[6,0,1,72], -"online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[6,0,1,72,0], -"openid_8php.html":[6,0,1,73], -"openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43":[6,0,1,73,0], -"opensearch_8php.html":[6,0,1,74], -"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[6,0,1,74,0], -"p_8php.html":[6,0,1,75], -"p_8php.html#af9d5530ca0b3dc9409cf591c39e2480e":[6,0,1,75,0], -"page_8php.html":[6,0,1,76], -"page_8php.html#a4d89800c0366a239191b1692c09635cf":[6,0,1,76,1], -"page_8php.html#a91a5f649f68406149108bded1dc90b22":[6,0,1,76,0], +"online_8php.html":[6,0,1,71], +"online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7":[6,0,1,71,0], +"openid_8php.html":[6,0,1,72], +"openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43":[6,0,1,72,0], +"opensearch_8php.html":[6,0,1,73], +"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[6,0,1,73,0], +"p_8php.html":[6,0,1,74], +"p_8php.html#af9d5530ca0b3dc9409cf591c39e2480e":[6,0,1,74,0], +"page_8php.html":[6,0,1,75], +"page_8php.html#a4d89800c0366a239191b1692c09635cf":[6,0,1,75,1], +"page_8php.html#a91a5f649f68406149108bded1dc90b22":[6,0,1,75,0], "page__widgets_8php.html":[6,0,0,61], "page__widgets_8php.html#a1a1e729da27f252cab6678288a17958f":[6,0,0,61,1], "page__widgets_8php.html#a39d547771c5f12a17c097436c82f0fa2":[6,0,0,61,0], "pages.html":[], -"parse__url_8php.html":[6,0,1,77], -"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[6,0,1,77,2], -"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[6,0,1,77,3], -"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[6,0,1,77,1], -"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[6,0,1,77,0], +"parse__url_8php.html":[6,0,1,76], +"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[6,0,1,76,2], +"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[6,0,1,76,3], +"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[6,0,1,76,1], +"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[6,0,1,76,0], "passion_8php.html":[6,0,3,1,0,2,6], "passionwide_8php.html":[6,0,3,1,0,2,7], -"pdledit_8php.html":[6,0,1,78], -"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[6,0,1,78,0], -"pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[6,0,1,78,1], +"pdledit_8php.html":[6,0,1,77], +"pdledit_8php.html#a59cb550f6b7a4e7d8196fbc9de601619":[6,0,1,77,0], +"pdledit_8php.html#a81da3c955d0e3db55d148a31483104c7":[6,0,1,77,1], "permissions_8php.html":[6,0,0,62], "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[6,0,0,62,2], "permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[6,0,0,62,0], @@ -95,8 +130,8 @@ var NAVTREEINDEX7 = "permissions_8php.html#a9b5f5120566a3699a98efc5ccb0c59fe":[6,0,0,62,3], "permissions_8php.html#aa8b7b102c653649d7a71b5a1c044d90d":[6,0,0,62,6], "permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[6,0,0,62,1], -"photo_8php.html":[6,0,1,79], -"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[6,0,1,79,0], +"photo_8php.html":[6,0,1,78], +"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[6,0,1,78,0], "photo__driver_8php.html":[6,0,0,2,0], "photo__driver_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a":[6,0,0,2,0,2], "photo__driver_8php.html#a243cee492ce443afb6a7d77d54b6c4aa":[6,0,0,2,0,1], @@ -117,11 +152,11 @@ var NAVTREEINDEX7 = "php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,0,1,0], "php_2theme__init_8php.html":[6,0,3,0,7], "php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[6,0,3,0,7,0], -"php_8php.html":[6,0,1,81], -"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[6,0,1,81,0], +"php_8php.html":[6,0,1,80], +"php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[6,0,1,80,0], "pine_8php.html":[6,0,3,1,0,2,8], -"ping_8php.html":[6,0,1,82], -"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[6,0,1,82,0], +"ping_8php.html":[6,0,1,81], +"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[6,0,1,81,0], "plugin_8php.html":[6,0,0,64], "plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76":[6,0,0,64,24], "plugin_8php.html#a0e8c2ea50bfdbc39e17ccccaea21ddc3":[6,0,0,64,22], @@ -152,29 +187,29 @@ var NAVTREEINDEX7 = "plugin_8php.html#aff0178bd8d0b34a94d5efddc883edd35":[6,0,0,64,5], "po2php_8php.html":[6,0,2,6], "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[6,0,2,6,0], -"poco_8php.html":[6,0,1,83], -"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[6,0,1,83,0], -"poke_8php.html":[6,0,1,84], -"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[6,0,1,84,1], -"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[6,0,1,84,0], -"poll_8php.html":[6,0,1,85], -"poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77":[6,0,1,85,2], -"poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263":[6,0,1,85,0], -"poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930":[6,0,1,85,1], +"poco_8php.html":[6,0,1,82], +"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[6,0,1,82,0], +"poke_8php.html":[6,0,1,83], +"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[6,0,1,83,1], +"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[6,0,1,83,0], +"poll_8php.html":[6,0,1,84], +"poll_8php.html#a26be9d4f230cb68f5be326198cfc6c77":[6,0,1,84,2], +"poll_8php.html#a3314c26bd2ac0ed831cebf3315cd3263":[6,0,1,84,0], +"poll_8php.html#ab9ecd5b71af090a5da9c93f34f7ec930":[6,0,1,84,1], "poller_8php.html":[6,0,0,65], "poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[6,0,0,65,0], -"post_8php.html":[6,0,1,86], -"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[6,0,1,86,0], -"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[6,0,1,86,1], -"pretheme_8php.html":[6,0,1,87], -"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[6,0,1,87,0], -"profile_8php.html":[6,0,1,89], -"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[6,0,1,89,0], -"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[6,0,1,89,1], -"profile__photo_8php.html":[6,0,1,90], -"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[6,0,1,90,0], -"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[6,0,1,90,1], -"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[6,0,1,90,2], +"post_8php.html":[6,0,1,85], +"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[6,0,1,85,0], +"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[6,0,1,85,1], +"pretheme_8php.html":[6,0,1,86], +"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[6,0,1,86,0], +"profile_8php.html":[6,0,1,88], +"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[6,0,1,88,0], +"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[6,0,1,88,1], +"profile__photo_8php.html":[6,0,1,89], +"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[6,0,1,89,0], +"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[6,0,1,89,1], +"profile__photo_8php.html#a561103564199da56e58061a4196eb102":[6,0,1,89,2], "profile__selectors_8php.html":[6,0,0,67], "profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[6,0,0,67,4], "profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[6,0,0,67,2], @@ -182,27 +217,27 @@ var NAVTREEINDEX7 = "profile__selectors_8php.html#ab0eae5c0ceba77364469f0f580f0d074":[6,0,0,67,5], "profile__selectors_8php.html#adc79715bd2e102b4583fb530749ec534":[6,0,0,67,3], "profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[6,0,0,67,0], -"profiles_8php.html":[6,0,1,91], -"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[6,0,1,91,1], -"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[6,0,1,91,0], -"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[6,0,1,91,2], -"profperm_8php.html":[6,0,1,92], -"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[6,0,1,92,1], -"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[6,0,1,92,0], -"pubsites_8php.html":[6,0,1,93], -"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[6,0,1,93,0], +"profiles_8php.html":[6,0,1,90], +"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[6,0,1,90,1], +"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[6,0,1,90,0], +"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[6,0,1,90,2], +"profperm_8php.html":[6,0,1,91], +"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[6,0,1,91,1], +"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[6,0,1,91,0], +"pubsites_8php.html":[6,0,1,92], +"pubsites_8php.html#af614e279aab54065345bda6b03eafdf0":[6,0,1,92,0], "queue_8php.html":[6,0,0,69], "queue_8php.html#af8c93de86d866c3200174c8450a0f341":[6,0,0,69,0], "queue__fn_8php.html":[6,0,0,70], "queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[6,0,0,70,1], "queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[6,0,0,70,0], -"randprof_8php.html":[6,0,1,94], -"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[6,0,1,94,0], -"rbmark_8php.html":[6,0,1,95], -"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[6,0,1,95,0], -"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[6,0,1,95,1], -"receive_8php.html":[6,0,1,96], -"receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[6,0,1,96,0], +"randprof_8php.html":[6,0,1,93], +"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[6,0,1,93,0], +"rbmark_8php.html":[6,0,1,94], +"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[6,0,1,94,0], +"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[6,0,1,94,1], +"receive_8php.html":[6,0,1,95], +"receive_8php.html#a03d8fa26e77844020ba5602deca7d494":[6,0,1,95,0], "redable_8php.html":[6,0,3,0,6], "redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,0,6,0], "redbasic_2php_2style_8php.html":[6,0,3,1,4,0,1], @@ -214,40 +249,5 @@ var NAVTREEINDEX7 = "reddav_8php.html":[6,0,0,71], "reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[6,0,0,71,1], "reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[6,0,0,71,2], -"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,71,0], -"refimport_8php.html":[6,0,0,1,1], -"refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c":[6,0,0,1,1,2], -"refimport_8php.html#a53434bc19e6264db89e18d92ddc09860":[6,0,0,1,1,1], -"refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6":[6,0,0,1,1,6], -"refimport_8php.html#a684a44d2401abf75f441591bcb41d10d":[6,0,0,1,1,12], -"refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c":[6,0,0,1,1,4], -"refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f":[6,0,0,1,1,8], -"refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f":[6,0,0,1,1,10], -"refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d":[6,0,0,1,1,3], -"refimport_8php.html#ac43699d8ae86175e049aa4e87853caac":[6,0,0,1,1,7], -"refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025":[6,0,0,1,1,9], -"refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29":[6,0,0,1,1,0], -"refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5":[6,0,0,1,1,5], -"refimport_8php.html#aeec793cefa260f788b7d005adcb35796":[6,0,0,1,1,11], -"register_8php.html":[6,0,1,97], -"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[6,0,1,97,0], -"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[6,0,1,97,2], -"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[6,0,1,97,1], -"regmod_8php.html":[6,0,1,98], -"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[6,0,1,98,0], -"regver_8php.html":[6,0,1,99], -"regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f":[6,0,1,99,0], -"removeaccount_8php.html":[6,0,1,100], -"removeaccount_8php.html#a26a3325292e932c59793430ab737126a":[6,0,1,100,1], -"removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695":[6,0,1,100,0], -"removeme_8php.html":[6,0,1,101], -"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[6,0,1,101,0], -"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[6,0,1,101,1], -"rmagic_8php.html":[6,0,1,102], -"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[6,0,1,102,0], -"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[6,0,1,102,2], -"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[6,0,1,102,1], -"rpost_8php.html":[6,0,1,103], -"rpost_8php.html#a8190354d789000806d9879aea276728f":[6,0,1,103,0], -"rsd__xml_8php.html":[6,0,1,104] +"reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[6,0,0,71,0] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index 75e8fbe66..41348f01c 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,11 +1,46 @@ var NAVTREEINDEX8 = { -"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[6,0,1,104,0], -"search_8php.html":[6,0,1,105], -"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[6,0,1,105,0], -"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,105,1], -"search__ac_8php.html":[6,0,1,106], -"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,106,0], +"refimport_8php.html":[6,0,0,1,1], +"refimport_8php.html#a01a29630fa5e1ce6cd5e1fd75280747c":[6,0,0,1,1,2], +"refimport_8php.html#a53434bc19e6264db89e18d92ddc09860":[6,0,0,1,1,1], +"refimport_8php.html#a54003135d7c8994a76e831fb6faa2fe6":[6,0,0,1,1,6], +"refimport_8php.html#a684a44d2401abf75f441591bcb41d10d":[6,0,0,1,1,12], +"refimport_8php.html#a6c3e0475fde9fe72ff2492a5e3e5259c":[6,0,0,1,1,4], +"refimport_8php.html#a8459983ebf013ed5737f7ed317bfae1f":[6,0,0,1,1,8], +"refimport_8php.html#a9c1f681f1f303400a9818696a9f96d6f":[6,0,0,1,1,10], +"refimport_8php.html#aa98de7d112e3a5b4b6956f108d04a41d":[6,0,0,1,1,3], +"refimport_8php.html#ac43699d8ae86175e049aa4e87853caac":[6,0,0,1,1,7], +"refimport_8php.html#ad297afe0730c9119dd94d3cf0521b025":[6,0,0,1,1,9], +"refimport_8php.html#ad97ebb5feda0230a4834e0b3637a0d29":[6,0,0,1,1,0], +"refimport_8php.html#ae9c56f779d1e0ac7bcb2a460129e7ae5":[6,0,0,1,1,5], +"refimport_8php.html#aeec793cefa260f788b7d005adcb35796":[6,0,0,1,1,11], +"register_8php.html":[6,0,1,96], +"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[6,0,1,96,0], +"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[6,0,1,96,2], +"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[6,0,1,96,1], +"regmod_8php.html":[6,0,1,97], +"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[6,0,1,97,0], +"regver_8php.html":[6,0,1,98], +"regver_8php.html#ad2c5f644fd1b099abd7c715b7df6f50f":[6,0,1,98,0], +"removeaccount_8php.html":[6,0,1,99], +"removeaccount_8php.html#a26a3325292e932c59793430ab737126a":[6,0,1,99,1], +"removeaccount_8php.html#a516e7380b9e5796054aa8245f3509695":[6,0,1,99,0], +"removeme_8php.html":[6,0,1,100], +"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[6,0,1,100,0], +"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[6,0,1,100,1], +"rmagic_8php.html":[6,0,1,101], +"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[6,0,1,101,0], +"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[6,0,1,101,2], +"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[6,0,1,101,1], +"rpost_8php.html":[6,0,1,102], +"rpost_8php.html#a8190354d789000806d9879aea276728f":[6,0,1,102,0], +"rsd__xml_8php.html":[6,0,1,103], +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[6,0,1,103,0], +"search_8php.html":[6,0,1,104], +"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[6,0,1,104,0], +"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[6,0,1,104,1], +"search__ac_8php.html":[6,0,1,105], +"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[6,0,1,105,0], "security_8php.html":[6,0,0,72], "security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[6,0,0,72,2], "security_8php.html#a3ef2be6a7e4928e39d50059d6feb457c":[6,0,0,72,11], @@ -19,8 +54,8 @@ var NAVTREEINDEX8 = "security_8php.html#acd06ef411116115c2f0a92633700db8a":[6,0,0,72,6], "security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[6,0,0,72,0], "security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[6,0,0,72,8], -"service__limits_8php.html":[6,0,1,107], -"service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,107,0], +"service__limits_8php.html":[6,0,1,106], +"service__limits_8php.html#a653424aac63c5cd05ba70c3c77bf7f8a":[6,0,1,106,0], "session_8php.html":[6,0,0,73], "session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[6,0,0,73,4], "session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[6,0,0,73,0], @@ -32,41 +67,41 @@ var NAVTREEINDEX8 = "session_8php.html#ac95373f4966862a028033dd2f94d4da1":[6,0,0,73,3], "session_8php.html#af0100a2642a5268594bbd5742a03d885":[6,0,0,73,9], "session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[6,0,0,73,2], -"settings_8php.html":[6,0,1,108], -"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,108,0], -"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,108,1], -"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[6,0,1,108,2], -"setup_8php.html":[6,0,1,109], -"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[6,0,1,109,2], -"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[6,0,1,109,14], -"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[6,0,1,109,5], -"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[6,0,1,109,13], -"setup_8php.html#a2b375ddc555140236fc500135de99371":[6,0,1,109,10], -"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[6,0,1,109,3], -"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[6,0,1,109,1], -"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[6,0,1,109,8], -"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[6,0,1,109,12], -"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[6,0,1,109,4], -"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[6,0,1,109,7], -"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[6,0,1,109,11], -"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[6,0,1,109,9], -"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[6,0,1,109,16], -"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[6,0,1,109,0], -"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[6,0,1,109,15], -"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[6,0,1,109,6], -"share_8php.html":[6,0,1,110], -"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[6,0,1,110,0], +"settings_8php.html":[6,0,1,107], +"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[6,0,1,107,0], +"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[6,0,1,107,1], +"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[6,0,1,107,2], +"setup_8php.html":[6,0,1,108], +"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[6,0,1,108,2], +"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[6,0,1,108,14], +"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[6,0,1,108,5], +"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[6,0,1,108,13], +"setup_8php.html#a2b375ddc555140236fc500135de99371":[6,0,1,108,10], +"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[6,0,1,108,3], +"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[6,0,1,108,1], +"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[6,0,1,108,8], +"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[6,0,1,108,12], +"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[6,0,1,108,4], +"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[6,0,1,108,7], +"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[6,0,1,108,11], +"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[6,0,1,108,9], +"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[6,0,1,108,16], +"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[6,0,1,108,0], +"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[6,0,1,108,15], +"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[6,0,1,108,6], +"share_8php.html":[6,0,1,109], +"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[6,0,1,109,0], "simple__black__on__white_8php.html":[6,0,3,1,4,1,4], "simple__green__on__black_8php.html":[6,0,3,1,4,1,5], "simple__white__on__black_8php.html":[6,0,3,1,4,1,6], -"siteinfo_8php.html":[6,0,1,111], -"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[6,0,1,111,1], -"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[6,0,1,111,0], -"sitelist_8php.html":[6,0,1,112], -"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[6,0,1,112,0], +"siteinfo_8php.html":[6,0,1,110], +"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[6,0,1,110,1], +"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[6,0,1,110,0], +"sitelist_8php.html":[6,0,1,111], +"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[6,0,1,111,0], "smarty_8php.html":[6,0,0,74], -"smilies_8php.html":[6,0,1,113], -"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[6,0,1,113,0], +"smilies_8php.html":[6,0,1,112], +"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[6,0,1,112,0], "socgraph_8php.html":[6,0,0,75], "socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[6,0,0,75,0], "socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[6,0,0,75,6], @@ -77,16 +112,16 @@ var NAVTREEINDEX8 = "socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[6,0,0,75,2], "socgraph_8php.html#af175807406d94407a5e11742a3287746":[6,0,0,75,5], "socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[6,0,0,75,3], -"sources_8php.html":[6,0,1,114], -"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[6,0,1,114,0], -"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[6,0,1,114,1], +"sources_8php.html":[6,0,1,113], +"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[6,0,1,113,0], +"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[6,0,1,113,1], "spam_8php.html":[6,0,0,76], "spam_8php.html#a05861201147b9a538d006f0269255cf9":[6,0,0,76,1], "spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[6,0,0,76,0], -"sslify_8php.html":[6,0,1,115], -"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[6,0,1,115,0], -"starred_8php.html":[6,0,1,116], -"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[6,0,1,116,0], +"sslify_8php.html":[6,0,1,114], +"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[6,0,1,114,0], +"starred_8php.html":[6,0,1,115], +"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[6,0,1,115,0], "statistics__fns_8php.html":[6,0,0,77], "statistics__fns_8php.html#a05858927cce81fd367aedf85a94ed90c":[6,0,0,77,2], "statistics__fns_8php.html#a82726229a961d3bd3d543005c61dd8e6":[6,0,0,77,0], @@ -95,21 +130,21 @@ var NAVTREEINDEX8 = "stumble_2php_2style_8php.html":[6,0,3,1,5,0,0], "stumble_2php_2theme_8php.html":[6,0,3,1,5,0,1], "stumble_2php_2theme_8php.html#a71db9eff6289e0ee47771c37c01d6753":[6,0,3,1,5,0,1,0], -"subthread_8php.html":[6,0,1,117], -"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[6,0,1,117,0], +"subthread_8php.html":[6,0,1,116], +"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[6,0,1,116,0], "suckerberg_2php_2style_8php.html":[6,0,3,1,6,0,0], "suckerberg_2php_2theme_8php.html":[6,0,3,1,6,0,1], "suckerberg_2php_2theme_8php.html#a4104fce7d5fb71d15ed811978b628fc8":[6,0,3,1,6,0,1,0], -"suggest_8php.html":[6,0,1,118], -"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[6,0,1,118,0], -"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[6,0,1,118,1], +"suggest_8php.html":[6,0,1,117], +"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[6,0,1,117,0], +"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[6,0,1,117,1], "system__unavailable_8php.html":[6,0,0,78], "system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[6,0,0,78,0], -"tagger_8php.html":[6,0,1,119], -"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[6,0,1,119,0], -"tagrm_8php.html":[6,0,1,120], -"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,120,1], -"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,120,0], +"tagger_8php.html":[6,0,1,118], +"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[6,0,1,118,0], +"tagrm_8php.html":[6,0,1,119], +"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[6,0,1,119,1], +"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[6,0,1,119,0], "taxonomy_8php.html":[6,0,0,79], "taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[6,0,0,79,10], "taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[6,0,0,79,1], @@ -214,40 +249,5 @@ var NAVTREEINDEX8 = "text_8php.html#ad6432621d0fafcbcf3d3b9b49bef7784":[6,0,0,81,13], "text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[6,0,0,81,66], "text_8php.html#ad8c6e13d6accf057136c5f30a23a5f08":[6,0,0,81,27], -"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,81,53], -"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,81,40], -"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,81,68], -"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,81,18], -"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,81,59], -"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,81,0], -"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,81,79], -"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,81,64], -"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,81,23], -"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,81,12], -"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,81,60], -"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,81,55], -"theme_2apw_2php_2theme__init_8php.html":[6,0,3,1,0,1,4], -"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[6,0,3,1,0,1,4,0], -"theme_2blogga_2php_2default_8php.html":[6,0,3,1,1,0,1], -"theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[6,0,3,1,1,0,1,2], -"theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a":[6,0,3,1,1,0,1,0], -"theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527":[6,0,3,1,1,0,1,1], -"theme_2blogga_2php_2theme__init_8php.html":[6,0,3,1,1,0,3], -"theme_2blogga_2view_2theme_2blog_2default_8php.html":[6,0,3,1,1,1,0,0,1], -"theme_2blogga_2view_2theme_2blog_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[6,0,3,1,1,1,0,0,1,2], -"theme_2blogga_2view_2theme_2blog_2default_8php.html#a52d9dd070ed541729088395c22502539":[6,0,3,1,1,1,0,0,1,1], -"theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a":[6,0,3,1,1,1,0,0,1,0], -"theme_2mytheme_2php_2default_8php.html":[6,0,3,1,3,0,0], -"theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,1,3,0,0,0], -"theme_2redbasic_2php_2theme__init_8php.html":[6,0,3,1,4,0,3], -"thing_8php.html":[6,0,1,121], -"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[6,0,1,121,0], -"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[6,0,1,121,1], -"todo.html":[3], -"toggle__mobile_8php.html":[6,0,1,122], -"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[6,0,1,122,0], -"toggle__safesearch_8php.html":[6,0,1,123], -"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[6,0,1,123,0], -"tpldebug_8php.html":[6,0,2,7], -"tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[6,0,2,7,0] +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[6,0,0,81,53] }; diff --git a/doc/html/navtreeindex9.js b/doc/html/navtreeindex9.js index 431de1608..fa4f62489 100644 --- a/doc/html/navtreeindex9.js +++ b/doc/html/navtreeindex9.js @@ -1,5 +1,40 @@ var NAVTREEINDEX9 = { +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[6,0,0,81,40], +"text_8php.html#ae2126da85966da0e79c6bcbac63b0bda":[6,0,0,81,68], +"text_8php.html#ae4282a39492caa23ccbc2ce98e54f110":[6,0,0,81,18], +"text_8php.html#ae4df74296fbe55051ed3c035e55205e5":[6,0,0,81,59], +"text_8php.html#af8a3e3a66a7b862d4510f145d2e13186":[6,0,0,81,0], +"text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53":[6,0,0,81,79], +"text_8php.html#afc998d2796a6b2a08e96f7cc061e7221":[6,0,0,81,64], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[6,0,0,81,23], +"text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[6,0,0,81,12], +"text_8php.html#afe54312607d92f7ce9593f5760831f80":[6,0,0,81,60], +"text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[6,0,0,81,55], +"theme_2apw_2php_2theme__init_8php.html":[6,0,3,1,0,1,4], +"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[6,0,3,1,0,1,4,0], +"theme_2blogga_2php_2default_8php.html":[6,0,3,1,1,0,1], +"theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[6,0,3,1,1,0,1,2], +"theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a":[6,0,3,1,1,0,1,0], +"theme_2blogga_2php_2default_8php.html#ac7062908d1eb80c0735270f7997c4527":[6,0,3,1,1,0,1,1], +"theme_2blogga_2php_2theme__init_8php.html":[6,0,3,1,1,0,3], +"theme_2blogga_2view_2theme_2blog_2default_8php.html":[6,0,3,1,1,1,0,0,1], +"theme_2blogga_2view_2theme_2blog_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[6,0,3,1,1,1,0,0,1,2], +"theme_2blogga_2view_2theme_2blog_2default_8php.html#a52d9dd070ed541729088395c22502539":[6,0,3,1,1,1,0,0,1,1], +"theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a":[6,0,3,1,1,1,0,0,1,0], +"theme_2mytheme_2php_2default_8php.html":[6,0,3,1,3,0,0], +"theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a":[6,0,3,1,3,0,0,0], +"theme_2redbasic_2php_2theme__init_8php.html":[6,0,3,1,4,0,3], +"thing_8php.html":[6,0,1,120], +"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[6,0,1,120,0], +"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[6,0,1,120,1], +"todo.html":[3], +"toggle__mobile_8php.html":[6,0,1,121], +"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[6,0,1,121,0], +"toggle__safesearch_8php.html":[6,0,1,122], +"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[6,0,1,122,0], +"tpldebug_8php.html":[6,0,2,7], +"tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[6,0,2,7,0], "tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[6,0,2,7,1], "tpldebug_8php.html#afbc7aadb3f7ff1edf0aaaa326a42179c":[6,0,2,7,2], "typo_8php.html":[6,0,2,8], @@ -11,16 +46,16 @@ var NAVTREEINDEX9 = "typohelper_8php.html":[6,0,2,9], "typohelper_8php.html#a7542d95618011800c61773127fa625cf":[6,0,2,9,0], "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[6,0,2,9,1], -"uexport_8php.html":[6,0,1,124], -"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,124,0], -"update__channel_8php.html":[6,0,1,125], -"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,125,0], -"update__display_8php.html":[6,0,1,126], -"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[6,0,1,126,0], -"update__network_8php.html":[6,0,1,127], -"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[6,0,1,127,0], -"update__search_8php.html":[6,0,1,128], -"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[6,0,1,128,0], +"uexport_8php.html":[6,0,1,123], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[6,0,1,123,0], +"update__channel_8php.html":[6,0,1,124], +"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[6,0,1,124,0], +"update__display_8php.html":[6,0,1,125], +"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[6,0,1,125,0], +"update__network_8php.html":[6,0,1,126], +"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[6,0,1,126,0], +"update__search_8php.html":[6,0,1,127], +"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[6,0,1,127,0], "updatetpl_8py.html":[6,0,2,10], "updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[6,0,2,10,5], "updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[6,0,2,10,2], @@ -48,27 +83,28 @@ var NAVTREEINDEX9 = "view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[6,0,3,1,4,0,0,0], "view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[6,0,3,1,4,0,0,1], "view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[6,0,3,1,4,0,0,2], -"view_8php.html":[6,0,1,129], -"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[6,0,1,129,0], -"viewconnections_8php.html":[6,0,1,130], -"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[6,0,1,130,1], -"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[6,0,1,130,0], -"viewsrc_8php.html":[6,0,1,131], -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[6,0,1,131,0], -"vote_8php.html":[6,0,1,132], -"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[6,0,1,132,2], -"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[6,0,1,132,0], -"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[6,0,1,132,1], -"wall__attach_8php.html":[6,0,1,133], -"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[6,0,1,133,0], -"wall__upload_8php.html":[6,0,1,134], -"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[6,0,1,134,0], -"webfinger_8php.html":[6,0,1,135], -"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[6,0,1,135,0], -"webpages_8php.html":[6,0,1,136], -"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[6,0,1,136,0], -"wfinger_8php.html":[6,0,1,137], -"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,137,0], +"view_8php.html":[6,0,1,128], +"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[6,0,1,128,0], +"viewconnections_8php.html":[6,0,1,129], +"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[6,0,1,129,1], +"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[6,0,1,129,0], +"viewsrc_8php.html":[6,0,1,130], +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[6,0,1,130,0], +"vote_8php.html":[6,0,1,131], +"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[6,0,1,131,2], +"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[6,0,1,131,0], +"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[6,0,1,131,1], +"wall__attach_8php.html":[6,0,1,132], +"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[6,0,1,132,0], +"wall__upload_8php.html":[6,0,1,133], +"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[6,0,1,133,0], +"webfinger_8php.html":[6,0,1,134], +"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[6,0,1,134,0], +"webpages_8php.html":[6,0,1,135], +"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[6,0,1,135,0], +"webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7":[6,0,1,135,1], +"wfinger_8php.html":[6,0,1,136], +"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[6,0,1,136,0], "widedarkness_8php.html":[6,0,3,1,0,2,10], "widgets_8php.html":[6,0,0,82], "widgets_8php.html#a08035db02ff6a23260146b4c64153422":[6,0,0,82,12], @@ -102,14 +138,14 @@ var NAVTREEINDEX9 = "widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[6,0,0,82,5], "widgets_8php.html#af919de8e7e2ba8192a65fadc72a2c8b5":[6,0,0,82,4], "widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[6,0,0,82,18], -"xchan_8php.html":[6,0,1,138], -"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,138,0], -"xrd_8php.html":[6,0,1,139], -"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[6,0,1,139,0], -"xref_8php.html":[6,0,1,140], -"xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,140,0], -"zfinger_8php.html":[6,0,1,141], -"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,141,0], +"xchan_8php.html":[6,0,1,137], +"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[6,0,1,137,0], +"xrd_8php.html":[6,0,1,138], +"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[6,0,1,138,0], +"xref_8php.html":[6,0,1,139], +"xref_8php.html#a9bee399213b8de8226b0d60834307473":[6,0,1,139,0], +"zfinger_8php.html":[6,0,1,140], +"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[6,0,1,140,0], "zot_8php.html":[6,0,0,83], "zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[6,0,0,83,15], "zot_8php.html#a084c581d534e7e3b759488b46602288f":[6,0,0,83,20], @@ -144,8 +180,8 @@ var NAVTREEINDEX9 = "zot_8php.html#ae26ce9f1ad74139193fb6319beac5fca":[6,0,0,83,21], "zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[6,0,0,83,24], "zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[6,0,0,83,26], -"zotfeed_8php.html":[6,0,1,142], -"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,142,0], -"zping_8php.html":[6,0,1,143], -"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[6,0,1,143,0] +"zotfeed_8php.html":[6,0,1,141], +"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[6,0,1,141,0], +"zping_8php.html":[6,0,1,142], +"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[6,0,1,142,0] }; diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html index bd92a66d0..379a93a75 100644 --- a/doc/html/permissions_8php.html +++ b/doc/html/permissions_8php.html @@ -277,7 +277,7 @@ Functions
      -

      Referenced by Conversation\add_thread(), advanced_profile(), api_statuses_home_timeline(), api_statuses_repeat(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_mkdir(), attach_store(), block_content(), chat_content(), chatsvc_init(), check_list_permissions(), common_content(), common_friends_visitor_widget(), contact_block(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_photo(), diaspora_post(), diaspora_reshare(), display_content(), editblock_content(), get_feed_for(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), item_post(), like_content(), local_dir_update(), p_init(), photo_init(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), poco_init(), post_activity_item(), post_post(), process_delivery(), process_mail_delivery(), profile_content(), profile_load(), profile_sidebar(), RedChannelList(), search_content(), Conversation\set_mode(), RedMatrix\RedDAV\RedBrowser\set_writeable(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), subthread_content(), tag_deliver(), tgroup_check(), update_birthdays(), viewconnections_content(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_tagcloud_wall(), z_readdir(), and zot_feed().

      +

      Referenced by Conversation\add_thread(), advanced_profile(), api_statuses_home_timeline(), api_statuses_repeat(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_mkdir(), attach_store(), block_content(), chat_content(), chatsvc_init(), check_list_permissions(), common_content(), common_friends_visitor_widget(), contact_block(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), RedMatrix\RedDAV\RedFile\delete(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_photo(), diaspora_post(), diaspora_reshare(), display_content(), editblock_content(), editlayout_content(), editwebpage_content(), get_feed_for(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getChildren(), item_post(), like_content(), local_dir_update(), p_init(), photo_init(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), poco_init(), post_activity_item(), post_post(), process_delivery(), process_mail_delivery(), profile_content(), profile_load(), profile_sidebar(), RedChannelList(), search_content(), Conversation\set_mode(), RedMatrix\RedDAV\RedBrowser\set_writeable(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), subthread_content(), tag_deliver(), tgroup_check(), update_birthdays(), viewconnections_content(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_item(), widget_photo_albums(), widget_tagcloud_wall(), z_readdir(), and zot_feed().

      diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html index 445b81280..ec2862d4c 100644 --- a/doc/html/php2po_8php.html +++ b/doc/html/php2po_8php.html @@ -168,7 +168,7 @@ Variables
      -

      Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), aes_encapsulate(), aes_unencapsulate(), app_render(), bb_sanitize_style(), build_sync_packet(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_poll_interval(), dirprofile_init(), dirsearch_content(), extra_query_args(), foofoo(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_plugin_info(), get_theme_info(), get_things(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), local_dir_update(), mail_post(), mood_content(), netgrowth_content(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), openid_content(), parse_app_description(), photos_albums_list(), po2php_run(), poco_init(), poke_content(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), profile_load(), requestdata(), role_selector(), settings_post(), sslify_init(), startup(), tt(), RedMatrix\RedDAV\RedBrowser\userReadableSize(), vote_post(), x(), xchan_fetch(), zfinger_init(), zot_build_packet(), and zot_refresh().

      +

      Referenced by App\__construct(), Template\_get_var(), Template\_replcb_for(), activity_sanitise(), aes_encapsulate(), aes_unencapsulate(), app_render(), bb_sanitize_style(), build_sync_packet(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_poll_interval(), directory_content(), dirsearch_content(), extra_query_args(), foofoo(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_plugin_info(), get_theme_info(), get_things(), guess_image_type(), import_directory_profile(), item_photo_menu(), item_store_update(), load_config(), load_pconfig(), load_xconfig(), local_dir_update(), mail_post(), mood_content(), netgrowth_content(), new_contact(), FKOAuthDataStore\new_request_token(), obj_verb_selector(), openid_content(), parse_app_description(), photos_albums_list(), po2php_run(), poco_init(), poke_content(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), profile_load(), requestdata(), role_selector(), settings_post(), sslify_init(), startup(), tt(), RedMatrix\RedDAV\RedBrowser\userReadableSize(), vote_post(), x(), xchan_fetch(), zfinger_init(), zot_build_packet(), and zot_refresh().

      @@ -182,7 +182,7 @@ Variables diff --git a/doc/html/php_2default_8php.html b/doc/html/php_2default_8php.html index 19e67f2d6..35a9b50f1 100644 --- a/doc/html/php_2default_8php.html +++ b/doc/html/php_2default_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('php_2default_8php.html','');}); - +

      Variables

       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       

      Variable Documentation

      @@ -121,7 +121,7 @@ Variables
      - +
      if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($pageif(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
      diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index 1557daf08..cb93f3a10 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -298,7 +298,7 @@ Functions
      -

      Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chat_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_unshare(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

      +

      Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chat_content(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_unshare(), dir_safe_mode(), dir_sort_links(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

      diff --git a/doc/html/redable_8php.html b/doc/html/redable_8php.html index 11a11e977..549b7af78 100644 --- a/doc/html/redable_8php.html +++ b/doc/html/redable_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('redable_8php.html','');}); - +

      Variables

       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       

      Variable Documentation

      @@ -121,7 +121,7 @@ Variables
      - +
      if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($pageif(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
      diff --git a/doc/html/reddav_8php.html b/doc/html/reddav_8php.html index ac5e204bb..4b92ec899 100644 --- a/doc/html/reddav_8php.html +++ b/doc/html/reddav_8php.html @@ -129,7 +129,7 @@ Functions

      some DAV related functions for RedMatrix.

      This file contains some functions which did not fit into one of the RedDAV classes.

      The extended SabreDAV classes you will find in the RedDAV namespace under includes/RedDAV/. The original SabreDAV classes you can find under vendor/sabre/dav/. We need to use SabreDAV 1.8.x for PHP5.3 compatibility. SabreDAV >= 2.0 requires PHP >= 5.4.

      -
      Todo:
      split up the classes into own files.
      +
      Todo:
      split up the classes into own files.

      http://opensource.org/licenses/mit-license.php The MIT License (MIT)

      Function Documentation

      @@ -148,7 +148,7 @@ Functions

      Returns an array with viewable channels.

      Get a list of RedDirectory objects with all the channels where the visitor has view_storage perms.

      -
      Todo:
      Is there any reason why this is not inside RedDirectory class? function name looks like a class name, should we rename it?
      +
      Todo:
      Is there any reason why this is not inside RedDirectory class? function name looks like a class name, should we rename it?
      Parameters
      @@ -187,7 +187,7 @@ Functions

      TODO what exactly does this function?

      Array with all RedDirectory and RedFile DAV items for the given path.

      -
      Todo:
      Is there any reason why this is not inside RedDirectory class? Seems only to be used there and we could simplify it a bit there. function name looks like a class name, should we rename it?
      +
      Todo:
      Is there any reason why this is not inside RedDirectory class? Seems only to be used there and we could simplify it a bit there. function name looks like a class name, should we rename it?
      Parameters
      RedBasicAuth&$auth
      diff --git a/doc/html/search/all_24.js b/doc/html/search/all_24.js index 364451b79..f01fe1c9d 100644 --- a/doc/html/search/all_24.js +++ b/doc/html/search/all_24.js @@ -13,8 +13,6 @@ var searchData= ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], ['_24bodyclass',['$bodyclass',['../theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php']]], ['_24browser',['$browser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24cached_5fprofile_5fimage',['$cached_profile_image',['../classApp.html#abe0e4fa91097f7a6588e1213a834121c',1,'App']]], - ['_24cached_5fprofile_5fpicdate',['$cached_profile_picdate',['../classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e',1,'App']]], ['_24called_5fapi',['$called_api',['../include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d',1,'api.php']]], ['_24category',['$category',['../classApp.html#a5cfc098c061b7d765add58fd2ca97445',1,'App']]], ['_24channel',['$channel',['../classApp.html#a050b0696118da47e8b30859ad1a2c149',1,'App\$channel()'],['../classItem.html#acc32426c0f465391be8a99ad810c7b8e',1,'Item\$channel()'],['../php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864',1,'$channel(): theme_init.php'],['../theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864',1,'$channel(): theme_init.php']]], @@ -35,11 +33,9 @@ var searchData= ['_24conversation',['$conversation',['../classItem.html#a007424e3e3171dcfb4312a02161da6cd',1,'Item']]], ['_24credentials',['$credentials',['../classRedmatrix_1_1Import_1_1Import.html#afd251e6e5a18516bac4d1a40435602f1',1,'Redmatrix::Import::Import']]], ['_24css_5fsources',['$css_sources',['../classApp.html#a6f55d087e1ff4710132c1b0863faa2ee',1,'App']]], - ['_24curl_5fcode',['$curl_code',['../classApp.html#a256360c9184fed6d7556e0bc0a835d7f',1,'App']]], - ['_24curl_5fheaders',['$curl_headers',['../classApp.html#af5007c42a693afd9c4899c243b2e1363',1,'App']]], ['_24d',['$d',['../classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38',1,'Template']]], ['_24data',['$data',['../classApp.html#a0ce85be198e46570366cb3344f3c55b8',1,'App\$data()'],['../classItem.html#aec24e233f9098f902b1e57e60dcb2019',1,'Item\$data()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a235700e2dfbe21dc41613d36e30e8acc',1,'RedMatrix\RedDAV\RedFile\$data()']]], - ['_24db',['$db',['../classApp.html#a330410a288f3393d53772f5e98f857ea',1,'App\$db()'],['../classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6',1,'dba_driver\$db()']]], + ['_24db',['$db',['../classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6',1,'dba_driver']]], ['_24debug',['$debug',['../classdba__driver.html#af48e2afeded5285766bf92e22123ed03',1,'dba_driver\$debug()'],['../classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a',1,'Template\$debug()']]], ['_24dir',['$dir',['../docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62',1,'docblox_errorchecker.php']]], ['_24directory_5ffallback_5fservers',['$DIRECTORY_FALLBACK_SERVERS',['../boot_8php.html#a107d53f96acf5319905a34b1870db09a',1,'boot.php']]], @@ -71,6 +67,7 @@ var searchData= ['_24install',['$install',['../classApp.html#a576ecb1c5b4a283221e6f2f0ec248251',1,'App']]], ['_24install_5fwizard_5fpass',['$install_wizard_pass',['../setup_8php.html#addb24714bc2542aa4f4215e98fe48432',1,'setup.php']]], ['_24interactive',['$interactive',['../classApp.html#a4c7cfc62d39508086cf300dc2e39c4df',1,'App']]], + ['_24is_5fsys',['$is_sys',['../classApp.html#a1f60d19d47021629faac7a0a6d917e94',1,'App']]], ['_24itemfloat',['$itemfloat',['../minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b',1,'minimalisticdarkness.php']]], ['_24itemlist',['$itemlist',['../classRedmatrix_1_1Import_1_1Import.html#a2f69f16ecb7de1fb1daffbc38e68c9f1',1,'Redmatrix::Import::Import']]], ['_24items',['$items',['../classRedmatrix_1_1Import_1_1Import.html#a31d73d48e1aa93319159c692d0197a3a',1,'Redmatrix::Import::Import']]], @@ -156,7 +153,6 @@ var searchData= ['_24videowidth',['$videowidth',['../classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8',1,'App']]], ['_24visiting',['$visiting',['../classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8',1,'Item']]], ['_24wall_5fto_5fwall',['$wall_to_wall',['../classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189',1,'Item']]], - ['_24widgetlist',['$widgetlist',['../classApp.html#a4833bee2eae4ad1691a04fa19e11a766',1,'App']]], ['_24widgets',['$widgets',['../classApp.html#aa5a87c46ab3fee21362c466bf78042ef',1,'App']]], ['_24width',['$width',['../classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1',1,'photo_driver\$width()'],['../minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57',1,'$width(): minimalisticdarkness.php']]], ['_24writable',['$writable',['../classConversation.html#ae81221251307e315f566a11f921ce0a9',1,'Conversation']]], diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js index a310a24fc..815f865f4 100644 --- a/doc/html/search/all_62.js +++ b/doc/html/search/all_62.js @@ -32,6 +32,7 @@ var searchData= ['block_5finit',['block_init',['../block_8php.html#a9b61c96044ed2a068f18c10370a78d5c',1,'block.php']]], ['blocks_2ephp',['blocks.php',['../blocks_8php.html',1,'']]], ['blocks_5fcontent',['blocks_content',['../blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12',1,'blocks.php']]], + ['blocks_5finit',['blocks_init',['../blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9',1,'blocks.php']]], ['blog_5finit',['blog_init',['../blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php'],['../blogga_2view_2theme_2blog_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php']]], ['blog_5finstall',['blog_install',['../blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae',1,'theme.php']]], ['blog_5funinstall',['blog_uninstall',['../blogga_2view_2theme_2blog_2theme_8php.html#a3e77dbe111f330c64a1ff6c741cd515c',1,'theme.php']]], diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js index 04912f004..115c8a876 100644 --- a/doc/html/search/all_63.js +++ b/doc/html/search/all_63.js @@ -74,7 +74,7 @@ var searchData= ['client_5fmode_5fload',['CLIENT_MODE_LOAD',['../boot_8php.html#af6f6f6f40139f12fc09ec47373b30919',1,'boot.php']]], ['client_5fmode_5fnormal',['CLIENT_MODE_NORMAL',['../boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731',1,'boot.php']]], ['client_5fmode_5fupdate',['CLIENT_MODE_UPDATE',['../boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77',1,'boot.php']]], - ['close',['close',['../classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975',1,'dba_driver\close()'],['../classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e',1,'dba_mysql\close()'],['../classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55',1,'dba_mysqli\close()']]], + ['close',['close',['../classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975',1,'dba_driver\close()'],['../classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e',1,'dba_mysql\close()'],['../classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55',1,'dba_mysqli\close()'],['../classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058',1,'dba_postgres\close()']]], ['cloud_2ephp',['cloud.php',['../cloud_8php.html',1,'']]], ['cloud_5finit',['cloud_init',['../cloud_8php.html#ad2e96e917852f27dedfc263d37e13756',1,'cloud.php']]], ['collect',['collect',['../classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d',1,'ProtoDriver\collect()'],['../classZotDriver.html#af65febb26031eb7f39871b9e2a539797',1,'ZotDriver\collect()']]], @@ -99,13 +99,14 @@ var searchData= ['common_5finit',['common_init',['../common_8php.html#aca62f113655809f41f49042ce9b123c2',1,'common.php']]], ['compare_5fpermissions',['compare_permissions',['../items_8php.html#a0790a4550b829e85504af548623002ca',1,'items.php']]], ['completeurl',['completeurl',['../parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a',1,'parse_url.php']]], + ['concat',['concat',['../classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4',1,'dba_driver\concat()'],['../classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa',1,'dba_postgres\concat()']]], ['config_2emd',['config.md',['../config_8md.html',1,'']]], ['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2apw_2php_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2blogga_2php_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html',1,'']]], ['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]], - ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()']]], + ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()'],['../classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e',1,'dba_postgres\connect()']]], ['connect_2ephp',['connect.php',['../connect_8php.html',1,'']]], ['connect_5fcontent',['connect_content',['../connect_8php.html#a489f0a66c660de6ec4d6917b27674f07',1,'connect.php']]], ['connect_5finit',['connect_init',['../connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36',1,'connect.php']]], diff --git a/doc/html/search/all_64.js b/doc/html/search/all_64.js index 5805f8a1c..27baec009 100644 --- a/doc/html/search/all_64.js +++ b/doc/html/search/all_64.js @@ -9,21 +9,34 @@ var searchData= ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], ['datetimesel',['datetimesel',['../datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3',1,'datetime.php']]], ['day_5ftranslate',['day_translate',['../text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63',1,'text.php']]], + ['db_5fconcat',['db_concat',['../dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee',1,'dba_driver.php']]], + ['db_5fgetfunc',['db_getfunc',['../dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67',1,'dba_driver.php']]], + ['db_5foptimizetable',['db_optimizetable',['../dba__driver_8php.html#a75098bf1d59ea57f7ebae657a369137e',1,'dba_driver.php']]], + ['db_5fquoteinterval',['db_quoteinterval',['../dba__driver_8php.html#acec84a8fb75d78daf657cbe5df74e25a',1,'dba_driver.php']]], ['db_5fupdate_2ephp',['db_update.php',['../db__update_8php.html',1,'']]], ['db_5fupdate_5fversion',['DB_UPDATE_VERSION',['../boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03',1,'boot.php']]], + ['db_5futcnow',['db_utcnow',['../dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645',1,'dba_driver.php']]], ['dba_5fdriver',['dba_driver',['../classdba__driver.html',1,'']]], ['dba_5fdriver_2ephp',['dba_driver.php',['../dba__driver_8php.html',1,'']]], - ['dba_5ffactory',['dba_factory',['../dba__driver_8php.html#ac10e60f6e5b95bcf67bd82cb88f37947',1,'dba_driver.php']]], + ['dba_5ffactory',['dba_factory',['../dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0',1,'dba_driver.php']]], ['dba_5fmysql',['dba_mysql',['../classdba__mysql.html',1,'']]], ['dba_5fmysql_2ephp',['dba_mysql.php',['../dba__mysql_8php.html',1,'']]], ['dba_5fmysqli',['dba_mysqli',['../classdba__mysqli.html',1,'']]], ['dba_5fmysqli_2ephp',['dba_mysqli.php',['../dba__mysqli_8php.html',1,'']]], + ['dba_5fpostgres',['dba_postgres',['../classdba__postgres.html',1,'']]], + ['dba_5fpostgres_2ephp',['dba_postgres.php',['../dba__postgres_8php.html',1,'']]], ['dba_5ftimer',['dba_timer',['../boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4',1,'boot.php']]], ['dbesc',['dbesc',['../dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e',1,'dba_driver.php']]], ['dbesc_5farray',['dbesc_array',['../dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4',1,'dba_driver.php']]], ['dbesc_5farray_5fcb',['dbesc_array_cb',['../dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930',1,'dba_driver.php']]], + ['dbesc_5fidentifier',['dbesc_identifier',['../dba__driver_8php.html#aa051799567690a124a3b865bf902f58a',1,'dba_driver.php']]], + ['dbescbin',['dbescbin',['../dba__driver_8php.html#a2a38996670c2936b5769270c49c57593',1,'dba_driver.php']]], + ['dbescdate',['dbescdate',['../dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78',1,'dba_driver.php']]], ['dbg',['dbg',['../classdba__driver.html#adcc1f8955120fec0708bce39202d0422',1,'dba_driver\dbg()'],['../dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb',1,'dbg(): dba_driver.php']]], ['dbq',['dbq',['../dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee',1,'dba_driver.php']]], + ['dbtype_5fmysql',['DBTYPE_MYSQL',['../boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f',1,'boot.php']]], + ['dbtype_5fpostgres',['DBTYPE_POSTGRES',['../boot_8php.html#a37ddabc112db443b4c67fbc0f708817e',1,'boot.php']]], + ['dbunescbin',['dbunescbin',['../dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e',1,'dba_driver.php']]], ['decode_5ftags',['decode_tags',['../items_8php.html#a56b2a4abcadfac71175cd50555528cc3',1,'items.php']]], ['default_2ephp',['default.php',['../php_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../theme_2blogga_2php_2default_8php.html',1,'']]], @@ -92,8 +105,8 @@ var searchData= ['dir_5fsort_5flinks',['dir_sort_links',['../dir__fns_8php.html#ae56881d69bb6f8e828c9e35454386774',1,'dir_fns.php']]], ['dir_5ftagadelic',['dir_tagadelic',['../taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332',1,'taxonomy.php']]], ['dir_5ftagblock',['dir_tagblock',['../taxonomy_8php.html#a599ee71dd3194c8127b00dabec77abc1',1,'taxonomy.php']]], - ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], ['directory_2ephp',['directory.php',['../include_2directory_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], ['directory_5fcontent',['directory_content',['../mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44',1,'directory.php']]], ['directory_5ffallback_5fmaster',['DIRECTORY_FALLBACK_MASTER',['../boot_8php.html#abedd940e664017c61b48c6efa31d0cb8',1,'boot.php']]], ['directory_5finit',['directory_init',['../mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf',1,'directory.php']]], @@ -103,8 +116,6 @@ var searchData= ['directory_5fmode_5fstandalone',['DIRECTORY_MODE_STANDALONE',['../boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8',1,'boot.php']]], ['directory_5frealm',['DIRECTORY_REALM',['../boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd',1,'boot.php']]], ['directory_5frun',['directory_run',['../include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0',1,'directory.php']]], - ['dirprofile_2ephp',['dirprofile.php',['../dirprofile_8php.html',1,'']]], - ['dirprofile_5finit',['dirprofile_init',['../dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052',1,'dirprofile.php']]], ['dirsearch_2ephp',['dirsearch.php',['../dirsearch_8php.html',1,'']]], ['dirsearch_5fcontent',['dirsearch_content',['../dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c',1,'dirsearch.php']]], ['dirsearch_5finit',['dirsearch_init',['../dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752',1,'dirsearch.php']]], diff --git a/doc/html/search/all_65.js b/doc/html/search/all_65.js index c8412e9e0..7efea7c31 100644 --- a/doc/html/search/all_65.js +++ b/doc/html/search/all_65.js @@ -2,12 +2,15 @@ var searchData= [ ['editblock_2ephp',['editblock.php',['../editblock_8php.html',1,'']]], ['editblock_5fcontent',['editblock_content',['../editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6',1,'editblock.php']]], + ['editblock_5finit',['editblock_init',['../editblock_8php.html#ab7806bb42ae5e93f0330d7bd179d4b3e',1,'editblock.php']]], ['editlayout_2ephp',['editlayout.php',['../editlayout_8php.html',1,'']]], ['editlayout_5fcontent',['editlayout_content',['../editlayout_8php.html#aa877e4157a26b099de904164181dd386',1,'editlayout.php']]], + ['editlayout_5finit',['editlayout_init',['../editlayout_8php.html#a97c1e93d9e75ad8cd2c2f9a7f77341a7',1,'editlayout.php']]], ['editpost_2ephp',['editpost.php',['../editpost_8php.html',1,'']]], ['editpost_5fcontent',['editpost_content',['../editpost_8php.html#a34011690864d122680c802e9e748ccfb',1,'editpost.php']]], ['editwebpage_2ephp',['editwebpage.php',['../editwebpage_8php.html',1,'']]], ['editwebpage_5fcontent',['editwebpage_content',['../editwebpage_8php.html#a375e945255fad79a71036528f7480650',1,'editwebpage.php']]], + ['editwebpage_5finit',['editwebpage_init',['../editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f',1,'editwebpage.php']]], ['else',['else',['../auth_8php.html#a6f60fb54f60cd36c2430d6615a7b4f3f',1,'else(): auth.php'],['../fpostit_8php.html#a501b5ca82f287509fc691c88524064c1',1,'else(): fpostit.php'],['../tpldebug_8php.html#afbc7aadb3f7ff1edf0aaaa326a42179c',1,'else(): tpldebug.php'],['../redbasic_2php_2style_8php.html#ab3afb90d611eca90819f597a2c0bb459',1,'else(): style.php']]], ['email_5fheader_5fencode',['email_header_encode',['../include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b',1,'network.php']]], ['email_5fsend',['email_send',['../include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0',1,'network.php']]], @@ -22,8 +25,10 @@ var searchData= ['enumerate_5fpermissions',['enumerate_permissions',['../items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67',1,'items.php']]], ['eol',['EOL',['../boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b',1,'boot.php']]], ['eot',['EOT',['../typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805',1,'typohelper.php']]], - ['escape',['escape',['../classdba__driver.html#afc95ffa103a3290581b537670cde5311',1,'dba_driver\escape()'],['../classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e',1,'dba_mysql\escape()'],['../classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64',1,'dba_mysqli\escape()']]], + ['escape',['escape',['../classdba__driver.html#afc95ffa103a3290581b537670cde5311',1,'dba_driver\escape()'],['../classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e',1,'dba_mysql\escape()'],['../classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64',1,'dba_mysqli\escape()'],['../classdba__postgres.html#a7108eaaae7cc2fb236212041afc9ac0f',1,'dba_postgres\escape()']]], + ['escape_5fidentifier',['escape_identifier',['../classdba__postgres.html#ab2e44e9f41d05e585afd873d18e8c127',1,'dba_postgres']]], ['escape_5ftags',['escape_tags',['../text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64',1,'text.php']]], + ['escapebin',['escapebin',['../classdba__driver.html#a7dbe8318587ff1694825042bf58f4fbd',1,'dba_driver\escapebin()'],['../classdba__postgres.html#a8d2c6d8c92fe6f074452876483dd17fc',1,'dba_postgres\escapebin()']]], ['ev_5fcompare',['ev_compare',['../event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850',1,'event.php']]], ['event_2ephp',['event.php',['../event_8php.html',1,'']]], ['event_5faddtocal',['event_addtocal',['../event_8php.html#ac9f206819186b65952ac1869f0da8c6e',1,'event.php']]], diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index 40d52a6c9..75b5d2797 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -49,6 +49,7 @@ var searchData= ['get_5fgroups',['get_groups',['../classApp.html#a4659785d13e4bac0bed50dbb1b0d4299',1,'App']]], ['get_5fhostname',['get_hostname',['../classApp.html#a622eace13f8fc9f4b5672a68e2bc4396',1,'App']]], ['get_5fid',['get_id',['../classItem.html#ac0f27e58532612f6e7a54c8a621b9b92',1,'Item']]], + ['get_5finstall_5fscript',['get_install_script',['../classdba__driver.html#a8d6a79d39d7eaee5aea4e952c4529d48',1,'dba_driver']]], ['get_5fintltext_5ftemplate',['get_intltext_template',['../classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118',1,'FriendicaSmartyEngine\get_intltext_template()'],['../plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295',1,'get_intltext_template(): plugin.php']]], ['get_5fitem',['get_item',['../classRedmatrix_1_1Import_1_1Import.html#ae705dd1deb245b1d06baa73062330e43',1,'Redmatrix::Import::Import']]], ['get_5fitem_5fchildren',['get_item_children',['../conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67',1,'conversation.php']]], @@ -65,6 +66,7 @@ var searchData= ['get_5fmood_5fverbs',['get_mood_verbs',['../text_8php.html#a736db13a966b8abaf8c9198faa35911a',1,'text.php']]], ['get_5fmy_5faddress',['get_my_address',['../identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2',1,'identity.php']]], ['get_5fmy_5furl',['get_my_url',['../identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec',1,'identity.php']]], + ['get_5fnull_5fdate',['get_null_date',['../classdba__driver.html#a65a5c7b355ab5529a43049e160006426',1,'dba_driver']]], ['get_5fobserver',['get_observer',['../classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2',1,'App\get_observer()'],['../classConversation.html#ae3d4190142e12b57051f11f2911f77a0',1,'Conversation\get_observer()']]], ['get_5fobserver_5fhash',['get_observer_hash',['../boot_8php.html#a623e49c79943f3e7bdb770d021683cf7',1,'boot.php']]], ['get_5fonline_5fstatus',['get_online_status',['../identity_8php.html#a332df795f684788002f5a6424abacfd7',1,'identity.php']]], diff --git a/doc/html/search/all_69.js b/doc/html/search/all_69.js index 94963daa8..082e86f72 100644 --- a/doc/html/search/all_69.js +++ b/doc/html/search/all_69.js @@ -32,6 +32,7 @@ var searchData= ['insert_5fhook',['insert_hook',['../plugin_8php.html#aeaebe63dcf6fa2794f363ba2bc0b2c6b',1,'plugin.php']]], ['install',['install',['../classdba__driver.html#a4ccb27243e62a8ca30dd8e1b8cc67746',1,'dba_driver']]], ['install_5fplugin',['install_plugin',['../plugin_8php.html#a482131013272a1d5d5c1b1469c6c55d5',1,'plugin.php']]], + ['install_5fscript',['INSTALL_SCRIPT',['../classdba__driver.html#a98d8523dcedda316085b4d4f856b6583',1,'dba_driver\INSTALL_SCRIPT()'],['../classdba__postgres.html#a7267f91c3f87f600b30d7560de62dfd7',1,'dba_postgres\INSTALL_SCRIPT()']]], ['invite_2ephp',['invite.php',['../invite_8php.html',1,'']]], ['invite_5fcontent',['invite_content',['../invite_8php.html#a244385b28cfd021d308715f01158bfd9',1,'invite.php']]], ['invite_5fpost',['invite_post',['../invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5',1,'invite.php']]], diff --git a/doc/html/search/all_6c.js b/doc/html/search/all_6c.js index 3c3de04df..d55d22589 100644 --- a/doc/html/search/all_6c.js +++ b/doc/html/search/all_6c.js @@ -9,6 +9,7 @@ var searchData= ['layout_5fselect',['layout_select',['../text_8php.html#a3999a0b3e22e440f280ee791ce34d384',1,'text.php']]], ['layouts_2ephp',['layouts.php',['../layouts_8php.html',1,'']]], ['layouts_5fcontent',['layouts_content',['../layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50',1,'layouts.php']]], + ['layouts_5finit',['layouts_init',['../layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa',1,'layouts.php']]], ['ldelim',['ldelim',['../namespacefriendica-to-smarty-tpl.html#a0b4cf73d1a8d201a28d269eeb62a5d5c',1,'friendica-to-smarty-tpl']]], ['legal_5fwebbie',['legal_webbie',['../text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728',1,'text.php']]], ['like_2ephp',['like.php',['../like_8php.html',1,'']]], diff --git a/doc/html/search/all_6e.js b/doc/html/search/all_6e.js index 1cd1e0dd5..f9de281e1 100644 --- a/doc/html/search/all_6e.js +++ b/doc/html/search/all_6e.js @@ -89,5 +89,5 @@ var searchData= ['notify_5fwall',['NOTIFY_WALL',['../boot_8php.html#a505410c7edc5f5bb5fa227b98359793e',1,'boot.php']]], ['notred_2ephp',['notred.php',['../notred_8php.html',1,'']]], ['nuke_5fsession',['nuke_session',['../auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a',1,'auth.php']]], - ['null_5fdate',['NULL_DATE',['../boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c',1,'boot.php']]] + ['null_5fdate',['NULL_DATE',['../classdba__driver.html#afce39394c010ea589d99a21579b2c31e',1,'dba_driver\NULL_DATE()'],['../classdba__postgres.html#aeb404a85974d6c5df30c21650888000b',1,'dba_postgres\NULL_DATE()']]] ]; diff --git a/doc/html/search/all_6f.js b/doc/html/search/all_6f.js index 65f262de1..dfad733d0 100644 --- a/doc/html/search/all_6f.js +++ b/doc/html/search/all_6f.js @@ -30,6 +30,7 @@ var searchData= ['openid_5fcontent',['openid_content',['../openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43',1,'openid.php']]], ['opensearch_2ephp',['opensearch.php',['../opensearch_8php.html',1,'']]], ['opensearch_5finit',['opensearch_init',['../opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9',1,'opensearch.php']]], + ['optimize_5ftable',['optimize_table',['../classdba__driver.html#a77e59dcbeab30ca6000131d2e9ad4092',1,'dba_driver\optimize_table()'],['../classdba__postgres.html#a3de1ac375e98886dfc38fd0066e88f90',1,'dba_postgres\optimize_table()']]], ['orient',['orient',['../classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d',1,'photo_driver']]], ['os_5fmkdir',['os_mkdir',['../boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c',1,'boot.php']]], ['outf',['outf',['../namespacefriendica-to-smarty-tpl.html#a87182a9bab47640428bd0b2b9946bef9',1,'friendica-to-smarty-tpl']]], diff --git a/doc/html/search/all_71.js b/doc/html/search/all_71.js index c1c1f6ba7..be0700f6d 100644 --- a/doc/html/search/all_71.js +++ b/doc/html/search/all_71.js @@ -1,9 +1,10 @@ var searchData= [ - ['q',['q',['../classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555',1,'dba_driver\q()'],['../classdba__mysql.html#ac3fd60c278f400907322dac578754a99',1,'dba_mysql\q()'],['../classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec',1,'dba_mysqli\q()'],['../dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba_driver.php']]], + ['q',['q',['../classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555',1,'dba_driver\q()'],['../classdba__mysql.html#ac3fd60c278f400907322dac578754a99',1,'dba_mysql\q()'],['../classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec',1,'dba_mysqli\q()'],['../classdba__postgres.html#a70352880231fba0b859f82cd5b290a9a',1,'dba_postgres\q()'],['../dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba_driver.php']]], ['qp',['qp',['../text_8php.html#afc998d2796a6b2a08e96f7cc061e7221',1,'text.php']]], ['queue_2ephp',['queue.php',['../queue_8php.html',1,'']]], ['queue_5ffn_2ephp',['queue_fn.php',['../queue__fn_8php.html',1,'']]], ['queue_5frun',['queue_run',['../queue_8php.html#af8c93de86d866c3200174c8450a0f341',1,'queue.php']]], + ['quote_5finterval',['quote_interval',['../classdba__driver.html#ac9127e9c55fcc93bcfbb323b9b99b9d9',1,'dba_driver\quote_interval()'],['../classdba__postgres.html#a56f926f218155c88807e0e06f6817a72',1,'dba_postgres\quote_interval()']]], ['quotelevel',['quotelevel',['../html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0',1,'html2plain.php']]] ]; diff --git a/doc/html/search/all_75.js b/doc/html/search/all_75.js index 8ed7368d2..15e56d3ec 100644 --- a/doc/html/search/all_75.js +++ b/doc/html/search/all_75.js @@ -5,6 +5,7 @@ var searchData= ['unamp',['unamp',['../text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7',1,'text.php']]], ['undo_5fpost_5ftagging',['undo_post_tagging',['../text_8php.html#a740ad03e00459039a2c0992246c4e727',1,'text.php']]], ['unescape_5funderscores_5fin_5flinks',['unescape_underscores_in_links',['../bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747',1,'bb2diaspora.php']]], + ['unescapebin',['unescapebin',['../classdba__driver.html#ab43184239e1d6eb00a98319f4a3df155',1,'dba_driver\unescapebin()'],['../classdba__postgres.html#a677f850211975c9ab89602c67e2dcad9',1,'dba_postgres\unescapebin()']]], ['uninstall_5fplugin',['uninstall_plugin',['../plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76',1,'plugin.php']]], ['unload_5fplugin',['unload_plugin',['../plugin_8php.html#a90538627db68605aeb6db17a8ead6523',1,'plugin.php']]], ['unobscure',['unobscure',['../text_8php.html#a8264348059abd1d4d5bb521323d3b19a',1,'text.php']]], @@ -45,5 +46,7 @@ var searchData= ['user_5fdeny',['user_deny',['../account_8php.html#ac1653efba62493b9d87513e1b6c04c83',1,'account.php']]], ['user_5fremove',['user_remove',['../Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15',1,'Contact.php']]], ['userreadablesize',['userReadableSize',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd',1,'RedMatrix::RedDAV::RedBrowser']]], + ['utc_5fnow',['UTC_NOW',['../classdba__driver.html#aa3325d982d4ee5d1114fd7e02a4356e8',1,'dba_driver\UTC_NOW()'],['../classdba__postgres.html#ace80a204e34b20b9907650399cce02a3',1,'dba_postgres\UTC_NOW()']]], + ['utcnow',['utcnow',['../classdba__driver.html#ad700712879719bee23752b8f424d97d0',1,'dba_driver']]], ['util',['util',['../namespaceutil.html',1,'']]] ]; diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index 621b0aed7..897083582 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -9,6 +9,7 @@ var searchData= ['webfinger_5frfc7033',['webfinger_rfc7033',['../include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a',1,'network.php']]], ['webpages_2ephp',['webpages.php',['../webpages_8php.html',1,'']]], ['webpages_5fcontent',['webpages_content',['../webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d',1,'webpages.php']]], + ['webpages_5finit',['webpages_init',['../webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7',1,'webpages.php']]], ['wfinger_2ephp',['wfinger.php',['../wfinger_8php.html',1,'']]], ['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]], ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], diff --git a/doc/html/search/all_78.js b/doc/html/search/all_78.js index 12730655a..11483478c 100644 --- a/doc/html/search/all_78.js +++ b/doc/html/search/all_78.js @@ -1,6 +1,6 @@ var searchData= [ - ['x',['x',['../boot_8php.html#a01353c9abebc3544ea080ac161729632',1,'boot.php']]], + ['x',['x',['../boot_8php.html#ae97836b0547953be182a2334c9c91d3c',1,'boot.php']]], ['xchan_2ephp',['xchan.php',['../xchan_8php.html',1,'']]], ['xchan_5fcontent',['xchan_content',['../xchan_8php.html#a9853348bf1a35c644460221ba75edc2d',1,'xchan.php']]], ['xchan_5ffetch',['xchan_fetch',['../hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea',1,'hubloc.php']]], @@ -9,6 +9,7 @@ var searchData= ['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]], ['xchan_5fflags_5fnormal',['XCHAN_FLAGS_NORMAL',['../boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6',1,'boot.php']]], ['xchan_5fflags_5forphan',['XCHAN_FLAGS_ORPHAN',['../boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f',1,'boot.php']]], + ['xchan_5fflags_5fpubforum',['XCHAN_FLAGS_PUBFORUM',['../boot_8php.html#a0209e605028a5bb492683951ab30d49d',1,'boot.php']]], ['xchan_5fflags_5fselfcensored',['XCHAN_FLAGS_SELFCENSORED',['../boot_8php.html#a5a681a672e007cdc22b43345d71f07c6',1,'boot.php']]], ['xchan_5fflags_5fsystem',['XCHAN_FLAGS_SYSTEM',['../boot_8php.html#afef254290febac854c85fc698d9483a6',1,'boot.php']]], ['xchan_5fmail_5fquery',['xchan_mail_query',['../text_8php.html#a543447c5ed766535221e2d9636b379ee',1,'text.php']]], diff --git a/doc/html/search/classes_64.js b/doc/html/search/classes_64.js index c52174855..439607209 100644 --- a/doc/html/search/classes_64.js +++ b/doc/html/search/classes_64.js @@ -2,5 +2,6 @@ var searchData= [ ['dba_5fdriver',['dba_driver',['../classdba__driver.html',1,'']]], ['dba_5fmysql',['dba_mysql',['../classdba__mysql.html',1,'']]], - ['dba_5fmysqli',['dba_mysqli',['../classdba__mysqli.html',1,'']]] + ['dba_5fmysqli',['dba_mysqli',['../classdba__mysqli.html',1,'']]], + ['dba_5fpostgres',['dba_postgres',['../classdba__postgres.html',1,'']]] ]; diff --git a/doc/html/search/files_64.js b/doc/html/search/files_64.js index 9f149a278..56d04b982 100644 --- a/doc/html/search/files_64.js +++ b/doc/html/search/files_64.js @@ -9,6 +9,7 @@ var searchData= ['dba_5fdriver_2ephp',['dba_driver.php',['../dba__driver_8php.html',1,'']]], ['dba_5fmysql_2ephp',['dba_mysql.php',['../dba__mysql_8php.html',1,'']]], ['dba_5fmysqli_2ephp',['dba_mysqli.php',['../dba__mysqli_8php.html',1,'']]], + ['dba_5fpostgres_2ephp',['dba_postgres.php',['../dba__postgres_8php.html',1,'']]], ['default_2ephp',['default.php',['../theme_2blogga_2view_2theme_2blog_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../php_2default_8php.html',1,'']]], ['default_2ephp',['default.php',['../theme_2blogga_2php_2default_8php.html',1,'']]], @@ -18,9 +19,8 @@ var searchData= ['diaspora_2ephp',['diaspora.php',['../diaspora_8php.html',1,'']]], ['dimport_2ephp',['dimport.php',['../dimport_8php.html',1,'']]], ['dir_5ffns_2ephp',['dir_fns.php',['../dir__fns_8php.html',1,'']]], - ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], ['directory_2ephp',['directory.php',['../include_2directory_8php.html',1,'']]], - ['dirprofile_2ephp',['dirprofile.php',['../dirprofile_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], ['dirsearch_2ephp',['dirsearch.php',['../dirsearch_8php.html',1,'']]], ['display_2ephp',['display.php',['../display_8php.html',1,'']]], ['docblox_5ferrorchecker_2ephp',['docblox_errorchecker.php',['../docblox__errorchecker_8php.html',1,'']]] diff --git a/doc/html/search/functions_62.js b/doc/html/search/functions_62.js index 34fc83be3..a3a830a4d 100644 --- a/doc/html/search/functions_62.js +++ b/doc/html/search/functions_62.js @@ -26,6 +26,7 @@ var searchData= ['block_5fcontent',['block_content',['../block_8php.html#a8a82a470acdfbc7a8e749509caeeea45',1,'block.php']]], ['block_5finit',['block_init',['../block_8php.html#a9b61c96044ed2a068f18c10370a78d5c',1,'block.php']]], ['blocks_5fcontent',['blocks_content',['../blocks_8php.html#a2531a8fd51db3cecb2eb20c002c66e12',1,'blocks.php']]], + ['blocks_5finit',['blocks_init',['../blocks_8php.html#aebe88302181883d2b17d6e98a1aaebe9',1,'blocks.php']]], ['blog_5finit',['blog_init',['../blogga_2php_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php'],['../blogga_2view_2theme_2blog_2theme_8php.html#aa55c1cb1f05087b5002ecb633b550b1b',1,'blog_init(&$a): theme.php']]], ['blog_5finstall',['blog_install',['../blogga_2view_2theme_2blog_2theme_8php.html#aae58cc837fe56473d9f3370abfe533ae',1,'theme.php']]], ['blog_5funinstall',['blog_uninstall',['../blogga_2view_2theme_2blog_2theme_8php.html#a3e77dbe111f330c64a1ff6c741cd515c',1,'theme.php']]], diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js index 7b5abcc2f..6a5e70b0b 100644 --- a/doc/html/search/functions_63.js +++ b/doc/html/search/functions_63.js @@ -60,7 +60,7 @@ var searchData= ['cleardiv',['cleardiv',['../text_8php.html#afe18627c4983ee5f7c940a0992818cd5',1,'text.php']]], ['cli_5fstartup',['cli_startup',['../cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b',1,'cli_startup.php']]], ['cli_5fsuggest_5frun',['cli_suggest_run',['../cli__suggest_8php.html#a8f3a60fc96f4bec7d3837c4efc7725f2',1,'cli_suggest.php']]], - ['close',['close',['../classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975',1,'dba_driver\close()'],['../classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e',1,'dba_mysql\close()'],['../classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55',1,'dba_mysqli\close()']]], + ['close',['close',['../classdba__driver.html#a5afa54172f3c837df61643f8f5b2c975',1,'dba_driver\close()'],['../classdba__mysql.html#a850586714ef897bd25f643c89b4ef76e',1,'dba_mysql\close()'],['../classdba__mysqli.html#acb38f2c851187ad632ecfab30fdfab55',1,'dba_mysqli\close()'],['../classdba__postgres.html#a731d8648b41b8a126f6b99bdd5414058',1,'dba_postgres\close()']]], ['cloud_5finit',['cloud_init',['../cloud_8php.html#ad2e96e917852f27dedfc263d37e13756',1,'cloud.php']]], ['collect',['collect',['../classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d',1,'ProtoDriver\collect()'],['../classZotDriver.html#af65febb26031eb7f39871b9e2a539797',1,'ZotDriver\collect()']]], ['collect_5fprivate',['collect_private',['../classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b',1,'ProtoDriver\collect_private()'],['../classZotDriver.html#a2e15ff09772f0608203dad1c98299394',1,'ZotDriver\collect_private()']]], @@ -82,7 +82,8 @@ var searchData= ['common_5finit',['common_init',['../common_8php.html#aca62f113655809f41f49042ce9b123c2',1,'common.php']]], ['compare_5fpermissions',['compare_permissions',['../items_8php.html#a0790a4550b829e85504af548623002ca',1,'items.php']]], ['completeurl',['completeurl',['../parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a',1,'parse_url.php']]], - ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()']]], + ['concat',['concat',['../classdba__driver.html#ab9982f38a02f008b127a0f3ccc1e99f4',1,'dba_driver\concat()'],['../classdba__postgres.html#a7ea3f24ad260c1e21588f8b5af595caa',1,'dba_postgres\concat()']]], + ['connect',['connect',['../classdba__driver.html#ae533e62a240a793f17aef5ab4ef10edc',1,'dba_driver\connect()'],['../classdba__mysql.html#a1887338627ce0e28786839363014bd0b',1,'dba_mysql\connect()'],['../classdba__mysqli.html#add062bd93961e5f0194d94820e9a51b1',1,'dba_mysqli\connect()'],['../classdba__postgres.html#ab36244320f5b71dba92d9318ccf3f34e',1,'dba_postgres\connect()']]], ['connect_5fcontent',['connect_content',['../connect_8php.html#a489f0a66c660de6ec4d6917b27674f07',1,'connect.php']]], ['connect_5finit',['connect_init',['../connect_8php.html#ad46a38f32fd7a3d324b1fa26373efa36',1,'connect.php']]], ['connect_5fpost',['connect_post',['../connect_8php.html#a417ec27afe33f21a929667a665e32ee2',1,'connect.php']]], diff --git a/doc/html/search/functions_64.js b/doc/html/search/functions_64.js index 1c6e9fc31..a331c9ee7 100644 --- a/doc/html/search/functions_64.js +++ b/doc/html/search/functions_64.js @@ -4,13 +4,22 @@ var searchData= ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], ['datetimesel',['datetimesel',['../datetime_8php.html#a72218e5ee21876484934bacbb6bd9ba3',1,'datetime.php']]], ['day_5ftranslate',['day_translate',['../text_8php.html#a63fb21c0bed2fc72eef2c1471ac42b63',1,'text.php']]], - ['dba_5ffactory',['dba_factory',['../dba__driver_8php.html#ac10e60f6e5b95bcf67bd82cb88f37947',1,'dba_driver.php']]], + ['db_5fconcat',['db_concat',['../dba__driver_8php.html#a7c1b98a710ead27382c958ad3216c4ee',1,'dba_driver.php']]], + ['db_5fgetfunc',['db_getfunc',['../dba__driver_8php.html#a2994daa03b1c23229a27e39bcab75e67',1,'dba_driver.php']]], + ['db_5foptimizetable',['db_optimizetable',['../dba__driver_8php.html#a75098bf1d59ea57f7ebae657a369137e',1,'dba_driver.php']]], + ['db_5fquoteinterval',['db_quoteinterval',['../dba__driver_8php.html#acec84a8fb75d78daf657cbe5df74e25a',1,'dba_driver.php']]], + ['db_5futcnow',['db_utcnow',['../dba__driver_8php.html#a30e9a643be804e905f5614a3279d2645',1,'dba_driver.php']]], + ['dba_5ffactory',['dba_factory',['../dba__driver_8php.html#a5df8499634c47b30191f34069d7b98c0',1,'dba_driver.php']]], ['dba_5ftimer',['dba_timer',['../boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4',1,'boot.php']]], ['dbesc',['dbesc',['../dba__driver_8php.html#ab222aa1dbf9ea93b320f82028739127e',1,'dba_driver.php']]], ['dbesc_5farray',['dbesc_array',['../dba__driver_8php.html#a65b83462bd26968106aebd43f16540e4',1,'dba_driver.php']]], ['dbesc_5farray_5fcb',['dbesc_array_cb',['../dba__driver_8php.html#af531546fac5f0836a8557a4f6dfee930',1,'dba_driver.php']]], + ['dbesc_5fidentifier',['dbesc_identifier',['../dba__driver_8php.html#aa051799567690a124a3b865bf902f58a',1,'dba_driver.php']]], + ['dbescbin',['dbescbin',['../dba__driver_8php.html#a2a38996670c2936b5769270c49c57593',1,'dba_driver.php']]], + ['dbescdate',['dbescdate',['../dba__driver_8php.html#a2c8a72ec73f39b17a167c90737693f78',1,'dba_driver.php']]], ['dbg',['dbg',['../classdba__driver.html#adcc1f8955120fec0708bce39202d0422',1,'dba_driver\dbg()'],['../dba__driver_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb',1,'dbg(): dba_driver.php']]], ['dbq',['dbq',['../dba__driver_8php.html#aa377074e70981e8c4e82ca0accd068ee',1,'dba_driver.php']]], + ['dbunescbin',['dbunescbin',['../dba__driver_8php.html#afaaa1a7eff9c1b65b3b8c464ae37640e',1,'dba_driver.php']]], ['decode_5ftags',['decode_tags',['../items_8php.html#a56b2a4abcadfac71175cd50555528cc3',1,'items.php']]], ['del_5fconfig',['del_config',['../include_2config_8php.html#a549910227348003efc3c05c9105c42da',1,'config.php']]], ['del_5fpconfig',['del_pconfig',['../include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941',1,'config.php']]], @@ -72,7 +81,6 @@ var searchData= ['directory_5fcontent',['directory_content',['../mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44',1,'directory.php']]], ['directory_5finit',['directory_init',['../mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf',1,'directory.php']]], ['directory_5frun',['directory_run',['../include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0',1,'directory.php']]], - ['dirprofile_5finit',['dirprofile_init',['../dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052',1,'dirprofile.php']]], ['dirsearch_5fcontent',['dirsearch_content',['../dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c',1,'dirsearch.php']]], ['dirsearch_5finit',['dirsearch_init',['../dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752',1,'dirsearch.php']]], ['discover',['discover',['../classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337',1,'ProtoDriver\discover()'],['../classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514',1,'ZotDriver\discover()']]], diff --git a/doc/html/search/functions_65.js b/doc/html/search/functions_65.js index fdeeb2099..e912fd337 100644 --- a/doc/html/search/functions_65.js +++ b/doc/html/search/functions_65.js @@ -1,9 +1,12 @@ var searchData= [ ['editblock_5fcontent',['editblock_content',['../editblock_8php.html#abbe8f55de06967bc8d79d620509a49e6',1,'editblock.php']]], + ['editblock_5finit',['editblock_init',['../editblock_8php.html#ab7806bb42ae5e93f0330d7bd179d4b3e',1,'editblock.php']]], ['editlayout_5fcontent',['editlayout_content',['../editlayout_8php.html#aa877e4157a26b099de904164181dd386',1,'editlayout.php']]], + ['editlayout_5finit',['editlayout_init',['../editlayout_8php.html#a97c1e93d9e75ad8cd2c2f9a7f77341a7',1,'editlayout.php']]], ['editpost_5fcontent',['editpost_content',['../editpost_8php.html#a34011690864d122680c802e9e748ccfb',1,'editpost.php']]], ['editwebpage_5fcontent',['editwebpage_content',['../editwebpage_8php.html#a375e945255fad79a71036528f7480650',1,'editwebpage.php']]], + ['editwebpage_5finit',['editwebpage_init',['../editwebpage_8php.html#a94109f9c796fbe92508bf9574e35d19f',1,'editwebpage.php']]], ['email_5fheader_5fencode',['email_header_encode',['../include_2network_8php.html#a469b9bd700269cd07d954f1a16c5899b',1,'network.php']]], ['email_5fsend',['email_send',['../include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0',1,'network.php']]], ['encode_5fitem',['encode_item',['../items_8php.html#a56b0f5d2cb36eb8f4bfca84813884f86',1,'items.php']]], @@ -13,8 +16,10 @@ var searchData= ['encode_5fmail',['encode_mail',['../items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7',1,'items.php']]], ['encode_5frel_5flinks',['encode_rel_links',['../items_8php.html#aa723c0571e314a1853a24c5854b4f54f',1,'items.php']]], ['enumerate_5fpermissions',['enumerate_permissions',['../items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67',1,'items.php']]], - ['escape',['escape',['../classdba__driver.html#afc95ffa103a3290581b537670cde5311',1,'dba_driver\escape()'],['../classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e',1,'dba_mysql\escape()'],['../classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64',1,'dba_mysqli\escape()']]], + ['escape',['escape',['../classdba__driver.html#afc95ffa103a3290581b537670cde5311',1,'dba_driver\escape()'],['../classdba__mysql.html#a99a7691ea6cb1300031fb6549379066e',1,'dba_mysql\escape()'],['../classdba__mysqli.html#a27d6a748af7f80028801306e7ea33f64',1,'dba_mysqli\escape()'],['../classdba__postgres.html#a7108eaaae7cc2fb236212041afc9ac0f',1,'dba_postgres\escape()']]], + ['escape_5fidentifier',['escape_identifier',['../classdba__postgres.html#ab2e44e9f41d05e585afd873d18e8c127',1,'dba_postgres']]], ['escape_5ftags',['escape_tags',['../text_8php.html#aa5148a0dfea2a1ca64c3d52f10aa2d64',1,'text.php']]], + ['escapebin',['escapebin',['../classdba__driver.html#a7dbe8318587ff1694825042bf58f4fbd',1,'dba_driver\escapebin()'],['../classdba__postgres.html#a8d2c6d8c92fe6f074452876483dd17fc',1,'dba_postgres\escapebin()']]], ['ev_5fcompare',['ev_compare',['../event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850',1,'event.php']]], ['event_5faddtocal',['event_addtocal',['../event_8php.html#ac9f206819186b65952ac1869f0da8c6e',1,'event.php']]], ['event_5fstore_5fevent',['event_store_event',['../event_8php.html#af5ac41e7ea3f7131088fe6333fd2846c',1,'event.php']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index 835416938..fb3c90c50 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -49,6 +49,7 @@ var searchData= ['get_5fgroups',['get_groups',['../classApp.html#a4659785d13e4bac0bed50dbb1b0d4299',1,'App']]], ['get_5fhostname',['get_hostname',['../classApp.html#a622eace13f8fc9f4b5672a68e2bc4396',1,'App']]], ['get_5fid',['get_id',['../classItem.html#ac0f27e58532612f6e7a54c8a621b9b92',1,'Item']]], + ['get_5finstall_5fscript',['get_install_script',['../classdba__driver.html#a8d6a79d39d7eaee5aea4e952c4529d48',1,'dba_driver']]], ['get_5fintltext_5ftemplate',['get_intltext_template',['../classFriendicaSmartyEngine.html#a35ec0ee828c36640ea25296bcb84a118',1,'FriendicaSmartyEngine\get_intltext_template()'],['../plugin_8php.html#acb63c27d07f6d7dffe95f98a6cef1295',1,'get_intltext_template(): plugin.php']]], ['get_5fitem',['get_item',['../classRedmatrix_1_1Import_1_1Import.html#ae705dd1deb245b1d06baa73062330e43',1,'Redmatrix::Import::Import']]], ['get_5fitem_5fchildren',['get_item_children',['../conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67',1,'conversation.php']]], @@ -65,6 +66,7 @@ var searchData= ['get_5fmood_5fverbs',['get_mood_verbs',['../text_8php.html#a736db13a966b8abaf8c9198faa35911a',1,'text.php']]], ['get_5fmy_5faddress',['get_my_address',['../identity_8php.html#a490972c02fdb638c52ec0e012a30bfd2',1,'identity.php']]], ['get_5fmy_5furl',['get_my_url',['../identity_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec',1,'identity.php']]], + ['get_5fnull_5fdate',['get_null_date',['../classdba__driver.html#a65a5c7b355ab5529a43049e160006426',1,'dba_driver']]], ['get_5fobserver',['get_observer',['../classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2',1,'App\get_observer()'],['../classConversation.html#ae3d4190142e12b57051f11f2911f77a0',1,'Conversation\get_observer()']]], ['get_5fobserver_5fhash',['get_observer_hash',['../boot_8php.html#a623e49c79943f3e7bdb770d021683cf7',1,'boot.php']]], ['get_5fonline_5fstatus',['get_online_status',['../identity_8php.html#a332df795f684788002f5a6424abacfd7',1,'identity.php']]], diff --git a/doc/html/search/functions_6c.js b/doc/html/search/functions_6c.js index bae096081..15d34398b 100644 --- a/doc/html/search/functions_6c.js +++ b/doc/html/search/functions_6c.js @@ -4,6 +4,7 @@ var searchData= ['lang_5fselector',['lang_selector',['../text_8php.html#a71f6952243d3fe1c5a8154f78027e29c',1,'text.php']]], ['layout_5fselect',['layout_select',['../text_8php.html#a3999a0b3e22e440f280ee791ce34d384',1,'text.php']]], ['layouts_5fcontent',['layouts_content',['../layouts_8php.html#a6e0193759ad9eef76d3df2db24237b50',1,'layouts.php']]], + ['layouts_5finit',['layouts_init',['../layouts_8php.html#a39c8e9f72641c684c8b689bd91a642fa',1,'layouts.php']]], ['legal_5fwebbie',['legal_webbie',['../text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728',1,'text.php']]], ['like_5fcontent',['like_content',['../like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538',1,'like.php']]], ['like_5fpuller',['like_puller',['../conversation_8php.html#afe5b2f38d8b803edb0d7ec5fa2868db0',1,'conversation.php']]], diff --git a/doc/html/search/functions_6f.js b/doc/html/search/functions_6f.js index 4d843de13..6e1766c1d 100644 --- a/doc/html/search/functions_6f.js +++ b/doc/html/search/functions_6f.js @@ -20,6 +20,7 @@ var searchData= ['online_5finit',['online_init',['../online_8php.html#a80e107c84eb722b0ca11d0413b96f9f7',1,'online.php']]], ['openid_5fcontent',['openid_content',['../openid_8php.html#a9a13827dbcf61ae4e45f0b6b33a88f43',1,'openid.php']]], ['opensearch_5finit',['opensearch_init',['../opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9',1,'opensearch.php']]], + ['optimize_5ftable',['optimize_table',['../classdba__driver.html#a77e59dcbeab30ca6000131d2e9ad4092',1,'dba_driver\optimize_table()'],['../classdba__postgres.html#a3de1ac375e98886dfc38fd0066e88f90',1,'dba_postgres\optimize_table()']]], ['orient',['orient',['../classphoto__driver.html#a4de5bac8daea8f291a33c80788019d0d',1,'photo_driver']]], ['os_5fmkdir',['os_mkdir',['../boot_8php.html#a5fbebdf7a1c0ea8f904dbd9d78c2c06c',1,'boot.php']]] ]; diff --git a/doc/html/search/functions_71.js b/doc/html/search/functions_71.js index 11b357b31..ce23278cf 100644 --- a/doc/html/search/functions_71.js +++ b/doc/html/search/functions_71.js @@ -1,7 +1,8 @@ var searchData= [ - ['q',['q',['../classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555',1,'dba_driver\q()'],['../classdba__mysql.html#ac3fd60c278f400907322dac578754a99',1,'dba_mysql\q()'],['../classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec',1,'dba_mysqli\q()'],['../dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba_driver.php']]], + ['q',['q',['../classdba__driver.html#a558e738b88ae893cc5d79ffa3793d555',1,'dba_driver\q()'],['../classdba__mysql.html#ac3fd60c278f400907322dac578754a99',1,'dba_mysql\q()'],['../classdba__mysqli.html#a611c4de8d6d7512dffb83a38bb6701ec',1,'dba_mysqli\q()'],['../classdba__postgres.html#a70352880231fba0b859f82cd5b290a9a',1,'dba_postgres\q()'],['../dba__driver_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba_driver.php']]], ['qp',['qp',['../text_8php.html#afc998d2796a6b2a08e96f7cc061e7221',1,'text.php']]], ['queue_5frun',['queue_run',['../queue_8php.html#af8c93de86d866c3200174c8450a0f341',1,'queue.php']]], + ['quote_5finterval',['quote_interval',['../classdba__driver.html#ac9127e9c55fcc93bcfbb323b9b99b9d9',1,'dba_driver\quote_interval()'],['../classdba__postgres.html#a56f926f218155c88807e0e06f6817a72',1,'dba_postgres\quote_interval()']]], ['quotelevel',['quotelevel',['../html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0',1,'html2plain.php']]] ]; diff --git a/doc/html/search/functions_75.js b/doc/html/search/functions_75.js index ed15e2e95..52f05caea 100644 --- a/doc/html/search/functions_75.js +++ b/doc/html/search/functions_75.js @@ -4,6 +4,7 @@ var searchData= ['unamp',['unamp',['../text_8php.html#a29d6b804e368d3ef359ee295e96ed4c7',1,'text.php']]], ['undo_5fpost_5ftagging',['undo_post_tagging',['../text_8php.html#a740ad03e00459039a2c0992246c4e727',1,'text.php']]], ['unescape_5funderscores_5fin_5flinks',['unescape_underscores_in_links',['../bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747',1,'bb2diaspora.php']]], + ['unescapebin',['unescapebin',['../classdba__driver.html#ab43184239e1d6eb00a98319f4a3df155',1,'dba_driver\unescapebin()'],['../classdba__postgres.html#a677f850211975c9ab89602c67e2dcad9',1,'dba_postgres\unescapebin()']]], ['uninstall_5fplugin',['uninstall_plugin',['../plugin_8php.html#a093a9cb98f51e3643634bd8bc6ed6e76',1,'plugin.php']]], ['unload_5fplugin',['unload_plugin',['../plugin_8php.html#a90538627db68605aeb6db17a8ead6523',1,'plugin.php']]], ['unobscure',['unobscure',['../text_8php.html#a8264348059abd1d4d5bb521323d3b19a',1,'text.php']]], @@ -32,5 +33,6 @@ var searchData= ['user_5fapprove',['user_approve',['../account_8php.html#ad07be417ac7eda939768804106ddea3d',1,'account.php']]], ['user_5fdeny',['user_deny',['../account_8php.html#ac1653efba62493b9d87513e1b6c04c83',1,'account.php']]], ['user_5fremove',['user_remove',['../Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15',1,'Contact.php']]], - ['userreadablesize',['userReadableSize',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd',1,'RedMatrix::RedDAV::RedBrowser']]] + ['userreadablesize',['userReadableSize',['../classRedMatrix_1_1RedDAV_1_1RedBrowser.html#a242ce69a2fe5a5fdf9c2b8d3954accfd',1,'RedMatrix::RedDAV::RedBrowser']]], + ['utcnow',['utcnow',['../classdba__driver.html#ad700712879719bee23752b8f424d97d0',1,'dba_driver']]] ]; diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index 23a414c07..7d2339a7a 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -5,6 +5,7 @@ var searchData= ['webfinger_5fcontent',['webfinger_content',['../webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3',1,'webfinger.php']]], ['webfinger_5frfc7033',['webfinger_rfc7033',['../include_2network_8php.html#a3e6c751a51de33ad3563f0938296e78a',1,'network.php']]], ['webpages_5fcontent',['webpages_content',['../webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d',1,'webpages.php']]], + ['webpages_5finit',['webpages_init',['../webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7',1,'webpages.php']]], ['wfinger_5finit',['wfinger_init',['../wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3',1,'wfinger.php']]], ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], ['widget_5faffinity',['widget_affinity',['../widgets_8php.html#add9b24d3304e529a7975e96122315554',1,'widgets.php']]], diff --git a/doc/html/search/functions_78.js b/doc/html/search/functions_78.js index 78d52f21a..80f9b5f99 100644 --- a/doc/html/search/functions_78.js +++ b/doc/html/search/functions_78.js @@ -1,6 +1,6 @@ var searchData= [ - ['x',['x',['../boot_8php.html#a01353c9abebc3544ea080ac161729632',1,'boot.php']]], + ['x',['x',['../boot_8php.html#ae97836b0547953be182a2334c9c91d3c',1,'boot.php']]], ['xchan_5fcontent',['xchan_content',['../xchan_8php.html#a9853348bf1a35c644460221ba75edc2d',1,'xchan.php']]], ['xchan_5ffetch',['xchan_fetch',['../hubloc_8php.html#af1b476c936f96a93282b1d058e3d05ea',1,'hubloc.php']]], ['xchan_5fmail_5fquery',['xchan_mail_query',['../text_8php.html#a543447c5ed766535221e2d9636b379ee',1,'text.php']]], diff --git a/doc/html/search/variables_24.js b/doc/html/search/variables_24.js index 364451b79..f01fe1c9d 100644 --- a/doc/html/search/variables_24.js +++ b/doc/html/search/variables_24.js @@ -13,8 +13,6 @@ var searchData= ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], ['_24bodyclass',['$bodyclass',['../theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php'],['../theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a',1,'$bodyclass(): default.php']]], ['_24browser',['$browser',['../classRedMatrix_1_1RedDAV_1_1RedBasicAuth.html#a167ae032bd2ad8e6caa2e1e1a6f1b5d3',1,'RedMatrix::RedDAV::RedBasicAuth']]], - ['_24cached_5fprofile_5fimage',['$cached_profile_image',['../classApp.html#abe0e4fa91097f7a6588e1213a834121c',1,'App']]], - ['_24cached_5fprofile_5fpicdate',['$cached_profile_picdate',['../classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e',1,'App']]], ['_24called_5fapi',['$called_api',['../include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d',1,'api.php']]], ['_24category',['$category',['../classApp.html#a5cfc098c061b7d765add58fd2ca97445',1,'App']]], ['_24channel',['$channel',['../classApp.html#a050b0696118da47e8b30859ad1a2c149',1,'App\$channel()'],['../classItem.html#acc32426c0f465391be8a99ad810c7b8e',1,'Item\$channel()'],['../php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864',1,'$channel(): theme_init.php'],['../theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864',1,'$channel(): theme_init.php']]], @@ -35,11 +33,9 @@ var searchData= ['_24conversation',['$conversation',['../classItem.html#a007424e3e3171dcfb4312a02161da6cd',1,'Item']]], ['_24credentials',['$credentials',['../classRedmatrix_1_1Import_1_1Import.html#afd251e6e5a18516bac4d1a40435602f1',1,'Redmatrix::Import::Import']]], ['_24css_5fsources',['$css_sources',['../classApp.html#a6f55d087e1ff4710132c1b0863faa2ee',1,'App']]], - ['_24curl_5fcode',['$curl_code',['../classApp.html#a256360c9184fed6d7556e0bc0a835d7f',1,'App']]], - ['_24curl_5fheaders',['$curl_headers',['../classApp.html#af5007c42a693afd9c4899c243b2e1363',1,'App']]], ['_24d',['$d',['../classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38',1,'Template']]], ['_24data',['$data',['../classApp.html#a0ce85be198e46570366cb3344f3c55b8',1,'App\$data()'],['../classItem.html#aec24e233f9098f902b1e57e60dcb2019',1,'Item\$data()'],['../classRedMatrix_1_1RedDAV_1_1RedFile.html#a235700e2dfbe21dc41613d36e30e8acc',1,'RedMatrix\RedDAV\RedFile\$data()']]], - ['_24db',['$db',['../classApp.html#a330410a288f3393d53772f5e98f857ea',1,'App\$db()'],['../classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6',1,'dba_driver\$db()']]], + ['_24db',['$db',['../classdba__driver.html#a3033b5f1c2716b52202faeaae2592fe6',1,'dba_driver']]], ['_24debug',['$debug',['../classdba__driver.html#af48e2afeded5285766bf92e22123ed03',1,'dba_driver\$debug()'],['../classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a',1,'Template\$debug()']]], ['_24dir',['$dir',['../docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62',1,'docblox_errorchecker.php']]], ['_24directory_5ffallback_5fservers',['$DIRECTORY_FALLBACK_SERVERS',['../boot_8php.html#a107d53f96acf5319905a34b1870db09a',1,'boot.php']]], @@ -71,6 +67,7 @@ var searchData= ['_24install',['$install',['../classApp.html#a576ecb1c5b4a283221e6f2f0ec248251',1,'App']]], ['_24install_5fwizard_5fpass',['$install_wizard_pass',['../setup_8php.html#addb24714bc2542aa4f4215e98fe48432',1,'setup.php']]], ['_24interactive',['$interactive',['../classApp.html#a4c7cfc62d39508086cf300dc2e39c4df',1,'App']]], + ['_24is_5fsys',['$is_sys',['../classApp.html#a1f60d19d47021629faac7a0a6d917e94',1,'App']]], ['_24itemfloat',['$itemfloat',['../minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b',1,'minimalisticdarkness.php']]], ['_24itemlist',['$itemlist',['../classRedmatrix_1_1Import_1_1Import.html#a2f69f16ecb7de1fb1daffbc38e68c9f1',1,'Redmatrix::Import::Import']]], ['_24items',['$items',['../classRedmatrix_1_1Import_1_1Import.html#a31d73d48e1aa93319159c692d0197a3a',1,'Redmatrix::Import::Import']]], @@ -156,7 +153,6 @@ var searchData= ['_24videowidth',['$videowidth',['../classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8',1,'App']]], ['_24visiting',['$visiting',['../classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8',1,'Item']]], ['_24wall_5fto_5fwall',['$wall_to_wall',['../classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189',1,'Item']]], - ['_24widgetlist',['$widgetlist',['../classApp.html#a4833bee2eae4ad1691a04fa19e11a766',1,'App']]], ['_24widgets',['$widgets',['../classApp.html#aa5a87c46ab3fee21362c466bf78042ef',1,'App']]], ['_24width',['$width',['../classphoto__driver.html#a3e4215890f4a4894bf3799a7d2e0c0b1',1,'photo_driver\$width()'],['../minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57',1,'$width(): minimalisticdarkness.php']]], ['_24writable',['$writable',['../classConversation.html#ae81221251307e315f566a11f921ce0a9',1,'Conversation']]], diff --git a/doc/html/search/variables_64.js b/doc/html/search/variables_64.js index ea1a85e2a..172029abf 100644 --- a/doc/html/search/variables_64.js +++ b/doc/html/search/variables_64.js @@ -1,6 +1,8 @@ var searchData= [ ['db_5fupdate_5fversion',['DB_UPDATE_VERSION',['../boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03',1,'boot.php']]], + ['dbtype_5fmysql',['DBTYPE_MYSQL',['../boot_8php.html#a8c9a11c47394244cbe18cd75b9726d5f',1,'boot.php']]], + ['dbtype_5fpostgres',['DBTYPE_POSTGRES',['../boot_8php.html#a37ddabc112db443b4c67fbc0f708817e',1,'boot.php']]], ['default_5fdb_5fengine',['DEFAULT_DB_ENGINE',['../boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d',1,'boot.php']]], ['directory_5ffallback_5fmaster',['DIRECTORY_FALLBACK_MASTER',['../boot_8php.html#abedd940e664017c61b48c6efa31d0cb8',1,'boot.php']]], ['directory_5fmode_5fnormal',['DIRECTORY_MODE_NORMAL',['../boot_8php.html#ab7d65a7e7417825a4db62906bb600729',1,'boot.php']]], diff --git a/doc/html/search/variables_69.js b/doc/html/search/variables_69.js index 5b64986c8..fb77c49eb 100644 --- a/doc/html/search/variables_69.js +++ b/doc/html/search/variables_69.js @@ -1,6 +1,7 @@ var searchData= [ ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): default.php'],['../full_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): full.php'],['../redable_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): redable.php'],['../apw_2php_2style_8php.html#a2f71e817b8fac88ce7f0ec5c0fb88b8d',1,'if(): style.php'],['../theme_2mytheme_2php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a',1,'if(): default.php']]], + ['install_5fscript',['INSTALL_SCRIPT',['../classdba__driver.html#a98d8523dcedda316085b4d4f856b6583',1,'dba_driver\INSTALL_SCRIPT()'],['../classdba__postgres.html#a7267f91c3f87f600b30d7560de62dfd7',1,'dba_postgres\INSTALL_SCRIPT()']]], ['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]], ['item_5fbug',['ITEM_BUG',['../boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34',1,'boot.php']]], ['item_5fbuildblock',['ITEM_BUILDBLOCK',['../boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf',1,'boot.php']]], diff --git a/doc/html/search/variables_6e.js b/doc/html/search/variables_6e.js index 303b5c11f..0045afbae 100644 --- a/doc/html/search/variables_6e.js +++ b/doc/html/search/variables_6e.js @@ -43,5 +43,5 @@ var searchData= ['notify_5ftagself',['NOTIFY_TAGSELF',['../boot_8php.html#ab724491497ab2618b23a01d5da60aec0',1,'boot.php']]], ['notify_5ftagshare',['NOTIFY_TAGSHARE',['../boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461',1,'boot.php']]], ['notify_5fwall',['NOTIFY_WALL',['../boot_8php.html#a505410c7edc5f5bb5fa227b98359793e',1,'boot.php']]], - ['null_5fdate',['NULL_DATE',['../boot_8php.html#a6cd1b4081630b2bf7be38836cd9f410c',1,'boot.php']]] + ['null_5fdate',['NULL_DATE',['../classdba__driver.html#afce39394c010ea589d99a21579b2c31e',1,'dba_driver\NULL_DATE()'],['../classdba__postgres.html#aeb404a85974d6c5df30c21650888000b',1,'dba_postgres\NULL_DATE()']]] ]; diff --git a/doc/html/search/variables_75.js b/doc/html/search/variables_75.js index 3ba76224d..0cf257ad6 100644 --- a/doc/html/search/variables_75.js +++ b/doc/html/search/variables_75.js @@ -4,5 +4,6 @@ var searchData= ['update_5fflags_5fdeleted',['UPDATE_FLAGS_DELETED',['../boot_8php.html#aea392cb26ed617f3a8cde648385b5df0',1,'boot.php']]], ['update_5fflags_5fforced',['UPDATE_FLAGS_FORCED',['../boot_8php.html#ab9dca53455cd157d3c6ba2bdecdbd22d',1,'boot.php']]], ['update_5fflags_5fupdated',['UPDATE_FLAGS_UPDATED',['../boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0',1,'boot.php']]], - ['update_5fsuccess',['UPDATE_SUCCESS',['../boot_8php.html#ac86615ddc0763a00f5311c90e991730c',1,'boot.php']]] + ['update_5fsuccess',['UPDATE_SUCCESS',['../boot_8php.html#ac86615ddc0763a00f5311c90e991730c',1,'boot.php']]], + ['utc_5fnow',['UTC_NOW',['../classdba__driver.html#aa3325d982d4ee5d1114fd7e02a4356e8',1,'dba_driver\UTC_NOW()'],['../classdba__postgres.html#ace80a204e34b20b9907650399cce02a3',1,'dba_postgres\UTC_NOW()']]] ]; diff --git a/doc/html/search/variables_78.js b/doc/html/search/variables_78.js index 75be51da5..312bf2391 100644 --- a/doc/html/search/variables_78.js +++ b/doc/html/search/variables_78.js @@ -5,6 +5,7 @@ var searchData= ['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]], ['xchan_5fflags_5fnormal',['XCHAN_FLAGS_NORMAL',['../boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6',1,'boot.php']]], ['xchan_5fflags_5forphan',['XCHAN_FLAGS_ORPHAN',['../boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f',1,'boot.php']]], + ['xchan_5fflags_5fpubforum',['XCHAN_FLAGS_PUBFORUM',['../boot_8php.html#a0209e605028a5bb492683951ab30d49d',1,'boot.php']]], ['xchan_5fflags_5fselfcensored',['XCHAN_FLAGS_SELFCENSORED',['../boot_8php.html#a5a681a672e007cdc22b43345d71f07c6',1,'boot.php']]], ['xchan_5fflags_5fsystem',['XCHAN_FLAGS_SYSTEM',['../boot_8php.html#afef254290febac854c85fc698d9483a6',1,'boot.php']]] ]; diff --git a/doc/html/setup_8php.html b/doc/html/setup_8php.html index 3537830f1..8c57c8058 100644 --- a/doc/html/setup_8php.html +++ b/doc/html/setup_8php.html @@ -348,8 +348,6 @@ Variables
      string$filepath to a directory
      -

      Referenced by setup_post().

      -
      diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index 25a8ad3d5..2f7400c3b 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -181,7 +181,7 @@ Functions    searchbox ($s, $id='search-box', $url='/search', $save=false)   - valid_email ($x) + valid_email ($x)    linkify ($s)   @@ -197,7 +197,7 @@ Functions    smile_unshield ($m)   - preg_heart ($x) + preg_heart ($x)    day_translate ($s)   @@ -561,7 +561,7 @@ Variables @@ -700,7 +700,7 @@ Variables
      Returns
      string
      -

      Referenced by admin_page_logs(), app_store(), app_update(), appman_post(), bookmark_add(), chatsvc_post(), connect_post(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), mail_post(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), network_content(), notes_init(), pdledit_post(), poco_load(), post_activity_item(), printable(), profiles_post(), rbmark_content(), rbmark_post(), thing_init(), and z_input_filter().

      +

      Referenced by admin_page_logs(), app_store(), app_update(), appman_post(), bookmark_add(), chatsvc_post(), connect_post(), create_identity(), events_post(), fsuggest_post(), get_atom_elements(), item_post(), mail_post(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), network_content(), notes_init(), pdledit_post(), poco_load(), post_activity_item(), profiles_post(), rbmark_content(), rbmark_post(), thing_init(), and z_input_filter().

      @@ -1103,7 +1103,7 @@ Variables @@ -1311,7 +1311,7 @@ Variables

      Function: linkify

      Replace naked text hyperlink with HTML formatted hyperlink

      -

      Referenced by advanced_profile(), dirprofile_init(), and profile_activity().

      +

      Referenced by advanced_profile(), directory_content(), profile_activity(), and profile_sidebar().

      @@ -1339,7 +1339,7 @@ Variables
      -

      Referenced by account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_oauth_request_token(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), attach_mkdir(), avatar_img(), base64url_decode(), bb2diaspora_itembody(), bb2diaspora_itemwallwall(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), channel_remove(), chanview_content(), chat_post(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), cloud_init(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), datetime_convert(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), detect_language(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_decode(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_handle_from_contact(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), directory_content(), directory_run(), dirprofile_init(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), scale_external_images(), scrape_feed(), scrape_vcard(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), start_delivery_chain(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_feed_item(), update_imported_item(), update_queue_time(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), verify_email_address(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

      +

      Referenced by account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), aes_encapsulate(), allowed_public_recips(), api_call(), api_channel_stream(), api_export_basic(), api_favorites(), api_get_user(), api_login(), api_oauth_request_token(), api_statuses_destroy(), api_statuses_mediap(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), attach_mkdir(), avatar_img(), base64url_decode(), bb2diaspora_itembody(), bb2diaspora_itemwallwall(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), channel_remove(), chanview_content(), chat_post(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), cloud_init(), connedit_post(), consume_feed(), conversation(), create_account(), create_identity(), RedMatrix\RedDAV\RedDirectory\createDirectory(), RedMatrix\RedDAV\RedDirectory\createFile(), cronhooks_run(), datetime_convert(), RedMatrix\RedDAV\RedFile\delete(), delete_imported_item(), deliver_run(), detect_language(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_decode(), diaspora_dispatch(), diaspora_dispatch_public(), diaspora_handle_from_contact(), diaspora_is_blacklisted(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_process_outbound(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_status(), diaspora_share(), diaspora_signed_retraction(), diaspora_transmit(), dir_parse_query(), directory_content(), directory_run(), discover_by_url(), discover_by_webbie(), downgrade_accounts(), email_send(), encode_item(), expire_run(), externals_run(), feed_init(), fetch_lrdd_template(), fetch_xrd_links(), filer_content(), filerm_content(), find_diaspora_person_by_handle(), fix_private_photos(), fix_system_urls(), RedMatrix\RedDAV\RedFile\get(), get_atom_elements(), get_diaspora_key(), get_diaspora_reshare_xml(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedMatrix\RedDAV\RedDirectory\getChild(), RedMatrix\RedDAV\RedDirectory\getDir(), group_content(), guess_image_type(), http_status_exit(), hubloc_change_primary(), impel_init(), import_author_rss(), import_author_unknown(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedMatrix\RedDAV\RedDirectory\log(), RedMatrix\RedDAV\RedBasicAuth\log(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_token(), magic_init(), mail_post(), mail_store(), menu_edit(), mini_group_select(), mood_init(), FKOAuthDataStore\new_access_token(), new_contact(), new_keypair(), FKOAuthDataStore\new_request_token(), notes_init(), notification(), notifier_run(), old_webfinger(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), process_channel_sync_delivery(), process_delivery(), process_location_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_photo_set_profile_perms(), profile_sidebar(), profiles_content(), prune_hub_reinstalls(), public_recips(), RedMatrix\RedDAV\RedFile\put(), dba_mysql\q(), dba_mysqli\q(), dba_postgres\q(), queue_run(), rbmark_post(), receive_post(), red_item_new(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_obsolete_hublocs(), remove_queue_item(), scale_external_images(), scrape_feed(), scrape_vcard(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedMatrix\RedDAV\RedFile\setName(), RedMatrix\RedDAV\RedDirectory\setName(), settings_post(), start_delivery_chain(), store_diaspora_comment_sig(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), sync_locations(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_feed_item(), update_imported_item(), update_queue_time(), RedMatrix\RedDAV\RedBasicAuth\validateUserPass(), verify_email_address(), xml2array(), xml_status(), z_fetch_url(), z_post_url(), zfinger_init(), zid_init(), zot_build_packet(), zot_feed(), zot_fetch(), zot_finger(), zot_gethub(), zot_import(), zot_process_message_request(), zot_process_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

      @@ -1826,7 +1826,7 @@ Variables
      Returns
      string substituted string
      -

      Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chat_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_unshare(), dir_safe_mode(), dir_sort_links(), directory_content(), dirprofile_init(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

      +

      Referenced by achievements_content(), admin_content(), admin_page_channels(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_profs(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), app_render(), appman_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chat_content(), check_config(), check_php(), common_content(), common_friends_visitor_widget(), connect_content(), connections_content(), connedit_content(), construct_page(), contact_block(), conversation(), delegate_content(), design_tools(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_unshare(), dir_safe_mode(), dir_sort_links(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), fbrowser_content(), field_timezone(), fileas_widget(), filer_content(), filestorage_content(), findpeople_widget(), format_categories(), format_filer(), RedMatrix\RedDAV\RedBrowser\generateDirectoryIndex(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), RedMatrix\RedDAV\RedBrowser\htmlActionsPanel(), identity_selector(), import_content(), invite_content(), lang_selector(), layouts_content(), locs_content(), login(), lostpass_content(), lostpass_post(), mail_content(), manage_content(), match_content(), menu_content(), menu_render(), message_content(), micropro(), mini_group_select(), mitem_content(), mood_content(), nav(), network_content(), new_channel_content(), notification(), notifications_content(), notify_content(), oembed_format_object(), oexchange_init(), opensearch_init(), p_init(), pagelist_widget(), pdledit_content(), photos_album_widget(), photos_content(), poco_init(), poke_content(), poll_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeaccount_content(), removeme_content(), rmagic_content(), rpost_content(), search(), search_content(), searchbox(), send_reg_approval_email(), send_verification_email(), setup_content(), setup_post(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), user_allow(), vcard_from_xchan(), verify_email_address(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_appselect(), widget_archive(), widget_bookmarkedchats(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), widget_suggestions(), writepages_widget(), and xrd_init().

      diff --git a/doc/html/theme_2mytheme_2php_2default_8php.html b/doc/html/theme_2mytheme_2php_2default_8php.html index e3ebc868e..ea01d8615 100644 --- a/doc/html/theme_2mytheme_2php_2default_8php.html +++ b/doc/html/theme_2mytheme_2php_2default_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('theme_2mytheme_2php_2default_8php.html - +

      Variables

       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
       

      Variable Documentation

      @@ -121,7 +121,7 @@ Variables
      - +
      if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($pageif(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
      diff --git a/doc/html/todo.html b/doc/html/todo.html index 375fff1d9..f09357862 100644 --- a/doc/html/todo.html +++ b/doc/html/todo.html @@ -102,21 +102,23 @@ $(document).ready(function(){initNavTree('todo.html','');});
      -
      File config.php
      +
      File config.php
      There are a few places in the code (such as the admin panel) where boolean configurations need to be fixed as of 10/08/2011.
      -
      Member RedChannelList (&$auth)
      +
      Member get_custom_nav (&$a, $navname)
      +
      not fully implemented yet
      +
      Member RedChannelList (&$auth)
      Is there any reason why this is not inside RedDirectory class? function name looks like a class name, should we rename it?
      -
      Member RedCollectionData ($file, &$auth)
      +
      Member RedCollectionData ($file, &$auth)
      Is there any reason why this is not inside RedDirectory class? Seems only to be used there and we could simplify it a bit there. function name looks like a class name, should we rename it?
      -
      File reddav.php
      +
      File reddav.php
      split up the classes into own files.
      -
      Member RedMatrix::__construct (&$auth)
      +
      Member RedMatrix::__construct (&$auth)
      disable enablePost by default and only activate if permissions grant edit rights.
      -
      Member RedMatrix::set_writeable ()
      +
      Member RedMatrix::set_writeable ()
      Maybe this whole way of doing this can be solved with some $server->subscribeEvent().
      -
      Member RedMatrix::getDir ()
      +
      Member RedMatrix::getDir ()
      add description of what this function does.
      -
      Member RedMatrix::setName ($name)
      +
      Member RedMatrix::setName ($name)
      handle duplicate directory name
      diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 3d285d710..c9190a281 100644 --- a/doc/html/typo_8php.html +++ b/doc/html/typo_8php.html @@ -134,7 +134,7 @@ Variables
      -

      Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), app_name_compare(), appman_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), bookmarks_content(), bookmarks_init(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), cli_suggest_run(), cloud_init(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_clone(), connections_content(), connections_init(), connections_post(), connedit_clone(), connedit_content(), connedit_init(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_transmit(), diaspora_unshare(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_content(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_upload_post(), webpages_content(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

      +

      Referenced by FriendicaSmarty\__construct(), Item\__construct(), FriendicaSmartyEngine\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), abook_toggle_flag(), achievements_content(), acl_init(), admin_content(), admin_page_channels(), admin_page_channels_post(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_logs(), admin_page_logs_post(), admin_page_plugins(), admin_page_site(), admin_page_site_post(), admin_page_summary(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), advanced_profile(), allowed_email(), allowed_url(), alt_pager(), api_account_verify_credentials(), api_albums(), api_apply_template(), api_call(), api_content(), api_direct_messages_all(), api_direct_messages_box(), api_direct_messages_conversation(), api_direct_messages_inbox(), api_direct_messages_new(), api_direct_messages_sentbox(), api_favorites(), api_followers_ids(), api_format_as(), api_format_items(), api_friends_ids(), api_get_user(), api_item_get_user(), api_login(), api_photos(), api_post(), api_rss_extra(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_followers(), api_statuses_friends(), api_statuses_home_timeline(), api_statuses_mediap(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_update(), api_statuses_user_timeline(), api_statusnet_config(), api_users_show(), app_name_compare(), appman_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), block_content(), block_init(), blocks_content(), blocks_init(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), bookmarks_content(), bookmarks_init(), build_sync_packet(), cal(), call_hooks(), categories_widget(), channel_content(), channel_init(), channel_remove(), chanview_content(), chat_content(), chat_init(), chat_post(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), cli_suggest_run(), cloud_init(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), connect_content(), connect_init(), connect_post(), connections_clone(), connections_content(), connections_init(), connections_post(), connedit_clone(), connedit_content(), connedit_init(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_identity(), current_theme(), current_theme_url(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), deliver_run(), diaspora_asphoto(), diaspora_comment(), diaspora_conversation(), diaspora_like(), diaspora_message(), diaspora_msg_build(), diaspora_photo(), diaspora_post(), diaspora_profile(), diaspora_pubmsg_build(), diaspora_request(), diaspora_reshare(), diaspora_send_followup(), diaspora_send_images(), diaspora_send_mail(), diaspora_send_relay(), diaspora_send_retraction(), diaspora_send_status(), diaspora_share(), diaspora_transmit(), diaspora_unshare(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editblock_init(), editlayout_content(), editlayout_init(), editpost_content(), editwebpage_content(), editwebpage_init(), ev_compare(), event_store_item(), events_content(), events_post(), expand_acl(), expand_groups(), externals_run(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_private_photos(), follow_init(), format_event_diaspora(), fsuggest_content(), fsuggest_post(), BaseObject\get_app(), get_app(), get_best_language(), get_birthdays(), Item\get_comment_box(), get_config(), get_custom_nav(), get_events(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_pconfig(), get_plink(), Item\get_template_data(), get_theme_screenshot(), get_xconfig(), gprobe_run(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_init(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), hivenet_init(), home_content(), home_init(), hostxrd_init(), impel_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_developer(), is_site_admin(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), layouts_init(), like_content(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_pdl(), load_translation_table(), load_xconfig(), locs_content(), locs_post(), logger(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manual_config(), match_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_init(), mitem_post(), mood_init(), msearch_post(), mytheme_init(), nav(), nav_set_selected(), network_content(), network_init(), new_contact(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_init(), p_init(), page_content(), page_init(), paginate(), photo_init(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), pop_lang(), post_init(), preg_heart(), prepare_body(), probe_content(), proc_run(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_init(), push_lang(), queue_run(), randprof_init(), rbmark_content(), rbmark_post(), red_item_new(), redbasic_form(), register_content(), regmod_content(), regver_content(), relative_date(), removeaccount_content(), removeaccount_post(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), scrape_feed(), scrape_vcard(), search(), search_ac_init(), search_content(), search_init(), send_message(), service_class_allows(), service_class_fetch(), service_limits_content(), set_config(), Conversation\set_mode(), set_pconfig(), set_xconfig(), settings_init(), settings_post(), setup_content(), setup_post(), share_init(), siteinfo_content(), siteinfo_init(), smilies(), sources_post(), stumble_init(), subthread_content(), suckerberg_init(), suggest_content(), t(), tag_deliver(), tag_sort_length(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_content(), thing_init(), timezone_cmp(), toggle_mobile_init(), tt(), uexport_init(), update_channel_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), user_approve(), vcard_from_xchan(), viewconnections_content(), viewconnections_init(), viewsrc_content(), vote_content(), vote_init(), vote_post(), wall_upload_post(), webpages_content(), webpages_init(), wfinger_init(), what_next(), widget_archive(), widget_catcloud_wall(), widget_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_item(), widget_mailmenu(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), xrd_init(), z_fetch_url(), z_path(), z_root(), zfinger_init(), zid_init(), zotfeed_init(), and zping_content().

      diff --git a/doc/html/typohelper_8php.html b/doc/html/typohelper_8php.html index 8ff068709..775f1fde8 100644 --- a/doc/html/typohelper_8php.html +++ b/doc/html/typohelper_8php.html @@ -130,7 +130,7 @@ Variables Initial value:
      = <<< EOT
      error_reporting(E_ERROR | E_WARNING | E_PARSE )
      -

      Referenced by api_date(), check_php(), check_webbie(), dbesc(), dba_mysql\escape(), dba_mysqli\escape(), filter_insecure(), head_get_css(), head_get_js(), head_get_main_js(), item_store_update(), list_post_dates(), load_database(), photos_album_get_db_idstr(), photos_post(), posted_dates(), relative_date(), stream_perms_api_uids(), stream_perms_xchans(), thing_init(), and xmlify().

      +

      Referenced by api_date(), check_php(), check_webbie(), dba_mysql\escape(), dba_mysqli\escape(), dba_postgres\escape(), dba_postgres\escape_identifier(), dba_postgres\escapebin(), filter_insecure(), head_get_css(), head_get_js(), head_get_main_js(), item_store_update(), list_post_dates(), load_database(), photos_album_get_db_idstr(), photos_post(), posted_dates(), relative_date(), stream_perms_api_uids(), stream_perms_xchans(), thing_init(), dba_postgres\unescapebin(), and xmlify().

      diff --git a/doc/html/webpages_8php.html b/doc/html/webpages_8php.html index 303ce4718..f82e10ed4 100644 --- a/doc/html/webpages_8php.html +++ b/doc/html/webpages_8php.html @@ -112,6 +112,8 @@ $(document).ready(function(){initNavTree('webpages_8php.html','');}); + +

      Functions

       webpages_init (&$a)
       
       webpages_content (&$a)
       
      @@ -130,6 +132,22 @@ Functions
      +
      + + +
      +
      + + + + + + + + +
      webpages_init ($a)
      +
      +
      diff --git a/doc/html/webpages_8php.js b/doc/html/webpages_8php.js index 8e145305c..961f9a5e8 100644 --- a/doc/html/webpages_8php.js +++ b/doc/html/webpages_8php.js @@ -1,4 +1,5 @@ var webpages_8php = [ - [ "webpages_content", "webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d", null ] + [ "webpages_content", "webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d", null ], + [ "webpages_init", "webpages_8php.html#af9ad0b65eba79acead3fa32b43d888b7", null ] ]; \ No newline at end of file diff --git a/doc/html/zot_8php.html b/doc/html/zot_8php.html index d570d5a79..9d79e4f17 100644 --- a/doc/html/zot_8php.html +++ b/doc/html/zot_8php.html @@ -174,7 +174,7 @@ Functions    get_rpost_path ($observer)   - import_author_zot ($x) + import_author_zot ($x)    zot_process_message_request ($data)   -- cgit v1.2.3 From f299922df3fe1bdb55feca0e20ae3111ab3317b9 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 15 Nov 2014 14:03:41 -0800 Subject: minor changes to support forum mode --- include/ItemObject.php | 24 +- include/conversation.php | 4 +- mod/wall_upload.php | 4 - util/messages.po | 6614 +++++++++++++++++++++++----------------------- version.inc | 2 +- 5 files changed, 3322 insertions(+), 3326 deletions(-) diff --git a/include/ItemObject.php b/include/ItemObject.php index 90c036def..9e694b8ac 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -64,8 +64,6 @@ class Item extends BaseObject { public function get_template_data($alike, $dlike, $thread_level=1) { - $t1 = dba_timer(); - $result = array(); $a = $this->get_app(); @@ -228,15 +226,12 @@ class Item extends BaseObject { if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) $indent .= ' shiny'; - $t2 = dba_timer(); - localize_item($item); - $t3 = dba_timer(); - $body = prepare_body($item,true); - $t4 = dba_timer(); + $comment_count_txt = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); + $children = $this->get_children(); $tmp_item = array( 'template' => $this->get_template(), @@ -292,6 +287,8 @@ class Item extends BaseObject { 'drop' => $drop, 'multidrop' => ((feature_enabled($conv->get_profile_owner(),'multi_delete')) ? $multidrop : ''), // end toolbar buttons + 'comment_count' => $total_children, + 'comment_count_txt' => $comment_count_txt, 'like_count' => $like_count, 'like_list' => $like_list, 'like_list_part' => $like_list_part, @@ -311,15 +308,12 @@ class Item extends BaseObject { 'thread_level' => $thread_level ); - $t5 = dba_timer(); - $arr = array('item' => $item, 'output' => $tmp_item); call_hooks('display_item', $arr); $result = $arr['output']; $result['children'] = array(); - $children = $this->get_children(); $nb_children = count($children); if($nb_children > 0) { foreach($children as $child) { @@ -328,7 +322,7 @@ class Item extends BaseObject { // Collapse if(($nb_children > 2) || ($thread_level > 1)) { $result['children'][0]['comment_firstcollapsed'] = true; - $result['children'][0]['num_comments'] = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); + $result['children'][0]['num_comments'] = $comment_count_txt; $result['children'][0]['hide_text'] = t('[+] show all'); if($thread_level > 1) { $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true; @@ -350,14 +344,6 @@ class Item extends BaseObject { $result['flatten'] = true; $result['threaded'] = false; } - $t6 = dba_timer(); - -// profiler($t1,$t2,'t2'); -// profiler($t2,$t3,'t3'); -// profiler($t3,$t4,'t4'); -// profiler($t4,$t5,'t5'); -// profiler($t5,$t6,'t6'); -// profiler($t1,$t6,'item total'); return $result; } diff --git a/include/conversation.php b/include/conversation.php index c2258c20a..af8780549 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -853,8 +853,8 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ profiler($t3,$t4,'conversation template'); } - if($page_mode === 'preview') - logger('preview: ' . $o); +// if($page_mode === 'preview') +// logger('preview: ' . $o, LOGGER_DATA); return $o; diff --git a/mod/wall_upload.php b/mod/wall_upload.php index f83f4f7cf..97840a180 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -43,10 +43,6 @@ function wall_upload_post(&$a) { killme(); } - $m = $ret['body']; - - - if($using_api) return("\n\n" . $ret['body'] . "\n\n"); else diff --git a/util/messages.po b/util/messages.po index 892817b74..0ebff50f2 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-11-07.852\n" +"Project-Id-Version: 2014-11-14.859\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-07 00:04-0800\n" +"POT-Creation-Date: 2014-11-14 00:04-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,288 +17,25 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../include/dba/dba_driver.php:132 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:51 -#: ../../mod/photos.php:91 ../../mod/photos.php:652 +#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 +#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 #: ../../mod/profile_photo.php:423 msgid "Profile Photos" msgstr "" -#: ../../include/apps.php:126 -msgid "Site Admin" -msgstr "" - -#: ../../include/apps.php:127 ../../include/conversation.php:1572 -#: ../../include/nav.php:117 -msgid "Bookmarks" -msgstr "" - -#: ../../include/apps.php:128 -msgid "Address Book" -msgstr "" - -#: ../../include/apps.php:129 ../../include/nav.php:125 ../../boot.php:1513 -msgid "Login" -msgstr "" - -#: ../../include/apps.php:130 ../../include/nav.php:216 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "" - -#: ../../include/apps.php:131 ../../include/nav.php:190 -msgid "Matrix" -msgstr "" - -#: ../../include/apps.php:132 ../../include/widgets.php:548 -#: ../../include/nav.php:218 ../../mod/admin.php:953 ../../mod/admin.php:1158 -msgid "Settings" -msgstr "" - -#: ../../include/apps.php:133 ../../include/conversation.php:1546 -#: ../../include/RedDAV/RedBrowser.php:241 ../../include/nav.php:106 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "" - -#: ../../include/apps.php:134 ../../include/conversation.php:1583 -#: ../../include/nav.php:121 ../../mod/webpages.php:129 -msgid "Webpages" -msgstr "" - -#: ../../include/apps.php:135 ../../include/nav.php:193 -msgid "Channel Home" -msgstr "" - -#: ../../include/apps.php:136 ../../include/identity.php:1120 -#: ../../include/identity.php:1238 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - -#: ../../include/apps.php:137 ../../include/conversation.php:1537 -#: ../../include/nav.php:105 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "" - -#: ../../include/apps.php:138 ../../include/nav.php:212 -#: ../../mod/events.php:431 -msgid "Events" -msgstr "" - -#: ../../include/apps.php:139 ../../include/nav.php:176 -#: ../../mod/directory.php:226 -msgid "Directory" -msgstr "" - -#: ../../include/apps.php:140 ../../include/nav.php:168 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" -msgstr "" - -#: ../../include/apps.php:141 ../../include/nav.php:204 -msgid "Mail" -msgstr "" - -#: ../../include/apps.php:142 ../../mod/mood.php:131 -msgid "Mood" -msgstr "" - -#: ../../include/apps.php:143 ../../include/conversation.php:951 -msgid "Poke" -msgstr "" - -#: ../../include/apps.php:144 ../../include/nav.php:111 -msgid "Chat" -msgstr "" - -#: ../../include/apps.php:145 ../../include/text.php:822 -#: ../../include/text.php:834 ../../include/nav.php:173 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "" - -#: ../../include/apps.php:146 -msgid "Probe" -msgstr "" - -#: ../../include/apps.php:147 -msgid "Suggest" -msgstr "" - -#: ../../include/apps.php:148 -msgid "Random Channel" -msgstr "" - -#: ../../include/apps.php:149 -msgid "Invite" -msgstr "" - -#: ../../include/apps.php:150 -msgid "Features" -msgstr "" - -#: ../../include/apps.php:151 -msgid "Language" -msgstr "" - -#: ../../include/apps.php:152 -msgid "Post" -msgstr "" - -#: ../../include/apps.php:153 -msgid "Profile Photo" -msgstr "" - -#: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:575 -msgid "Update" -msgstr "" - -#: ../../include/apps.php:242 -msgid "Install" -msgstr "" - -#: ../../include/apps.php:247 -msgid "Purchase" -msgstr "" - -#: ../../include/apps.php:249 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:250 -#: ../../include/menu.php:42 ../../include/ItemObject.php:100 -#: ../../mod/settings.php:611 ../../mod/blocks.php:99 -#: ../../mod/connections.php:381 ../../mod/connections.php:394 -#: ../../mod/connections.php:413 ../../mod/webpages.php:131 -#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 -#: ../../mod/thing.php:233 ../../mod/layouts.php:121 ../../mod/menu.php:59 -msgid "Edit" -msgstr "" - -#: ../../include/apps.php:250 ../../include/conversation.php:638 -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/ItemObject.php:120 -#: ../../mod/photos.php:1066 ../../mod/settings.php:612 -#: ../../mod/connedit.php:476 ../../mod/group.php:176 ../../mod/admin.php:732 -#: ../../mod/admin.php:863 ../../mod/thing.php:234 -msgid "Delete" -msgstr "" - -#: ../../include/apps.php:331 ../../include/apps.php:382 -#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 -#: ../../mod/photos.php:711 ../../mod/photos.php:1128 -#: ../../mod/connedit.php:512 -msgid "Unknown" -msgstr "" - -#: ../../include/attach.php:116 ../../include/attach.php:163 -#: ../../include/attach.php:226 ../../include/attach.php:240 -#: ../../include/attach.php:280 ../../include/attach.php:294 -#: ../../include/attach.php:318 ../../include/attach.php:511 -#: ../../include/attach.php:584 ../../include/chat.php:116 -#: ../../include/items.php:4005 ../../include/photos.php:15 -#: ../../mod/mood.php:112 ../../mod/photos.php:68 ../../mod/mitem.php:73 -#: ../../mod/achievements.php:30 ../../mod/settings.php:526 -#: ../../mod/poke.php:128 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/authtest.php:13 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/blocks.php:29 -#: ../../mod/blocks.php:44 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:532 ../../mod/events.php:195 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:70 ../../mod/regmod.php:17 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:266 ../../mod/delegate.php:6 -#: ../../mod/webpages.php:40 ../../mod/bookmarks.php:46 -#: ../../mod/setup.php:203 ../../mod/editblock.php:34 ../../mod/pdledit.php:21 -#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/sources.php:66 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/fsuggest.php:78 -#: ../../mod/suggest.php:26 ../../mod/group.php:9 ../../mod/like.php:154 -#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:184 -#: ../../mod/item.php:192 ../../mod/item.php:964 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/locs.php:71 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/manage.php:6 -#: ../../mod/menu.php:44 ../../mod/message.php:16 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/appman.php:66 -#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -msgstr "" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:589 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:605 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:629 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:680 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:684 -msgid "database storage failed." -msgstr "" - -#: ../../include/conversation.php:120 ../../include/text.php:1743 -#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 +#: ../../include/conversation.php:120 ../../include/diaspora.php:1923 +#: ../../include/text.php:1747 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 msgid "photo" msgstr "" -#: ../../include/conversation.php:123 ../../include/text.php:1746 +#: ../../include/conversation.php:123 ../../include/text.php:1750 #: ../../mod/tagger.php:49 msgid "event" msgstr "" @@ -307,13 +44,13 @@ msgstr "" msgid "channel" msgstr "" -#: ../../include/conversation.php:148 ../../include/text.php:1749 -#: ../../include/diaspora.php:1923 ../../mod/subthread.php:72 +#: ../../include/conversation.php:148 ../../include/diaspora.php:1923 +#: ../../include/text.php:1753 ../../mod/subthread.php:72 #: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 msgid "status" msgstr "" -#: ../../include/conversation.php:150 ../../include/text.php:1751 +#: ../../include/conversation.php:150 ../../include/text.php:1755 #: ../../mod/tagger.php:55 msgid "comment" msgstr "" @@ -339,7 +76,7 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:901 +#: ../../include/conversation.php:243 ../../include/text.php:905 msgid "poked" msgstr "" @@ -353,6 +90,14 @@ msgstr "" msgid "Select" msgstr "" +#: ../../include/conversation.php:638 ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/apps.php:250 ../../include/ItemObject.php:120 +#: ../../mod/photos.php:1069 ../../mod/connedit.php:476 +#: ../../mod/thing.php:234 ../../mod/settings.php:612 ../../mod/group.php:176 +#: ../../mod/admin.php:730 ../../mod/admin.php:861 +msgid "Delete" +msgstr "" + #: ../../include/conversation.php:645 ../../include/ItemObject.php:89 msgid "Private Message" msgstr "" @@ -398,9 +143,9 @@ msgid "View in context" msgstr "" #: ../../include/conversation.php:719 ../../include/conversation.php:1153 -#: ../../include/ItemObject.php:310 ../../mod/photos.php:974 -#: ../../mod/editblock.php:120 ../../mod/editlayout.php:115 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:152 +#: ../../include/ItemObject.php:310 ../../mod/photos.php:977 +#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:183 #: ../../mod/mail.php:234 ../../mod/mail.php:349 msgid "Please wait" msgstr "" @@ -442,11 +187,10 @@ msgstr "" msgid "Matrix Activity" msgstr "" -#: ../../include/conversation.php:948 ../../include/identity.php:840 -#: ../../include/widgets.php:135 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../mod/directory.php:183 -#: ../../mod/dirprofile.php:164 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 +#: ../../include/conversation.php:948 ../../include/widgets.php:135 +#: ../../include/widgets.php:175 ../../include/Contact.php:107 +#: ../../include/identity.php:840 ../../mod/directory.php:224 +#: ../../mod/suggest.php:51 ../../mod/match.php:62 msgid "Connect" msgstr "" @@ -458,6 +202,17 @@ msgstr "" msgid "Send PM" msgstr "" +#: ../../include/conversation.php:951 ../../include/apps.php:143 +msgid "Poke" +msgstr "" + +#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../include/apps.php:331 ../../include/apps.php:382 +#: ../../mod/photos.php:713 ../../mod/photos.php:1131 +#: ../../mod/connedit.php:512 +msgid "Unknown" +msgstr "" + #: ../../include/conversation.php:1024 #, php-format msgid "%s likes this." @@ -538,20 +293,20 @@ msgid "Expires YYYY-MM-DD HH:MM" msgstr "" #: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 -#: ../../include/ItemObject.php:608 ../../mod/photos.php:994 -#: ../../mod/webpages.php:135 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:174 +#: ../../include/ItemObject.php:608 ../../mod/photos.php:997 +#: ../../mod/webpages.php:166 ../../mod/editblock.php:173 +#: ../../mod/editlayout.php:168 ../../mod/editpost.php:140 +#: ../../mod/editwebpage.php:205 msgid "Preview" msgstr "" -#: ../../include/conversation.php:1128 ../../mod/photos.php:973 -#: ../../mod/editblock.php:168 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:201 ../../mod/layouts.php:122 +#: ../../include/conversation.php:1128 ../../mod/photos.php:976 +#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 +#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 msgid "Share" msgstr "" -#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:139 +#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:170 msgid "Page link title" msgstr "" @@ -559,9 +314,9 @@ msgstr "" msgid "Post as" msgstr "" -#: ../../include/conversation.php:1134 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:231 ../../mod/mail.php:345 +#: ../../include/conversation.php:1134 ../../mod/editblock.php:144 +#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:231 ../../mod/mail.php:345 msgid "Upload photo" msgstr "" @@ -569,9 +324,9 @@ msgstr "" msgid "upload photo" msgstr "" -#: ../../include/conversation.php:1136 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:232 ../../mod/mail.php:346 +#: ../../include/conversation.php:1136 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:232 ../../mod/mail.php:346 msgid "Attach file" msgstr "" @@ -579,9 +334,9 @@ msgstr "" msgid "attach file" msgstr "" -#: ../../include/conversation.php:1138 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:233 ../../mod/mail.php:347 +#: ../../include/conversation.php:1138 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:233 ../../mod/mail.php:347 msgid "Insert web link" msgstr "" @@ -605,9 +360,9 @@ msgstr "" msgid "audio link" msgstr "" -#: ../../include/conversation.php:1144 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 +#: ../../include/conversation.php:1144 ../../mod/editblock.php:150 +#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 +#: ../../mod/editwebpage.php:181 msgid "Set your location" msgstr "" @@ -615,9 +370,9 @@ msgstr "" msgid "set location" msgstr "" -#: ../../include/conversation.php:1146 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 +#: ../../include/conversation.php:1146 ../../mod/editblock.php:151 +#: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 +#: ../../mod/editwebpage.php:182 msgid "Clear browser location" msgstr "" @@ -625,21 +380,21 @@ msgstr "" msgid "clear location" msgstr "" -#: ../../include/conversation.php:1149 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 +#: ../../include/conversation.php:1149 ../../mod/editblock.php:164 +#: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 +#: ../../mod/editwebpage.php:198 msgid "Set title" msgstr "" #: ../../include/conversation.php:1152 ../../mod/events.php:563 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:129 -#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:169 +#: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 +#: ../../mod/editpost.php:134 ../../mod/editwebpage.php:200 msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/conversation.php:1154 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 +#: ../../include/conversation.php:1154 ../../mod/editblock.php:153 +#: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 +#: ../../mod/editwebpage.php:184 msgid "Permission settings" msgstr "" @@ -647,21 +402,21 @@ msgstr "" msgid "permissions" msgstr "" -#: ../../include/conversation.php:1162 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 +#: ../../include/conversation.php:1162 ../../mod/editblock.php:161 +#: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 +#: ../../mod/editwebpage.php:193 msgid "Public post" msgstr "" -#: ../../include/conversation.php:1164 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 +#: ../../include/conversation.php:1164 ../../mod/editblock.php:168 +#: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:201 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/conversation.php:1177 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:179 ../../mod/mail.php:238 ../../mod/mail.php:352 +#: ../../include/conversation.php:1177 ../../mod/editblock.php:178 +#: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:238 ../../mod/mail.php:352 msgid "Set expiration date" msgstr "" @@ -675,9 +430,9 @@ msgstr "" msgid "OK" msgstr "" -#: ../../include/conversation.php:1182 ../../mod/settings.php:550 -#: ../../mod/settings.php:576 ../../mod/events.php:568 -#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 +#: ../../include/conversation.php:1182 ../../mod/events.php:568 +#: ../../mod/editpost.php:151 ../../mod/settings.php:550 +#: ../../mod/settings.php:576 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "" @@ -715,7 +470,7 @@ msgid "Posts that mention or involve you" msgstr "" #: ../../include/conversation.php:1458 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 +#: ../../mod/connections.php:224 ../../mod/menu.php:80 msgid "New" msgstr "" @@ -739,39 +494,60 @@ msgstr "" msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1516 ../../mod/admin.php:867 +#: ../../include/conversation.php:1520 ../../mod/admin.php:865 msgid "Channel" msgstr "" -#: ../../include/conversation.php:1519 +#: ../../include/conversation.php:1523 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1528 +#: ../../include/conversation.php:1532 msgid "About" msgstr "" -#: ../../include/conversation.php:1531 +#: ../../include/conversation.php:1535 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1540 ../../include/photos.php:340 +#: ../../include/conversation.php:1541 ../../include/nav.php:105 +#: ../../include/apps.php:137 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "" + +#: ../../include/conversation.php:1544 ../../include/photos.php:341 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1549 +#: ../../include/conversation.php:1550 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/nav.php:106 ../../include/apps.php:133 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "" + +#: ../../include/conversation.php:1553 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1559 ../../include/conversation.php:1562 +#: ../../include/conversation.php:1563 ../../include/conversation.php:1566 msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1575 +#: ../../include/conversation.php:1576 ../../include/nav.php:117 +#: ../../include/apps.php:127 +msgid "Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1579 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1586 +#: ../../include/conversation.php:1587 ../../include/nav.php:121 +#: ../../include/apps.php:134 ../../mod/webpages.php:160 +msgid "Webpages" +msgstr "" + +#: ../../include/conversation.php:1590 msgid "Manage Webpages" msgstr "" @@ -784,61 +560,135 @@ msgstr "" msgid "commented on %s's post" msgstr "" +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "" + +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "" + +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" +msgstr "" + #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:102 -#: ../../mod/webpages.php:134 ../../mod/layouts.php:125 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/RedDAV/RedBrowser.php:250 ../../include/menu.php:42 +#: ../../include/apps.php:249 ../../include/ItemObject.php:100 +#: ../../mod/blocks.php:132 ../../mod/connections.php:381 +#: ../../mod/connections.php:394 ../../mod/connections.php:413 +#: ../../mod/thing.php:233 ../../mod/webpages.php:162 +#: ../../mod/editblock.php:143 ../../mod/editlayout.php:139 +#: ../../mod/editpost.php:112 ../../mod/settings.php:611 +#: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 +#: ../../mod/menu.php:78 +msgid "Edit" +msgstr "" + +#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 +#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 msgid "View" msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:136 +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 msgid "Actions" msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:137 +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 msgid "Page Link" msgstr "" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:138 +#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 msgid "Title" msgstr "" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:139 +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 msgid "Created" msgstr "" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:140 +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 msgid "Edited" msgstr "" -#: ../../include/security.php:320 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: ../../include/chat.php:10 +msgid "Missing room name" msgstr "" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:463 -msgid "l F d, Y \\@ g:i A" +#: ../../include/chat.php:19 +msgid "Duplicate room name" msgstr "" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:469 -msgid "Starts:" +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." msgstr "" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 -msgid "Finishes:" +#: ../../include/chat.php:105 +msgid "Room not found." msgstr "" -#: ../../include/event.php:40 ../../include/bb2diaspora.php:485 -#: ../../include/identity.php:891 ../../mod/events.php:579 -#: ../../mod/directory.php:156 ../../mod/dirprofile.php:105 -msgid "Location:" +#: ../../include/chat.php:116 ../../include/items.php:4013 +#: ../../include/attach.php:116 ../../include/attach.php:163 +#: ../../include/attach.php:226 ../../include/attach.php:240 +#: ../../include/attach.php:280 ../../include/attach.php:294 +#: ../../include/attach.php:318 ../../include/attach.php:511 +#: ../../include/attach.php:584 ../../include/photos.php:15 +#: ../../mod/mood.php:112 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:550 ../../mod/setup.php:207 ../../mod/poke.php:128 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/authtest.php:13 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 +#: ../../mod/block.php:72 ../../mod/sources.php:66 ../../mod/blocks.php:67 +#: ../../mod/blocks.php:75 ../../mod/register.php:72 ../../mod/events.php:195 +#: ../../mod/channel.php:89 ../../mod/channel.php:193 +#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/regmod.php:17 ../../mod/network.php:12 ../../mod/common.php:35 +#: ../../mod/photos.php:68 ../../mod/connections.php:169 +#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/thing.php:247 +#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/webpages.php:67 +#: ../../mod/bookmarks.php:46 ../../mod/editblock.php:65 +#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:64 +#: ../../mod/editlayout.php:89 ../../mod/editpost.php:13 +#: ../../mod/settings.php:526 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 +#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/item.php:191 +#: ../../mod/item.php:199 ../../mod/item.php:971 ../../mod/like.php:154 +#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:71 +#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/menu.php:61 +#: ../../mod/message.php:16 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 +msgid "Permission denied." msgstr "" -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." +#: ../../include/chat.php:126 +msgid "Room is full" msgstr "" #: ../../include/oembed.php:171 @@ -849,280 +699,265 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "" - -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "" - -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "" - -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "" - -#: ../../include/permissions.php:17 -msgid "Can view my file storage" +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 +#: ../../include/taxonomy.php:230 +msgid "Categories" msgstr "" -#: ../../include/permissions.php:18 -msgid "Can view my webpages" +#: ../../include/widgets.php:86 ../../include/nav.php:171 +#: ../../mod/apps.php:33 +msgid "Apps" msgstr "" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" +#: ../../include/widgets.php:87 +msgid "System" msgstr "" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/widgets.php:90 +msgid "Create Personal App" msgstr "" -#: ../../include/permissions.php:23 -msgid "Can comment on or like my posts" +#: ../../include/widgets.php:91 +msgid "Edit Personal App" msgstr "" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" msgstr "" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" +#: ../../include/widgets.php:144 +msgid "See more..." msgstr "" -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/widgets.php:172 +msgid "Add New Connection" msgstr "" -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" +#: ../../include/widgets.php:191 +msgid "Notes" msgstr "" -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" +#: ../../include/widgets.php:193 ../../include/text.php:827 +#: ../../include/text.php:839 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 +#: ../../mod/filer.php:50 ../../mod/admin.php:1339 ../../mod/admin.php:1360 +msgid "Save" msgstr "" -#: ../../include/permissions.php:33 -msgid "Can source my public posts in derived channels" +#: ../../include/widgets.php:263 +msgid "Remove term" msgstr "" -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/widgets.php:272 ../../include/features.php:58 +msgid "Saved Searches" msgstr "" -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" +#: ../../include/widgets.php:273 ../../include/group.php:303 +msgid "add" msgstr "" -#: ../../include/permissions.php:35 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/widgets.php:303 ../../include/contact_widgets.php:57 +#: ../../include/features.php:72 +msgid "Saved Folders" msgstr "" -#: ../../include/permissions.php:785 -msgid "Social Networking" +#: ../../include/widgets.php:306 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" msgstr "" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -#: ../../include/permissions.php:790 -msgid "Mostly Public" +#: ../../include/widgets.php:352 +msgid "Archives" msgstr "" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -#: ../../include/permissions.php:790 -msgid "Restricted" +#: ../../include/widgets.php:428 +msgid "Refresh" msgstr "" -#: ../../include/permissions.php:786 ../../include/permissions.php:788 -msgid "Private" +#: ../../include/widgets.php:429 ../../mod/connedit.php:506 +msgid "Me" msgstr "" -#: ../../include/permissions.php:787 -msgid "Community Forum" +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 +msgid "Best Friends" msgstr "" -#: ../../include/permissions.php:789 -msgid "Feed Republish" +#: ../../include/widgets.php:431 ../../include/identity.php:387 +#: ../../include/identity.php:388 ../../include/identity.php:395 +#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:509 +#: ../../mod/settings.php:304 ../../mod/settings.php:308 +#: ../../mod/settings.php:309 ../../mod/settings.php:312 +#: ../../mod/settings.php:323 +msgid "Friends" msgstr "" -#: ../../include/permissions.php:791 -msgid "Special Purpose" +#: ../../include/widgets.php:432 +msgid "Co-workers" msgstr "" -#: ../../include/permissions.php:792 -msgid "Celebrity/Soapbox" +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 +msgid "Former Friends" msgstr "" -#: ../../include/permissions.php:792 -msgid "Group Repository" +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 +msgid "Acquaintances" msgstr "" -#: ../../include/permissions.php:793 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" +#: ../../include/widgets.php:435 +msgid "Everybody" msgstr "" -#: ../../include/permissions.php:794 -msgid "Custom/Expert Mode" +#: ../../include/widgets.php:469 +msgid "Account settings" msgstr "" -#: ../../include/activities.php:39 -msgid " and " +#: ../../include/widgets.php:475 +msgid "Channel settings" msgstr "" -#: ../../include/activities.php:47 -msgid "public profile" +#: ../../include/widgets.php:481 +msgid "Additional features" msgstr "" -#: ../../include/activities.php:52 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/widgets.php:487 +msgid "Feature settings" msgstr "" -#: ../../include/activities.php:53 -#, php-format -msgid "Visit %1$s's %2$s" +#: ../../include/widgets.php:493 +msgid "Display settings" msgstr "" -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/widgets.php:499 +msgid "Connected apps" msgstr "" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" +#: ../../include/widgets.php:505 +msgid "Export channel" msgstr "" -#: ../../include/datetime.php:241 -msgid "never" +#: ../../include/widgets.php:511 +msgid "Export content" msgstr "" -#: ../../include/datetime.php:247 -msgid "less than a second ago" +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" msgstr "" -#: ../../include/datetime.php:250 -msgid "year" +#: ../../include/widgets.php:528 +msgid "Premium Channel Settings" msgstr "" -#: ../../include/datetime.php:250 -msgid "years" +#: ../../include/widgets.php:537 ../../include/features.php:49 +#: ../../mod/sources.php:88 +msgid "Channel Sources" msgstr "" -#: ../../include/datetime.php:251 -msgid "month" +#: ../../include/widgets.php:548 ../../include/nav.php:218 +#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 +msgid "Settings" msgstr "" -#: ../../include/datetime.php:251 -msgid "months" +#: ../../include/widgets.php:562 ../../mod/mail.php:124 +#: ../../mod/message.php:31 +msgid "Messages" msgstr "" -#: ../../include/datetime.php:252 -msgid "week" +#: ../../include/widgets.php:567 +msgid "Check Mail" msgstr "" -#: ../../include/datetime.php:252 -msgid "weeks" +#: ../../include/widgets.php:572 ../../include/nav.php:209 +msgid "New Message" msgstr "" -#: ../../include/datetime.php:253 -msgid "day" +#: ../../include/widgets.php:648 +msgid "Chat Rooms" msgstr "" -#: ../../include/datetime.php:253 -msgid "days" +#: ../../include/widgets.php:666 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../include/datetime.php:254 -msgid "hour" +#: ../../include/widgets.php:684 +msgid "Suggested Chatrooms" msgstr "" -#: ../../include/datetime.php:254 -msgid "hours" +#: ../../include/zot.php:664 +msgid "Invalid data packet" msgstr "" -#: ../../include/datetime.php:255 -msgid "minute" +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/datetime.php:255 -msgid "minutes" +#: ../../include/zot.php:1799 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/datetime.php:256 -msgid "second" +#: ../../include/activities.php:39 +msgid " and " msgstr "" -#: ../../include/datetime.php:256 -msgid "seconds" +#: ../../include/activities.php:47 +msgid "public profile" msgstr "" -#: ../../include/datetime.php:265 +#: ../../include/activities.php:52 #, php-format -msgid "%1$d %2$s ago" +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/datetime.php:470 +#: ../../include/activities.php:53 #, php-format -msgid "%1$s's birthday" +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/datetime.php:471 +#: ../../include/activities.php:56 #, php-format -msgid "Happy Birthday %1$s" +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" #: ../../include/bb2diaspora.php:384 msgid "Attachments:" msgstr "" +#: ../../include/bb2diaspora.php:463 ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "" + #: ../../include/bb2diaspora.php:465 msgid "Redmatrix event notification:" msgstr "" -#: ../../include/zot.php:661 -msgid "Invalid data packet" +#: ../../include/bb2diaspora.php:469 ../../include/event.php:20 +msgid "Starts:" msgstr "" -#: ../../include/zot.php:677 -msgid "Unable to verify channel signature" +#: ../../include/bb2diaspora.php:477 ../../include/event.php:30 +msgid "Finishes:" msgstr "" -#: ../../include/zot.php:1791 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." +#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 +#: ../../include/identity.php:891 ../../mod/directory.php:159 +#: ../../mod/events.php:579 +msgid "Location:" msgstr "" #: ../../include/RedDAV/RedBrowser.php:106 @@ -1165,7 +1000,7 @@ msgid "%1$s used of %2$s (%3$s%)" msgstr "" #: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 -#: ../../mod/settings.php:577 ../../mod/admin.php:868 +#: ../../mod/settings.php:577 ../../mod/admin.php:866 msgid "Name" msgstr "" @@ -1189,8 +1024,8 @@ msgstr "" msgid "Create new folder" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:142 -#: ../../mod/menu.php:84 ../../mod/new_channel.php:122 +#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/mitem.php:169 +#: ../../mod/menu.php:100 ../../mod/new_channel.php:122 msgid "Create" msgstr "" @@ -1198,8 +1033,8 @@ msgstr "" msgid "Upload file" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:736 -#: ../../mod/photos.php:1241 ../../mod/profile_photo.php:361 +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:738 +#: ../../mod/photos.php:1245 ../../mod/profile_photo.php:361 msgid "Upload" msgstr "" @@ -1208,7 +1043,40 @@ msgstr "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "" + +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../include/comanche.php:35 ../../mod/admin.php:353 +#: ../../view/theme/apw/php/config.php:185 msgid "Default" msgstr "" @@ -1248,8 +1116,8 @@ msgstr "" msgid "RSS/Atom" msgstr "" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:728 -#: ../../mod/admin.php:737 ../../boot.php:1515 +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 +#: ../../mod/admin.php:735 ../../boot.php:1488 msgid "Email" msgstr "" @@ -1284,7 +1152,7 @@ msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:418 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 msgid "Advanced" msgstr "" @@ -1304,8 +1172,8 @@ msgstr "" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 -#: ../../mod/directory.php:222 ../../mod/directory.php:227 +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:267 +#: ../../mod/directory.php:272 ../../mod/connections.php:412 msgid "Find" msgstr "" @@ -1322,231 +1190,20 @@ msgid "Invite Friends" msgstr "" #: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:72 -#: ../../include/widgets.php:303 -msgid "Saved Folders" -msgstr "" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96 -#: ../../include/widgets.php:306 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:93 ../../include/taxonomy.php:230 -#: ../../include/widgets.php:29 -msgid "Categories" +msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../include/contact_widgets.php:126 +#: ../../include/contact_widgets.php:125 #, php-format msgid "%d connection in common" msgid_plural "%d connections in common" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:131 +#: ../../include/contact_widgets.php:130 msgid "show more" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "" - -#: ../../include/account.php:647 ../../include/account.php:649 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:655 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:660 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 -#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 -#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 -#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 -#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 -#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 -#: ../../include/bbcode.php:692 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:165 -msgid "Install design element: " -msgstr "" - -#: ../../include/bbcode.php:171 -msgid "QR code" -msgstr "" - -#: ../../include/bbcode.php:220 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "" - -#: ../../include/bbcode.php:621 -msgid "$1 spoiler" -msgstr "" - -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "" - -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "" - -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:249 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:275 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:275 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" -msgstr "" - -#: ../../include/taxonomy.php:276 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "" - -#: ../../include/taxonomy.php:277 -msgid "dislikes" -msgstr "" - -#: ../../include/taxonomy.php:360 ../../include/identity.php:1146 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1023 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - #: ../../include/enotify.php:41 msgid "Red Matrix Notification" msgstr "" @@ -1742,410 +1399,515 @@ msgstr "" msgid "[Red:Notify]" msgstr "" -#: ../../include/chat.php:10 -msgid "Missing room name" +#: ../../include/event.php:326 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/chat.php:19 -msgid "Duplicate room name" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "" - -#: ../../include/chat.php:105 -msgid "Room not found." +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/chat.php:126 -msgid "Room is full" +#: ../../include/group.php:254 ../../mod/admin.php:735 +msgid "All Channels" msgstr "" -#: ../../include/items.php:377 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 -#: ../../index.php:389 -msgid "Permission denied" +#: ../../include/group.php:276 +msgid "edit" msgstr "" -#: ../../include/items.php:964 ../../include/items.php:1009 -msgid "(Unknown)" +#: ../../include/group.php:298 +msgid "Collections" msgstr "" -#: ../../include/items.php:1165 -msgid "Visible to anybody on the internet." +#: ../../include/group.php:299 +msgid "Edit collection" msgstr "" -#: ../../include/items.php:1167 -msgid "Visible to you only." +#: ../../include/group.php:300 +msgid "Create a new collection" msgstr "" -#: ../../include/items.php:1169 -msgid "Visible to anybody in this network." +#: ../../include/group.php:301 +msgid "Channels not in any collection" msgstr "" -#: ../../include/items.php:1171 -msgid "Visible to anybody authenticated." +#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 +#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 +#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 +#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 +#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 +#: ../../include/bbcode.php:692 +msgid "Image/photo" msgstr "" -#: ../../include/items.php:1173 -#, php-format -msgid "Visible to anybody on %s." +#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" msgstr "" -#: ../../include/items.php:1175 -msgid "Visible to all connections." +#: ../../include/bbcode.php:165 +msgid "Install design element: " msgstr "" -#: ../../include/items.php:1177 -msgid "Visible to approved connections." +#: ../../include/bbcode.php:171 +msgid "QR code" msgstr "" -#: ../../include/items.php:1179 -msgid "Visible to specific connections." +#: ../../include/bbcode.php:220 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/items.php:3938 ../../mod/display.php:32 -#: ../../mod/filestorage.php:26 ../../mod/admin.php:168 -#: ../../mod/admin.php:898 ../../mod/admin.php:1101 ../../mod/thing.php:76 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." +#: ../../include/bbcode.php:222 +msgid "post" msgstr "" -#: ../../include/items.php:4394 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" msgstr "" -#: ../../include/items.php:4409 -msgid "Collection is empty." +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" msgstr "" -#: ../../include/items.php:4416 -#, php-format -msgid "Collection: %s" +#: ../../include/taxonomy.php:210 +msgid "Tags" msgstr "" -#: ../../include/items.php:4427 -#, php-format -msgid "Connection: %s" +#: ../../include/taxonomy.php:249 +msgid "Keywords" msgstr "" -#: ../../include/items.php:4430 -msgid "Connection not found." +#: ../../include/taxonomy.php:274 +msgid "have" msgstr "" -#: ../../include/text.php:321 -msgid "prev" +#: ../../include/taxonomy.php:274 +msgid "has" msgstr "" -#: ../../include/text.php:323 -msgid "first" +#: ../../include/taxonomy.php:275 +msgid "want" msgstr "" -#: ../../include/text.php:352 -msgid "last" +#: ../../include/taxonomy.php:275 +msgid "wants" msgstr "" -#: ../../include/text.php:355 -msgid "next" +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 +msgid "like" msgstr "" -#: ../../include/text.php:367 -msgid "older" +#: ../../include/taxonomy.php:276 +msgid "likes" msgstr "" -#: ../../include/text.php:369 -msgid "newer" +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 +msgid "dislike" msgstr "" -#: ../../include/text.php:736 -msgid "No connections" +#: ../../include/taxonomy.php:277 +msgid "dislikes" msgstr "" -#: ../../include/text.php:749 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" +#: ../../include/taxonomy.php:360 ../../include/identity.php:1148 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1026 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../include/text.php:762 -msgid "View Connections" +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1485 +msgid "Logout" msgstr "" -#: ../../include/text.php:823 ../../include/text.php:835 -#: ../../include/widgets.php:193 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1341 -#: ../../mod/admin.php:1362 -msgid "Save" +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" msgstr "" -#: ../../include/text.php:901 -msgid "poke" +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" msgstr "" -#: ../../include/text.php:902 -msgid "ping" +#: ../../include/nav.php:98 +msgid "Your posts and conversations" msgstr "" -#: ../../include/text.php:902 -msgid "pinged" +#: ../../include/nav.php:99 +msgid "Your profile page" msgstr "" -#: ../../include/text.php:903 -msgid "prod" +#: ../../include/nav.php:101 +msgid "Edit Profiles" msgstr "" -#: ../../include/text.php:903 -msgid "prodded" +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/text.php:904 -msgid "slap" +#: ../../include/nav.php:103 ../../include/identity.php:864 +msgid "Edit Profile" msgstr "" -#: ../../include/text.php:904 -msgid "slapped" +#: ../../include/nav.php:103 +msgid "Edit your profile" msgstr "" -#: ../../include/text.php:905 -msgid "finger" +#: ../../include/nav.php:105 +msgid "Your photos" msgstr "" -#: ../../include/text.php:905 -msgid "fingered" +#: ../../include/nav.php:106 +msgid "Your files" msgstr "" -#: ../../include/text.php:906 -msgid "rebuff" +#: ../../include/nav.php:111 ../../include/apps.php:144 +msgid "Chat" msgstr "" -#: ../../include/text.php:906 -msgid "rebuffed" +#: ../../include/nav.php:111 +msgid "Your chatrooms" msgstr "" -#: ../../include/text.php:915 -msgid "happy" +#: ../../include/nav.php:117 +msgid "Your bookmarks" msgstr "" -#: ../../include/text.php:916 -msgid "sad" +#: ../../include/nav.php:121 +msgid "Your webpages" msgstr "" -#: ../../include/text.php:917 -msgid "mellow" +#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1486 +msgid "Login" msgstr "" -#: ../../include/text.php:918 -msgid "tired" +#: ../../include/nav.php:125 +msgid "Sign in" msgstr "" -#: ../../include/text.php:919 -msgid "perky" +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" msgstr "" -#: ../../include/text.php:920 -msgid "angry" +#: ../../include/nav.php:145 +msgid "Remote authentication" msgstr "" -#: ../../include/text.php:921 -msgid "stupified" +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/text.php:922 -msgid "puzzled" +#: ../../include/nav.php:159 +msgid "Home Page" msgstr "" -#: ../../include/text.php:923 -msgid "interested" +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1464 +msgid "Register" msgstr "" -#: ../../include/text.php:924 -msgid "bitter" +#: ../../include/nav.php:163 +msgid "Create an account" msgstr "" -#: ../../include/text.php:925 -msgid "cheerful" +#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" msgstr "" -#: ../../include/text.php:926 -msgid "alive" +#: ../../include/nav.php:168 +msgid "Help and documentation" msgstr "" -#: ../../include/text.php:927 -msgid "annoyed" +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" msgstr "" -#: ../../include/text.php:928 -msgid "anxious" +#: ../../include/nav.php:173 ../../include/text.php:826 +#: ../../include/text.php:838 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" msgstr "" -#: ../../include/text.php:929 -msgid "cranky" +#: ../../include/nav.php:173 +msgid "Search site content" msgstr "" -#: ../../include/text.php:930 -msgid "disturbed" +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:271 +msgid "Directory" msgstr "" -#: ../../include/text.php:931 -msgid "frustrated" +#: ../../include/nav.php:176 +msgid "Channel Directory" msgstr "" -#: ../../include/text.php:932 -msgid "depressed" +#: ../../include/nav.php:190 ../../include/apps.php:131 +msgid "Matrix" msgstr "" -#: ../../include/text.php:933 -msgid "motivated" +#: ../../include/nav.php:190 +msgid "Your matrix" msgstr "" -#: ../../include/text.php:934 -msgid "relaxed" +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" msgstr "" -#: ../../include/text.php:935 -msgid "surprised" +#: ../../include/nav.php:193 ../../include/apps.php:135 +msgid "Channel Home" msgstr "" -#: ../../include/text.php:1099 -msgid "Monday" +#: ../../include/nav.php:193 +msgid "Channel home" msgstr "" -#: ../../include/text.php:1099 -msgid "Tuesday" +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" msgstr "" -#: ../../include/text.php:1099 -msgid "Wednesday" +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" msgstr "" -#: ../../include/text.php:1099 -msgid "Thursday" +#: ../../include/nav.php:200 +msgid "Notices" msgstr "" -#: ../../include/text.php:1099 -msgid "Friday" +#: ../../include/nav.php:200 +msgid "Notifications" msgstr "" -#: ../../include/text.php:1099 -msgid "Saturday" +#: ../../include/nav.php:201 +msgid "See all notifications" msgstr "" -#: ../../include/text.php:1099 -msgid "Sunday" +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" msgstr "" -#: ../../include/text.php:1103 -msgid "January" +#: ../../include/nav.php:204 ../../include/apps.php:141 +msgid "Mail" msgstr "" -#: ../../include/text.php:1103 -msgid "February" +#: ../../include/nav.php:204 +msgid "Private mail" msgstr "" -#: ../../include/text.php:1103 -msgid "March" +#: ../../include/nav.php:205 +msgid "See all private messages" msgstr "" -#: ../../include/text.php:1103 -msgid "April" +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" msgstr "" -#: ../../include/text.php:1103 -msgid "May" +#: ../../include/nav.php:207 +msgid "Inbox" msgstr "" -#: ../../include/text.php:1103 -msgid "June" +#: ../../include/nav.php:208 +msgid "Outbox" msgstr "" -#: ../../include/text.php:1103 -msgid "July" +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:431 +msgid "Events" msgstr "" -#: ../../include/text.php:1103 -msgid "August" +#: ../../include/nav.php:212 +msgid "Event Calendar" msgstr "" -#: ../../include/text.php:1103 -msgid "September" +#: ../../include/nav.php:213 +msgid "See all events" msgstr "" -#: ../../include/text.php:1103 -msgid "October" +#: ../../include/nav.php:214 +msgid "Mark all events seen" msgstr "" -#: ../../include/text.php:1103 -msgid "November" +#: ../../include/nav.php:216 ../../include/apps.php:130 +#: ../../mod/manage.php:148 +msgid "Channel Manager" msgstr "" -#: ../../include/text.php:1103 -msgid "December" +#: ../../include/nav.php:216 +msgid "Manage Your Channels" msgstr "" -#: ../../include/text.php:1181 -msgid "unknown.???" +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" msgstr "" -#: ../../include/text.php:1182 -msgid "bytes" +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" msgstr "" -#: ../../include/text.php:1221 -msgid "remove category" +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" msgstr "" -#: ../../include/text.php:1291 -msgid "remove from file" +#: ../../include/nav.php:262 +msgid "Please wait..." msgstr "" -#: ../../include/text.php:1356 ../../include/text.php:1368 -msgid "Click to open/close" +#: ../../include/permissions.php:13 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/text.php:1523 ../../mod/events.php:409 -msgid "Link to Source" +#: ../../include/permissions.php:14 +msgid "Can view my default channel profile" msgstr "" -#: ../../include/text.php:1542 -msgid "Select a page layout: " +#: ../../include/permissions.php:15 +msgid "Can view my photo albums" msgstr "" -#: ../../include/text.php:1545 ../../include/text.php:1610 -msgid "default" +#: ../../include/permissions.php:16 +msgid "Can view my connections" msgstr "" -#: ../../include/text.php:1581 -msgid "Page content type: " +#: ../../include/permissions.php:17 +msgid "Can view my file storage" msgstr "" -#: ../../include/text.php:1622 -msgid "Select an alternate language" +#: ../../include/permissions.php:18 +msgid "Can view my webpages" msgstr "" -#: ../../include/text.php:1756 -msgid "activity" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/text.php:2028 -msgid "Design" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/text.php:2030 -msgid "Blocks" +#: ../../include/permissions.php:23 +msgid "Can comment on or like my posts" msgstr "" -#: ../../include/text.php:2031 -msgid "Menus" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/text.php:2032 -msgid "Layouts" +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" msgstr "" -#: ../../include/text.php:2033 -msgid "Pages" +#: ../../include/permissions.php:26 +msgid "Can like/dislike stuff" +msgstr "" + +#: ../../include/permissions.php:26 +msgid "Profiles and things other than posts/comments" +msgstr "" + +#: ../../include/permissions.php:28 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "" + +#: ../../include/permissions.php:28 +msgid "Advanced - useful for creating group forum channels" +msgstr "" + +#: ../../include/permissions.php:29 +msgid "Can chat with me (when available)" +msgstr "" + +#: ../../include/permissions.php:30 +msgid "Can write to my file storage" +msgstr "" + +#: ../../include/permissions.php:31 +msgid "Can edit my webpages" +msgstr "" + +#: ../../include/permissions.php:33 +msgid "Can source my public posts in derived channels" +msgstr "" + +#: ../../include/permissions.php:33 +msgid "Somewhat advanced - very useful in open communities" +msgstr "" + +#: ../../include/permissions.php:35 +msgid "Can administer my channel resources" +msgstr "" + +#: ../../include/permissions.php:35 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "" + +#: ../../include/permissions.php:785 +msgid "Social Networking" +msgstr "" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Mostly Public" +msgstr "" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +#: ../../include/permissions.php:790 +msgid "Restricted" +msgstr "" + +#: ../../include/permissions.php:786 ../../include/permissions.php:788 +msgid "Private" +msgstr "" + +#: ../../include/permissions.php:787 +msgid "Community Forum" +msgstr "" + +#: ../../include/permissions.php:789 +msgid "Feed Republish" +msgstr "" + +#: ../../include/permissions.php:791 +msgid "Special Purpose" +msgstr "" + +#: ../../include/permissions.php:792 +msgid "Celebrity/Soapbox" +msgstr "" + +#: ../../include/permissions.php:792 +msgid "Group Repository" +msgstr "" + +#: ../../include/permissions.php:793 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "" + +#: ../../include/permissions.php:794 +msgid "Custom/Expert Mode" +msgstr "" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "" + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/Contact.php:211 ../../mod/admin.php:646 +#, php-format +msgid "User '%s' deleted" msgstr "" #: ../../include/features.php:23 @@ -2256,11 +2018,6 @@ msgstr "" msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../include/features.php:49 ../../include/widgets.php:537 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - #: ../../include/features.php:49 msgid "Automatically import channel content from other channels or feeds" msgstr "" @@ -2294,10 +2051,6 @@ msgstr "" msgid "Enable widget to display Network posts only from selected collections" msgstr "" -#: ../../include/features.php:58 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "" - #: ../../include/features.php:58 msgid "Save search terms for re-use" msgstr "" @@ -2390,78 +2143,84 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." +#: ../../include/account.php:23 +msgid "Not a valid email address" msgstr "" -#: ../../include/follow.php:33 -msgid "Channel location missing." +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." +#: ../../include/account.php:64 +msgid "An invitation is required." msgstr "" -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." +#: ../../include/account.php:68 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." +#: ../../include/account.php:119 +msgid "Please enter the required information." msgstr "" -#: ../../include/follow.php:192 -msgid "local account not found." +#: ../../include/account.php:187 +msgid "Failed to store account information." msgstr "" -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." +#: ../../include/account.php:245 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +#: ../../include/account.php:313 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" msgstr "" -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" +#: ../../include/account.php:337 +msgid "your registration password" msgstr "" -#: ../../include/group.php:275 -msgid "edit" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/group.php:297 -msgid "Collections" +#: ../../include/account.php:406 +msgid "Account approved." msgstr "" -#: ../../include/group.php:298 -msgid "Edit collection" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/group.php:299 -msgid "Create a new collection" +#: ../../include/account.php:486 +msgid "Account verified. Please login." msgstr "" -#: ../../include/group.php:300 -msgid "Channels not in any collection" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." msgstr "" -#: ../../include/group.php:302 ../../include/widgets.php:273 -msgid "add" +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/identity.php:31 ../../mod/item.php:1361 +#: ../../include/identity.php:31 ../../mod/item.php:1368 msgid "Unable to obtain identity information from database" msgstr "" @@ -2498,27 +2257,19 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:431 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:304 -#: ../../mod/settings.php:308 ../../mod/settings.php:309 -#: ../../mod/settings.php:312 ../../mod/settings.php:323 -#: ../../mod/connedit.php:509 -msgid "Friends" -msgstr "" - #: ../../include/identity.php:643 msgid "Requested channel is not available." msgstr "" #: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/webpages.php:8 ../../mod/filestorage.php:48 -#: ../../mod/layouts.php:8 ../../mod/hcard.php:8 +#: ../../mod/connect.php:13 ../../mod/profile.php:16 ../../mod/blocks.php:29 +#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 +#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 msgid "Requested profile is not available." msgstr "" -#: ../../include/identity.php:854 ../../mod/profiles.php:722 +#: ../../include/identity.php:854 ../../mod/profiles.php:740 msgid "Change profile photo" msgstr "" @@ -2530,15 +2281,11 @@ msgstr "" msgid "Manage/edit profiles" msgstr "" -#: ../../include/identity.php:861 ../../mod/profiles.php:723 +#: ../../include/identity.php:861 ../../mod/profiles.php:741 msgid "Create New Profile" msgstr "" -#: ../../include/identity.php:864 ../../include/nav.php:103 -msgid "Edit Profile" -msgstr "" - -#: ../../include/identity.php:875 ../../mod/profiles.php:734 +#: ../../include/identity.php:875 ../../mod/profiles.php:752 msgid "Profile Image" msgstr "" @@ -2546,592 +2293,453 @@ msgstr "" msgid "visible to everybody" msgstr "" -#: ../../include/identity.php:879 ../../mod/profiles.php:617 -#: ../../mod/profiles.php:738 +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:893 ../../include/identity.php:1130 -#: ../../mod/directory.php:158 +#: ../../include/identity.php:895 ../../include/identity.php:1132 msgid "Gender:" msgstr "" -#: ../../include/identity.php:894 ../../include/identity.php:1174 -#: ../../mod/directory.php:160 +#: ../../include/identity.php:896 ../../include/identity.php:1176 msgid "Status:" msgstr "" -#: ../../include/identity.php:895 ../../include/identity.php:1185 -#: ../../mod/directory.php:162 +#: ../../include/identity.php:897 ../../include/identity.php:1187 msgid "Homepage:" msgstr "" -#: ../../include/identity.php:896 ../../mod/dirprofile.php:151 +#: ../../include/identity.php:898 msgid "Online Now" msgstr "" -#: ../../include/identity.php:974 ../../include/identity.php:1054 -#: ../../mod/ping.php:316 +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:318 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:975 ../../include/identity.php:1055 +#: ../../include/identity.php:977 ../../include/identity.php:1057 msgid "F d" msgstr "" -#: ../../include/identity.php:1020 ../../include/identity.php:1095 -#: ../../mod/ping.php:338 +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:340 msgid "[today]" msgstr "" -#: ../../include/identity.php:1032 +#: ../../include/identity.php:1034 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:1033 +#: ../../include/identity.php:1035 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:1088 +#: ../../include/identity.php:1090 msgid "[No description]" msgstr "" -#: ../../include/identity.php:1106 +#: ../../include/identity.php:1108 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:1107 +#: ../../include/identity.php:1109 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:1128 ../../mod/settings.php:984 +#: ../../include/identity.php:1122 ../../include/identity.php:1240 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "" + +#: ../../include/identity.php:1130 ../../mod/settings.php:984 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:1135 +#: ../../include/identity.php:1137 msgid "Like this channel" msgstr "" -#: ../../include/identity.php:1159 +#: ../../include/identity.php:1161 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:1160 +#: ../../include/identity.php:1162 msgid "j F" msgstr "" -#: ../../include/identity.php:1167 +#: ../../include/identity.php:1169 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:1171 +#: ../../include/identity.php:1173 msgid "Age:" msgstr "" -#: ../../include/identity.php:1180 +#: ../../include/identity.php:1182 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:1183 ../../mod/profiles.php:639 +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:1187 ../../mod/profiles.php:641 +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:1189 +#: ../../include/identity.php:1191 msgid "Tags:" msgstr "" -#: ../../include/identity.php:1191 ../../mod/profiles.php:642 +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:1193 +#: ../../include/identity.php:1195 msgid "Religion:" msgstr "" -#: ../../include/identity.php:1195 ../../mod/directory.php:164 +#: ../../include/identity.php:1197 msgid "About:" msgstr "" -#: ../../include/identity.php:1197 +#: ../../include/identity.php:1199 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:1199 ../../mod/profiles.php:645 +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 msgid "Likes:" msgstr "" -#: ../../include/identity.php:1201 ../../mod/profiles.php:646 +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:1204 +#: ../../include/identity.php:1206 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:1206 +#: ../../include/identity.php:1208 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:1208 +#: ../../include/identity.php:1210 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:1210 +#: ../../include/identity.php:1212 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:1212 +#: ../../include/identity.php:1214 msgid "Television:" msgstr "" -#: ../../include/identity.php:1214 +#: ../../include/identity.php:1216 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:1216 +#: ../../include/identity.php:1218 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:1218 +#: ../../include/identity.php:1220 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:1220 +#: ../../include/identity.php:1222 msgid "School/education:" msgstr "" -#: ../../include/identity.php:1240 +#: ../../include/identity.php:1242 msgid "Like this thing" msgstr "" -#: ../../include/widgets.php:86 ../../include/nav.php:171 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "" - -#: ../../include/widgets.php:87 -msgid "System" +#: ../../include/items.php:377 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 +#: ../../index.php:389 +msgid "Permission denied" msgstr "" -#: ../../include/widgets.php:90 -msgid "Create Personal App" +#: ../../include/items.php:964 ../../include/items.php:1009 +msgid "(Unknown)" msgstr "" -#: ../../include/widgets.php:91 -msgid "Edit Personal App" +#: ../../include/items.php:1165 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" +#: ../../include/items.php:1167 +msgid "Visible to you only." msgstr "" -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" +#: ../../include/items.php:1169 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/widgets.php:144 -msgid "See more..." +#: ../../include/items.php:1171 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/widgets.php:166 +#: ../../include/items.php:1173 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/widgets.php:172 -msgid "Add New Connection" +#: ../../include/items.php:1175 +msgid "Visible to all connections." msgstr "" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" +#: ../../include/items.php:1177 +msgid "Visible to approved connections." msgstr "" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/items.php:1179 +msgid "Visible to specific connections." msgstr "" -#: ../../include/widgets.php:191 -msgid "Notes" +#: ../../include/items.php:3946 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." msgstr "" -#: ../../include/widgets.php:263 -msgid "Remove term" +#: ../../include/items.php:4402 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." msgstr "" -#: ../../include/widgets.php:352 -msgid "Archives" +#: ../../include/items.php:4417 +msgid "Collection is empty." msgstr "" -#: ../../include/widgets.php:428 -msgid "Refresh" +#: ../../include/items.php:4424 +#, php-format +msgid "Collection: %s" msgstr "" -#: ../../include/widgets.php:429 ../../mod/connedit.php:506 -msgid "Me" +#: ../../include/items.php:4435 +#, php-format +msgid "Connection: %s" msgstr "" -#: ../../include/widgets.php:430 ../../mod/connedit.php:508 -msgid "Best Friends" +#: ../../include/items.php:4438 +msgid "Connection not found." msgstr "" -#: ../../include/widgets.php:432 -msgid "Co-workers" +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../include/widgets.php:433 ../../mod/connedit.php:510 -msgid "Former Friends" +#: ../../include/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../include/widgets.php:434 ../../mod/connedit.php:511 -msgid "Acquaintances" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/widgets.php:435 -msgid "Everybody" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/widgets.php:469 -msgid "Account settings" +#: ../../include/network.php:590 +msgid "view full size" msgstr "" -#: ../../include/widgets.php:475 -msgid "Channel settings" +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." msgstr "" -#: ../../include/widgets.php:481 -msgid "Additional features" +#: ../../include/attach.php:331 +msgid "No source file." msgstr "" -#: ../../include/widgets.php:487 -msgid "Feature settings" +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/widgets.php:493 -msgid "Display settings" +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/widgets.php:499 -msgid "Connected apps" +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/widgets.php:505 -msgid "Export channel" +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/widgets.php:511 -msgid "Export content" +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/widgets.php:520 ../../mod/connedit.php:538 -msgid "Connection Default Permissions" +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/widgets.php:528 -msgid "Premium Channel Settings" +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." msgstr "" -#: ../../include/widgets.php:562 ../../mod/mail.php:124 -#: ../../mod/message.php:31 -msgid "Messages" +#: ../../include/attach.php:589 +msgid "Empty pathname" msgstr "" -#: ../../include/widgets.php:567 -msgid "Check Mail" +#: ../../include/attach.php:605 +msgid "duplicate filename or path" msgstr "" -#: ../../include/widgets.php:572 ../../include/nav.php:209 -msgid "New Message" +#: ../../include/attach.php:629 +msgid "Path not found." msgstr "" -#: ../../include/widgets.php:648 -msgid "Chat Rooms" +#: ../../include/attach.php:680 +msgid "mkdir failed." msgstr "" -#: ../../include/widgets.php:666 -msgid "Bookmarked Chatrooms" +#: ../../include/attach.php:684 +msgid "database storage failed." msgstr "" -#: ../../include/widgets.php:684 -msgid "Suggested Chatrooms" +#: ../../include/auth.php:116 +msgid "Logged out." msgstr "" -#: ../../include/Contact.php:123 -msgid "New window" +#: ../../include/auth.php:257 +msgid "Failed authentication" msgstr "" -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." msgstr "" -#: ../../include/Contact.php:211 ../../mod/admin.php:649 -#, php-format -msgid "User '%s' deleted" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" msgstr "" -#: ../../include/message.php:18 -msgid "No recipient provided." +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/message.php:23 -msgid "[no subject]" +#: ../../include/datetime.php:248 +msgid "never" msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." +#: ../../include/datetime.php:254 +msgid "less than a second ago" msgstr "" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." +#: ../../include/datetime.php:257 +msgid "year" msgstr "" -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1512 -msgid "Logout" +#: ../../include/datetime.php:257 +msgid "years" msgstr "" -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" +#: ../../include/datetime.php:258 +msgid "month" msgstr "" -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" +#: ../../include/datetime.php:258 +msgid "months" msgstr "" -#: ../../include/nav.php:98 -msgid "Your posts and conversations" +#: ../../include/datetime.php:259 +msgid "week" msgstr "" -#: ../../include/nav.php:99 -msgid "Your profile page" +#: ../../include/datetime.php:259 +msgid "weeks" msgstr "" -#: ../../include/nav.php:101 -msgid "Edit Profiles" +#: ../../include/datetime.php:260 +msgid "day" msgstr "" -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" +#: ../../include/datetime.php:260 +msgid "days" msgstr "" -#: ../../include/nav.php:103 -msgid "Edit your profile" +#: ../../include/datetime.php:261 +msgid "hour" msgstr "" -#: ../../include/nav.php:105 -msgid "Your photos" +#: ../../include/datetime.php:261 +msgid "hours" msgstr "" -#: ../../include/nav.php:106 -msgid "Your files" +#: ../../include/datetime.php:262 +msgid "minute" msgstr "" -#: ../../include/nav.php:111 -msgid "Your chatrooms" +#: ../../include/datetime.php:262 +msgid "minutes" msgstr "" -#: ../../include/nav.php:117 -msgid "Your bookmarks" +#: ../../include/datetime.php:263 +msgid "second" msgstr "" -#: ../../include/nav.php:121 -msgid "Your webpages" +#: ../../include/datetime.php:263 +msgid "seconds" msgstr "" -#: ../../include/nav.php:125 -msgid "Sign in" +#: ../../include/datetime.php:272 +#, php-format +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/nav.php:142 +#: ../../include/datetime.php:480 #, php-format -msgid "%s - click to logout" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:159 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:163 ../../mod/register.php:220 ../../boot.php:1489 -msgid "Register" -msgstr "" - -#: ../../include/nav.php:163 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" -msgstr "" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:176 -msgid "Channel Locator" -msgstr "" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "" - -#: ../../include/network.php:590 -msgid "view full size" -msgstr "" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:248 ../../mod/photos.php:589 -#: ../../mod/photos.php:948 ../../mod/events.php:585 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:137 -msgid "Permissions" -msgstr "" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 -#: ../../mod/photos.php:1145 -msgid "Close" +msgid "%1$s's birthday" msgstr "" -#: ../../include/api.php:1084 -msgid "Public Timeline" +#: ../../include/datetime.php:481 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/photos.php:104 +#: ../../include/photos.php:105 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/photos.php:111 +#: ../../include/photos.php:112 msgid "Image file is empty." msgstr "" -#: ../../include/photos.php:140 ../../mod/profile_photo.php:216 +#: ../../include/photos.php:141 ../../mod/profile_photo.php:216 msgid "Unable to process image" msgstr "" -#: ../../include/photos.php:212 +#: ../../include/photos.php:213 msgid "Photo storage failed." msgstr "" -#: ../../include/photos.php:344 +#: ../../include/photos.php:345 msgid "Upload New Photos" msgstr "" +#: ../../include/security.php:323 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" #: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:992 ../../mod/photos.php:1102 +#: ../../mod/photos.php:995 ../../mod/photos.php:1105 msgid "Comment" msgstr "" @@ -3492,1030 +3100,1013 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" +#: ../../include/text.php:321 +msgid "prev" msgstr "" -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1019 ../../mod/photos.php:1031 -msgid "View all" +#: ../../include/text.php:323 +msgid "first" msgstr "" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1028 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:352 +msgid "last" +msgstr "" -#: ../../include/ItemObject.php:179 -msgid "Add Star" +#: ../../include/text.php:355 +msgid "next" msgstr "" -#: ../../include/ItemObject.php:180 -msgid "Remove Star" +#: ../../include/text.php:367 +msgid "older" msgstr "" -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" +#: ../../include/text.php:369 +msgid "newer" msgstr "" -#: ../../include/ItemObject.php:185 -msgid "starred" +#: ../../include/text.php:736 +msgid "No connections" msgstr "" -#: ../../include/ItemObject.php:203 -msgid "Add Tag" +#: ../../include/text.php:753 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:766 +msgid "View Connections" msgstr "" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:971 -msgid "I like this (toggle)" +#: ../../include/text.php:905 +msgid "poke" msgstr "" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:972 -msgid "I don't like this (toggle)" +#: ../../include/text.php:906 +msgid "ping" msgstr "" -#: ../../include/ItemObject.php:226 -msgid "Share This" +#: ../../include/text.php:906 +msgid "pinged" msgstr "" -#: ../../include/ItemObject.php:226 -msgid "share" +#: ../../include/text.php:907 +msgid "prod" msgstr "" -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" +#: ../../include/text.php:907 +msgid "prodded" msgstr "" -#: ../../include/ItemObject.php:251 -msgid "to" +#: ../../include/text.php:908 +msgid "slap" msgstr "" -#: ../../include/ItemObject.php:252 -msgid "via" +#: ../../include/text.php:908 +msgid "slapped" msgstr "" -#: ../../include/ItemObject.php:253 -msgid "Wall-to-Wall" +#: ../../include/text.php:909 +msgid "finger" msgstr "" -#: ../../include/ItemObject.php:254 -msgid "via Wall-To-Wall:" +#: ../../include/text.php:909 +msgid "fingered" msgstr "" -#: ../../include/ItemObject.php:290 -msgid "Save Bookmarks" +#: ../../include/text.php:910 +msgid "rebuff" msgstr "" -#: ../../include/ItemObject.php:291 -msgid "Add to Calendar" +#: ../../include/text.php:910 +msgid "rebuffed" msgstr "" -#: ../../include/ItemObject.php:299 ../../mod/photos.php:1139 -msgctxt "noun" -msgid "Likes" +#: ../../include/text.php:919 +msgid "happy" msgstr "" -#: ../../include/ItemObject.php:300 ../../mod/photos.php:1140 -msgctxt "noun" -msgid "Dislikes" +#: ../../include/text.php:920 +msgid "sad" msgstr "" -#: ../../include/ItemObject.php:331 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:921 +msgid "mellow" +msgstr "" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:990 -#: ../../mod/photos.php:1100 -msgid "This is you" +#: ../../include/text.php:922 +msgid "tired" msgstr "" -#: ../../include/ItemObject.php:599 ../../mod/mood.php:135 -#: ../../mod/photos.php:595 ../../mod/photos.php:669 ../../mod/photos.php:953 -#: ../../mod/photos.php:993 ../../mod/photos.php:1103 -#: ../../mod/settings.php:549 ../../mod/settings.php:661 -#: ../../mod/settings.php:690 ../../mod/settings.php:714 -#: ../../mod/settings.php:790 ../../mod/settings.php:976 -#: ../../mod/poke.php:166 ../../mod/profiles.php:615 ../../mod/events.php:587 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/connect.php:92 -#: ../../mod/connedit.php:555 ../../mod/setup.php:307 ../../mod/setup.php:350 -#: ../../mod/pdledit.php:58 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:146 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:414 -#: ../../mod/admin.php:725 ../../mod/admin.php:861 ../../mod/admin.php:994 -#: ../../mod/admin.php:1193 ../../mod/admin.php:1280 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/import.php:480 ../../mod/invite.php:142 -#: ../../mod/locs.php:99 ../../mod/mail.php:348 ../../mod/appman.php:99 -#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" +#: ../../include/text.php:923 +msgid "perky" msgstr "" -#: ../../include/ItemObject.php:600 -msgid "Bold" +#: ../../include/text.php:924 +msgid "angry" msgstr "" -#: ../../include/ItemObject.php:601 -msgid "Italic" +#: ../../include/text.php:925 +msgid "stupified" msgstr "" -#: ../../include/ItemObject.php:602 -msgid "Underline" +#: ../../include/text.php:926 +msgid "puzzled" msgstr "" -#: ../../include/ItemObject.php:603 -msgid "Quote" +#: ../../include/text.php:927 +msgid "interested" msgstr "" -#: ../../include/ItemObject.php:604 -msgid "Code" +#: ../../include/text.php:928 +msgid "bitter" msgstr "" -#: ../../include/ItemObject.php:605 -msgid "Image" +#: ../../include/text.php:929 +msgid "cheerful" msgstr "" -#: ../../include/ItemObject.php:606 -msgid "Link" +#: ../../include/text.php:930 +msgid "alive" msgstr "" -#: ../../include/ItemObject.php:607 -msgid "Video" +#: ../../include/text.php:931 +msgid "annoyed" msgstr "" -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" +#: ../../include/text.php:932 +msgid "anxious" msgstr "" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." +#: ../../include/text.php:933 +msgid "cranky" msgstr "" -#: ../../mod/photos.php:97 -msgid "Album not found." +#: ../../include/text.php:934 +msgid "disturbed" msgstr "" -#: ../../mod/photos.php:119 ../../mod/photos.php:670 -msgid "Delete Album" +#: ../../include/text.php:935 +msgid "frustrated" msgstr "" -#: ../../mod/photos.php:159 ../../mod/photos.php:954 -msgid "Delete Photo" +#: ../../include/text.php:936 +msgid "depressed" msgstr "" -#: ../../mod/photos.php:459 ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." +#: ../../include/text.php:937 +msgid "motivated" msgstr "" -#: ../../mod/photos.php:470 -msgid "No photos selected" +#: ../../include/text.php:938 +msgid "relaxed" msgstr "" -#: ../../mod/photos.php:514 -msgid "Access to this item is restricted." +#: ../../include/text.php:939 +msgid "surprised" msgstr "" -#: ../../mod/photos.php:553 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../include/text.php:1103 +msgid "Monday" msgstr "" -#: ../../mod/photos.php:556 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../include/text.php:1103 +msgid "Tuesday" msgstr "" -#: ../../mod/photos.php:580 -msgid "Upload Photos" +#: ../../include/text.php:1103 +msgid "Wednesday" msgstr "" -#: ../../mod/photos.php:584 ../../mod/photos.php:663 ../../mod/photos.php:941 -msgid "Enter a new album name" +#: ../../include/text.php:1103 +msgid "Thursday" msgstr "" -#: ../../mod/photos.php:585 ../../mod/photos.php:664 ../../mod/photos.php:942 -msgid "or select an existing one (doubleclick)" +#: ../../include/text.php:1103 +msgid "Friday" msgstr "" -#: ../../mod/photos.php:586 -msgid "Do not show a status post for this upload" +#: ../../include/text.php:1103 +msgid "Saturday" msgstr "" -#: ../../mod/photos.php:614 -msgid "Album name could not be decoded" +#: ../../include/text.php:1103 +msgid "Sunday" msgstr "" -#: ../../mod/photos.php:652 ../../mod/photos.php:1163 -#: ../../mod/photos.php:1178 -msgid "Contact Photos" +#: ../../include/text.php:1107 +msgid "January" msgstr "" -#: ../../mod/photos.php:676 -msgid "Show Newest First" +#: ../../include/text.php:1107 +msgid "February" msgstr "" -#: ../../mod/photos.php:678 -msgid "Show Oldest First" +#: ../../include/text.php:1107 +msgid "March" msgstr "" -#: ../../mod/photos.php:705 ../../mod/photos.php:1210 -msgid "View Photo" +#: ../../include/text.php:1107 +msgid "April" msgstr "" -#: ../../mod/photos.php:734 -msgid "Edit Album" +#: ../../include/text.php:1107 +msgid "May" msgstr "" -#: ../../mod/photos.php:779 -msgid "Permission denied. Access to this item may be restricted." +#: ../../include/text.php:1107 +msgid "June" msgstr "" -#: ../../mod/photos.php:781 -msgid "Photo not available" +#: ../../include/text.php:1107 +msgid "July" msgstr "" -#: ../../mod/photos.php:839 -msgid "Use as profile photo" +#: ../../include/text.php:1107 +msgid "August" msgstr "" -#: ../../mod/photos.php:846 -msgid "Private Photo" +#: ../../include/text.php:1107 +msgid "September" msgstr "" -#: ../../mod/photos.php:857 ../../mod/events.php:433 -msgid "Previous" +#: ../../include/text.php:1107 +msgid "October" msgstr "" -#: ../../mod/photos.php:861 -msgid "View Full Size" +#: ../../include/text.php:1107 +msgid "November" msgstr "" -#: ../../mod/photos.php:866 ../../mod/events.php:434 ../../mod/setup.php:261 -msgid "Next" +#: ../../include/text.php:1107 +msgid "December" msgstr "" -#: ../../mod/photos.php:903 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 -msgid "Remove" +#: ../../include/text.php:1185 +msgid "unknown.???" msgstr "" -#: ../../mod/photos.php:935 -msgid "Edit photo" +#: ../../include/text.php:1186 +msgid "bytes" msgstr "" -#: ../../mod/photos.php:937 -msgid "Rotate CW (right)" +#: ../../include/text.php:1225 +msgid "remove category" msgstr "" -#: ../../mod/photos.php:938 -msgid "Rotate CCW (left)" +#: ../../include/text.php:1295 +msgid "remove from file" msgstr "" -#: ../../mod/photos.php:945 -msgid "Caption" +#: ../../include/text.php:1360 ../../include/text.php:1372 +msgid "Click to open/close" msgstr "" -#: ../../mod/photos.php:947 -msgid "Add a Tag" +#: ../../include/text.php:1527 ../../mod/events.php:409 +msgid "Link to Source" msgstr "" -#: ../../mod/photos.php:950 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../include/text.php:1546 +msgid "Select a page layout: " msgstr "" -#: ../../mod/photos.php:952 -msgid "Flag as adult in album view" +#: ../../include/text.php:1549 ../../include/text.php:1614 +msgid "default" msgstr "" -#: ../../mod/photos.php:1129 -msgid "In This Photo:" +#: ../../include/text.php:1585 +msgid "Page content type: " msgstr "" -#: ../../mod/photos.php:1216 -msgid "View Album" +#: ../../include/text.php:1626 +msgid "Select an alternate language" msgstr "" -#: ../../mod/photos.php:1239 -msgid "Recent Photos" +#: ../../include/text.php:1760 +msgid "activity" msgstr "" -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." +#: ../../include/text.php:2041 +msgid "Design" msgstr "" -#: ../../mod/mitem.php:47 -msgid "Menu element updated." +#: ../../include/text.php:2044 +msgid "Blocks" msgstr "" -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." +#: ../../include/text.php:2045 +msgid "Menus" msgstr "" -#: ../../mod/mitem.php:57 -msgid "Menu element added." +#: ../../include/text.php:2046 +msgid "Layouts" msgstr "" -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." +#: ../../include/text.php:2047 +msgid "Pages" msgstr "" -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:38 -msgid "Not found." +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" msgstr "" -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" +#: ../../include/acl_selectors.php:241 +msgid "Show" msgstr "" -#: ../../mod/mitem.php:99 -msgid "Edit menu" +#: ../../include/acl_selectors.php:242 +msgid "Don't show" msgstr "" -#: ../../mod/mitem.php:102 -msgid "Edit element" +#: ../../include/acl_selectors.php:248 ../../mod/events.php:585 +#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 +#: ../../mod/filestorage.php:137 +msgid "Permissions" msgstr "" -#: ../../mod/mitem.php:103 -msgid "Drop element" +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 +#: ../../mod/photos.php:1148 +msgid "Close" msgstr "" -#: ../../mod/mitem.php:104 -msgid "New element" +#: ../../include/api.php:1084 +msgid "Public Timeline" msgstr "" -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" +#: ../../include/apps.php:126 +msgid "Site Admin" msgstr "" -#: ../../mod/mitem.php:106 -msgid "Add menu element" +#: ../../include/apps.php:128 +msgid "Address Book" msgstr "" -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" +#: ../../include/apps.php:142 ../../mod/mood.php:131 +msgid "Mood" msgstr "" -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" +#: ../../include/apps.php:146 +msgid "Probe" msgstr "" -#: ../../mod/mitem.php:131 -msgid "New Menu Element" +#: ../../include/apps.php:147 +msgid "Suggest" msgstr "" -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" +#: ../../include/apps.php:148 +msgid "Random Channel" msgstr "" -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:1011 -msgid "(click to open/close)" +#: ../../include/apps.php:149 +msgid "Invite" msgstr "" -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" +#: ../../include/apps.php:150 +msgid "Features" msgstr "" -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" +#: ../../include/apps.php:151 +msgid "Language" msgstr "" -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" +#: ../../include/apps.php:152 +msgid "Post" msgstr "" -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" +#: ../../include/apps.php:153 +msgid "Profile Photo" msgstr "" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" +#: ../../include/apps.php:242 ../../mod/settings.php:81 +#: ../../mod/settings.php:575 +msgid "Update" msgstr "" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" +#: ../../include/apps.php:242 +msgid "Install" msgstr "" -#: ../../mod/mitem.php:154 -msgid "Menu item not found." +#: ../../include/apps.php:247 +msgid "Purchase" msgstr "" -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" msgstr "" -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." +#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 +#: ../../mod/photos.php:1022 ../../mod/photos.php:1034 +msgid "View all" msgstr "" -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1031 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:179 +msgid "Add Star" msgstr "" -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" +#: ../../include/ItemObject.php:180 +msgid "Remove Star" msgstr "" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" +#: ../../include/ItemObject.php:181 +msgid "Toggle Star Status" msgstr "" -#: ../../mod/ping.php:255 -msgid "sent you a private message" +#: ../../include/ItemObject.php:185 +msgid "starred" msgstr "" -#: ../../mod/ping.php:306 -msgid "added your channel" +#: ../../include/ItemObject.php:203 +msgid "Add Tag" msgstr "" -#: ../../mod/ping.php:347 -msgid "posted an event" +#: ../../include/ItemObject.php:221 ../../mod/photos.php:974 +msgid "I like this (toggle)" msgstr "" -#: ../../mod/acl.php:244 -msgid "network" +#: ../../include/ItemObject.php:222 ../../mod/photos.php:975 +msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/settings.php:73 -msgid "Name is required" +#: ../../include/ItemObject.php:226 +msgid "Share This" msgstr "" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" +#: ../../include/ItemObject.php:226 +msgid "share" msgstr "" -#: ../../mod/settings.php:197 -msgid "Passwords do not match. Password unchanged." +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../mod/settings.php:201 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../include/ItemObject.php:251 +msgid "to" msgstr "" -#: ../../mod/settings.php:215 -msgid "Password changed." +#: ../../include/ItemObject.php:252 +msgid "via" msgstr "" -#: ../../mod/settings.php:217 -msgid "Password update failed. Please try again." +#: ../../include/ItemObject.php:253 +msgid "Wall-to-Wall" msgstr "" -#: ../../mod/settings.php:231 -msgid "Not valid email." +#: ../../include/ItemObject.php:254 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../mod/settings.php:234 -msgid "Protected email address. Cannot change to that email." +#: ../../include/ItemObject.php:290 +msgid "Save Bookmarks" msgstr "" -#: ../../mod/settings.php:243 -msgid "System failure storing new email. Please try again." +#: ../../include/ItemObject.php:291 +msgid "Add to Calendar" msgstr "" -#: ../../mod/settings.php:479 -msgid "Settings updated." +#: ../../include/ItemObject.php:299 ../../mod/photos.php:1142 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../mod/settings.php:548 ../../mod/settings.php:574 -#: ../../mod/settings.php:610 -msgid "Add application" +#: ../../include/ItemObject.php:300 ../../mod/photos.php:1143 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../mod/settings.php:551 -msgid "Name of application" -msgstr "" +#: ../../include/ItemObject.php:331 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/settings.php:552 ../../mod/settings.php:578 -msgid "Consumer Key" +#: ../../include/ItemObject.php:596 ../../mod/photos.php:993 +#: ../../mod/photos.php:1103 +msgid "This is you" msgstr "" -#: ../../mod/settings.php:552 ../../mod/settings.php:553 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../include/ItemObject.php:599 ../../mod/mood.php:135 +#: ../../mod/profiles.php:633 ../../mod/connect.php:92 ../../mod/setup.php:313 +#: ../../mod/setup.php:358 ../../mod/poke.php:166 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/events.php:587 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/photos.php:594 ../../mod/photos.php:671 +#: ../../mod/photos.php:956 ../../mod/photos.php:996 ../../mod/photos.php:1106 +#: ../../mod/connedit.php:555 ../../mod/thing.php:284 ../../mod/thing.php:327 +#: ../../mod/pdledit.php:58 ../../mod/settings.php:549 +#: ../../mod/settings.php:661 ../../mod/settings.php:690 +#: ../../mod/settings.php:714 ../../mod/settings.php:790 +#: ../../mod/settings.php:976 ../../mod/fsuggest.php:108 +#: ../../mod/filestorage.php:146 ../../mod/group.php:81 +#: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 +#: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 +#: ../../mod/admin.php:1278 ../../mod/invite.php:142 ../../mod/locs.php:99 +#: ../../mod/mail.php:348 ../../mod/xchan.php:11 ../../mod/appman.php:99 +#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/blogga/php/config.php:67 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" msgstr "" -#: ../../mod/settings.php:553 ../../mod/settings.php:579 -msgid "Consumer Secret" +#: ../../include/ItemObject.php:600 +msgid "Bold" msgstr "" -#: ../../mod/settings.php:554 ../../mod/settings.php:580 -msgid "Redirect" +#: ../../include/ItemObject.php:601 +msgid "Italic" msgstr "" -#: ../../mod/settings.php:554 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../include/ItemObject.php:602 +msgid "Underline" msgstr "" -#: ../../mod/settings.php:555 ../../mod/settings.php:581 -msgid "Icon url" +#: ../../include/ItemObject.php:603 +msgid "Quote" msgstr "" -#: ../../mod/settings.php:555 -msgid "Optional" +#: ../../include/ItemObject.php:604 +msgid "Code" msgstr "" -#: ../../mod/settings.php:566 -msgid "You can't edit this application." +#: ../../include/ItemObject.php:605 +msgid "Image" msgstr "" -#: ../../mod/settings.php:609 -msgid "Connected Apps" +#: ../../include/ItemObject.php:606 +msgid "Link" msgstr "" -#: ../../mod/settings.php:613 -msgid "Client key starts with" +#: ../../include/ItemObject.php:607 +msgid "Video" msgstr "" -#: ../../mod/settings.php:614 -msgid "No name" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../mod/settings.php:615 -msgid "Remove authorization" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/settings.php:626 -msgid "No feature settings configured" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/settings.php:634 -msgid "Feature Settings" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/settings.php:657 -msgid "Account Settings" +#: ../../mod/profperm.php:123 +msgid "Visible To" msgstr "" -#: ../../mod/settings.php:658 -msgid "Password Settings" +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" msgstr "" -#: ../../mod/settings.php:659 -msgid "New Password:" +#: ../../mod/mitem.php:24 ../../mod/menu.php:108 +msgid "Menu not found." msgstr "" -#: ../../mod/settings.php:660 -msgid "Confirm:" +#: ../../mod/mitem.php:67 +msgid "Menu element updated." msgstr "" -#: ../../mod/settings.php:660 -msgid "Leave password fields blank unless changing" +#: ../../mod/mitem.php:71 +msgid "Unable to update menu element." msgstr "" -#: ../../mod/settings.php:662 ../../mod/settings.php:985 -msgid "Email Address:" +#: ../../mod/mitem.php:77 +msgid "Menu element added." msgstr "" -#: ../../mod/settings.php:663 ../../mod/removeaccount.php:61 -msgid "Remove Account" +#: ../../mod/mitem.php:81 +msgid "Unable to add menu element." msgstr "" -#: ../../mod/settings.php:664 -msgid "Remove this account from this server including all its channels" +#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 +msgid "Not found." msgstr "" -#: ../../mod/settings.php:665 ../../mod/settings.php:1067 -msgid "Warning: This action is permanent and cannot be reversed." +#: ../../mod/mitem.php:127 +msgid "Manage Menu Elements" msgstr "" -#: ../../mod/settings.php:681 -msgid "Off" +#: ../../mod/mitem.php:130 +msgid "Edit menu" msgstr "" -#: ../../mod/settings.php:681 -msgid "On" +#: ../../mod/mitem.php:133 +msgid "Edit element" msgstr "" -#: ../../mod/settings.php:688 -msgid "Additional Features" +#: ../../mod/mitem.php:134 +msgid "Drop element" msgstr "" -#: ../../mod/settings.php:713 -msgid "Connector Settings" +#: ../../mod/mitem.php:135 +msgid "New element" msgstr "" -#: ../../mod/settings.php:743 ../../mod/admin.php:362 -msgid "No special theme for mobile devices" +#: ../../mod/mitem.php:136 +msgid "Edit this menu container" msgstr "" -#: ../../mod/settings.php:752 -#, php-format -msgid "%s - (Experimental)" +#: ../../mod/mitem.php:137 +msgid "Add menu element" msgstr "" -#: ../../mod/settings.php:788 -msgid "Display Settings" +#: ../../mod/mitem.php:138 +msgid "Delete this menu item" msgstr "" -#: ../../mod/settings.php:794 -msgid "Display Theme:" +#: ../../mod/mitem.php:139 +msgid "Edit this menu item" msgstr "" -#: ../../mod/settings.php:795 -msgid "Mobile Theme:" +#: ../../mod/mitem.php:158 +msgid "New Menu Element" msgstr "" -#: ../../mod/settings.php:796 -msgid "Enable user zoom on mobile devices" +#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 +msgid "Menu Item Permissions" msgstr "" -#: ../../mod/settings.php:797 -msgid "Update browser every xx seconds" +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1011 +msgid "(click to open/close)" msgstr "" -#: ../../mod/settings.php:797 -msgid "Minimum of 10 seconds, no maximum" +#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 +msgid "Link text" msgstr "" -#: ../../mod/settings.php:798 -msgid "Maximum number of conversations to load at any time:" +#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 +msgid "URL of link" msgstr "" -#: ../../mod/settings.php:798 -msgid "Maximum of 100 items" +#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 +msgid "Use RedMatrix magic-auth if available" msgstr "" -#: ../../mod/settings.php:799 -msgid "Don't show emoticons" +#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 +msgid "Open link in new window" msgstr "" -#: ../../mod/settings.php:800 -msgid "Link post titles to source" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Order in list" msgstr "" -#: ../../mod/settings.php:801 -msgid "System Page Layout Editor - (advanced)" +#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../mod/settings.php:835 -msgid "Nobody except yourself" +#: ../../mod/mitem.php:181 +msgid "Menu item not found." msgstr "" -#: ../../mod/settings.php:836 -msgid "Only those you specifically allow" +#: ../../mod/mitem.php:190 +msgid "Menu item deleted." msgstr "" -#: ../../mod/settings.php:837 -msgid "Approved connections" +#: ../../mod/mitem.php:192 +msgid "Menu item could not be deleted." msgstr "" -#: ../../mod/settings.php:838 -msgid "Any connections" +#: ../../mod/mitem.php:201 +msgid "Edit Menu Element" msgstr "" -#: ../../mod/settings.php:839 -msgid "Anybody on this website" +#: ../../mod/mitem.php:213 ../../mod/menu.php:130 +msgid "Modify" msgstr "" -#: ../../mod/settings.php:840 -msgid "Anybody in this network" +#: ../../mod/achievements.php:34 +msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../mod/settings.php:841 -msgid "Anybody authenticated" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 +msgid "Profile not found." msgstr "" -#: ../../mod/settings.php:842 -msgid "Anybody on the internet" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../mod/settings.php:916 -msgid "Publish your default profile in the network directory" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" msgstr "" -#: ../../mod/settings.php:916 ../../mod/settings.php:921 -#: ../../mod/settings.php:1004 ../../mod/api.php:106 -#: ../../mod/profiles.php:574 ../../mod/admin.php:392 -msgid "No" +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." msgstr "" -#: ../../mod/settings.php:916 ../../mod/settings.php:921 -#: ../../mod/settings.php:1004 ../../mod/api.php:105 -#: ../../mod/profiles.php:573 ../../mod/admin.php:394 -msgid "Yes" +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/settings.php:921 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." msgstr "" -#: ../../mod/settings.php:925 ../../mod/profile_photo.php:365 -msgid "or" +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." msgstr "" -#: ../../mod/settings.php:930 -msgid "Your channel address is" +#: ../../mod/profiles.php:378 +msgid "Marital Status" msgstr "" -#: ../../mod/settings.php:974 -msgid "Channel Settings" +#: ../../mod/profiles.php:382 +msgid "Romantic Partner" msgstr "" -#: ../../mod/settings.php:983 -msgid "Basic Settings" +#: ../../mod/profiles.php:386 +msgid "Likes" msgstr "" -#: ../../mod/settings.php:986 -msgid "Your Timezone:" +#: ../../mod/profiles.php:390 +msgid "Dislikes" msgstr "" -#: ../../mod/settings.php:987 -msgid "Default Post Location:" +#: ../../mod/profiles.php:394 +msgid "Work/Employment" msgstr "" -#: ../../mod/settings.php:987 -msgid "Geographical location to display on your posts" +#: ../../mod/profiles.php:397 +msgid "Religion" msgstr "" -#: ../../mod/settings.php:988 -msgid "Use Browser Location:" +#: ../../mod/profiles.php:401 +msgid "Political Views" msgstr "" -#: ../../mod/settings.php:990 -msgid "Adult Content" +#: ../../mod/profiles.php:405 +msgid "Gender" msgstr "" -#: ../../mod/settings.php:990 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../mod/profiles.php:409 +msgid "Sexual Preference" msgstr "" -#: ../../mod/settings.php:992 -msgid "Security and Privacy Settings" +#: ../../mod/profiles.php:413 +msgid "Homepage" msgstr "" -#: ../../mod/settings.php:994 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../mod/profiles.php:417 +msgid "Interests" msgstr "" -#: ../../mod/settings.php:996 -msgid "Hide my online presence" -msgstr "" - -#: ../../mod/settings.php:996 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../mod/settings.php:998 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../mod/settings.php:999 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../mod/settings.php:1000 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../mod/settings.php:1001 -msgid "Private - default private, never open or public" +#: ../../mod/profiles.php:421 ../../mod/admin.php:866 +msgid "Address" msgstr "" -#: ../../mod/settings.php:1002 -msgid "Blocked - default blocked to/from everybody" +#: ../../mod/profiles.php:428 ../../mod/pubsites.php:25 +msgid "Location" msgstr "" -#: ../../mod/settings.php:1004 -msgid "Allow others to tag your posts" +#: ../../mod/profiles.php:511 +msgid "Profile updated." msgstr "" -#: ../../mod/settings.php:1004 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" +#: ../../mod/profiles.php:590 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/settings.php:1006 -msgid "Advanced Privacy Settings" +#: ../../mod/profiles.php:591 ../../mod/api.php:105 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:392 +msgid "Yes" msgstr "" -#: ../../mod/settings.php:1008 -msgid "Expire other channel content after this many days" +#: ../../mod/profiles.php:592 ../../mod/api.php:106 ../../mod/settings.php:916 +#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/admin.php:390 +msgid "No" msgstr "" -#: ../../mod/settings.php:1008 -msgid "0 or blank prevents expiration" +#: ../../mod/profiles.php:632 +msgid "Edit Profile Details" msgstr "" -#: ../../mod/settings.php:1009 -msgid "Maximum Friend Requests/Day:" +#: ../../mod/profiles.php:634 +msgid "View this profile" msgstr "" -#: ../../mod/settings.php:1009 -msgid "May reduce spam activity" +#: ../../mod/profiles.php:636 +msgid "Change Profile Photo" msgstr "" -#: ../../mod/settings.php:1010 -msgid "Default Post Permissions" +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/settings.php:1015 -msgid "Channel permissions category:" +#: ../../mod/profiles.php:638 +msgid "Clone this profile" msgstr "" -#: ../../mod/settings.php:1023 -msgid "Maximum private messages per day from unknown people:" +#: ../../mod/profiles.php:639 +msgid "Delete this profile" msgstr "" -#: ../../mod/settings.php:1023 -msgid "Useful to reduce spamming" +#: ../../mod/profiles.php:641 +msgid "Import profile from file" msgstr "" -#: ../../mod/settings.php:1026 -msgid "Notification Settings" +#: ../../mod/profiles.php:642 +msgid "Export profile to file" msgstr "" -#: ../../mod/settings.php:1027 -msgid "By default post a status message when:" +#: ../../mod/profiles.php:643 +msgid "Profile Name:" msgstr "" -#: ../../mod/settings.php:1028 -msgid "accepting a friend request" +#: ../../mod/profiles.php:644 +msgid "Your Full Name:" msgstr "" -#: ../../mod/settings.php:1029 -msgid "joining a forum/community" +#: ../../mod/profiles.php:645 +msgid "Title/Description:" msgstr "" -#: ../../mod/settings.php:1030 -msgid "making an interesting profile change" +#: ../../mod/profiles.php:646 +msgid "Your Gender:" msgstr "" -#: ../../mod/settings.php:1031 -msgid "Send a notification email when:" +#: ../../mod/profiles.php:647 +msgid "Birthday :" msgstr "" -#: ../../mod/settings.php:1032 -msgid "You receive a connection request" +#: ../../mod/profiles.php:648 +msgid "Street Address:" msgstr "" -#: ../../mod/settings.php:1033 -msgid "Your connections are confirmed" +#: ../../mod/profiles.php:649 +msgid "Locality/City:" msgstr "" -#: ../../mod/settings.php:1034 -msgid "Someone writes on your profile wall" +#: ../../mod/profiles.php:650 +msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/settings.php:1035 -msgid "Someone writes a followup comment" +#: ../../mod/profiles.php:651 +msgid "Country:" msgstr "" -#: ../../mod/settings.php:1036 -msgid "You receive a private message" +#: ../../mod/profiles.php:652 +msgid "Region/State:" msgstr "" -#: ../../mod/settings.php:1037 -msgid "You receive a friend suggestion" +#: ../../mod/profiles.php:653 +msgid " Marital Status:" msgstr "" -#: ../../mod/settings.php:1038 -msgid "You are tagged in a post" +#: ../../mod/profiles.php:654 +msgid "Who: (if applicable)" msgstr "" -#: ../../mod/settings.php:1039 -msgid "You are poked/prodded/etc. in a post" +#: ../../mod/profiles.php:655 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/settings.php:1042 -msgid "Show visual notifications including:" +#: ../../mod/profiles.php:656 +msgid "Since [date]:" msgstr "" -#: ../../mod/settings.php:1044 -msgid "Unseen matrix activity" +#: ../../mod/profiles.php:658 +msgid "Homepage URL:" msgstr "" -#: ../../mod/settings.php:1045 -msgid "Unseen channel activity" +#: ../../mod/profiles.php:661 +msgid "Religious Views:" msgstr "" -#: ../../mod/settings.php:1046 -msgid "Unseen private messages" +#: ../../mod/profiles.php:662 +msgid "Keywords:" msgstr "" -#: ../../mod/settings.php:1046 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 -msgid "Recommended" +#: ../../mod/profiles.php:665 +msgid "Example: fishing photography software" msgstr "" -#: ../../mod/settings.php:1047 -msgid "Upcoming events" +#: ../../mod/profiles.php:666 +msgid "Used in directory listings" msgstr "" -#: ../../mod/settings.php:1048 -msgid "Events today" +#: ../../mod/profiles.php:667 +msgid "Tell us about yourself..." msgstr "" -#: ../../mod/settings.php:1049 -msgid "Upcoming birthdays" +#: ../../mod/profiles.php:668 +msgid "Hobbies/Interests" msgstr "" -#: ../../mod/settings.php:1049 -msgid "Not available in all themes" +#: ../../mod/profiles.php:669 +msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/settings.php:1050 -msgid "System (personal) notifications" +#: ../../mod/profiles.php:670 +msgid "My other channels" msgstr "" -#: ../../mod/settings.php:1051 -msgid "System info messages" +#: ../../mod/profiles.php:671 +msgid "Musical interests" msgstr "" -#: ../../mod/settings.php:1052 -msgid "System critical alerts" +#: ../../mod/profiles.php:672 +msgid "Books, literature" msgstr "" -#: ../../mod/settings.php:1053 -msgid "New connections" +#: ../../mod/profiles.php:673 +msgid "Television" msgstr "" -#: ../../mod/settings.php:1054 -msgid "System Registrations" +#: ../../mod/profiles.php:674 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/settings.php:1056 -msgid "Notify me of events this many days in advance" +#: ../../mod/profiles.php:675 +msgid "Love/romance" msgstr "" -#: ../../mod/settings.php:1056 -msgid "Must be greater than 0" +#: ../../mod/profiles.php:676 +msgid "Work/employment" msgstr "" -#: ../../mod/settings.php:1058 -msgid "Advanced Account/Page Type Settings" +#: ../../mod/profiles.php:677 +msgid "School/education" msgstr "" -#: ../../mod/settings.php:1059 -msgid "Change the behaviour of this account for special situations" +#: ../../mod/profiles.php:683 +msgid "This is your default profile." msgstr "" -#: ../../mod/settings.php:1062 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" +#: ../../mod/profiles.php:694 ../../mod/directory.php:148 +msgid "Age: " msgstr "" -#: ../../mod/settings.php:1063 -msgid "Miscellaneous Settings" +#: ../../mod/profiles.php:737 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/settings.php:1065 -msgid "Personal menu to display in your channel pages" +#: ../../mod/profiles.php:738 +msgid "Add profile things" msgstr "" -#: ../../mod/settings.php:1066 -msgid "Remove this channel" +#: ../../mod/profiles.php:739 +msgid "Include desirable objects in your profile" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" +#: ../../mod/connect.php:87 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../mod/poke.php:165 -msgid "Make this post private" +#: ../../mod/connect.php:89 ../../mod/connect.php:109 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../mod/connect.php:90 +msgid "" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../mod/connect.php:91 ../../mod/connect.php:112 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" msgstr "" #: ../../mod/post.php:229 @@ -4529,619 +4120,907 @@ msgstr "" msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../mod/setup.php:166 +msgid "Red Matrix Server - Setup" msgstr "" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../mod/setup.php:172 +msgid "Could not connect to database." msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." +#: ../../mod/setup.php:176 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 -msgid "Channel not found." +#: ../../mod/setup.php:183 +msgid "Could not create table." msgstr "" -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." +#: ../../mod/setup.php:189 +msgid "Your site database has been installed." msgstr "" -#: ../../mod/siteinfo.php:90 -#, php-format -msgid "Version %s" +#: ../../mod/setup.php:194 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../mod/siteinfo.php:111 -msgid "Installed plugins/addons/apps:" +#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:663 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../mod/siteinfo.php:124 -msgid "No installed plugins/addons/apps" +#: ../../mod/setup.php:261 +msgid "System check" msgstr "" -#: ../../mod/siteinfo.php:132 -msgid "Red" +#: ../../mod/setup.php:265 ../../mod/events.php:434 ../../mod/photos.php:868 +msgid "Next" msgstr "" -#: ../../mod/siteinfo.php:133 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." +#: ../../mod/setup.php:266 +msgid "Check again" msgstr "" -#: ../../mod/siteinfo.php:137 -msgid "Running at web location" +#: ../../mod/setup.php:289 +msgid "Database connection" msgstr "" -#: ../../mod/siteinfo.php:138 +#: ../../mod/setup.php:290 msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "" - -#: ../../mod/siteinfo.php:139 -msgid "Bug reports and issues: please visit" +"In order to install Red Matrix we need to know how to connect to your " +"database." msgstr "" -#: ../../mod/siteinfo.php:142 +#: ../../mod/setup.php:291 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../mod/siteinfo.php:144 -msgid "Site Administrators" +#: ../../mod/setup.php:292 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../mod/blocks.php:62 -msgid "Block Name" +#: ../../mod/setup.php:296 +msgid "Database Server Name" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:547 -msgid "Profile not found." +#: ../../mod/setup.php:296 +msgid "Default is localhost" msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." +#: ../../mod/setup.php:297 +msgid "Database Port" msgstr "" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" +#: ../../mod/setup.php:297 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." +#: ../../mod/setup.php:298 +msgid "Database Login Name" msgstr "" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." +#: ../../mod/setup.php:299 +msgid "Database Login Password" msgstr "" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." +#: ../../mod/setup.php:300 +msgid "Database Name" msgstr "" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." +#: ../../mod/setup.php:301 +msgid "Database Type" msgstr "" -#: ../../mod/profiles.php:362 -msgid "Marital Status" +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "Site administrator email address" msgstr "" -#: ../../mod/profiles.php:366 -msgid "Romantic Partner" +#: ../../mod/setup.php:303 ../../mod/setup.php:347 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../mod/profiles.php:370 -msgid "Likes" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Website URL" msgstr "" -#: ../../mod/profiles.php:374 -msgid "Dislikes" +#: ../../mod/setup.php:304 ../../mod/setup.php:349 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../mod/profiles.php:378 -msgid "Work/Employment" +#: ../../mod/setup.php:307 ../../mod/setup.php:352 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../mod/profiles.php:381 -msgid "Religion" +#: ../../mod/setup.php:335 +msgid "Site settings" msgstr "" -#: ../../mod/profiles.php:385 -msgid "Political Views" +#: ../../mod/setup.php:395 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../mod/profiles.php:389 -msgid "Gender" +#: ../../mod/setup.php:396 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../mod/profiles.php:393 -msgid "Sexual Preference" +#: ../../mod/setup.php:400 +msgid "PHP executable path" msgstr "" -#: ../../mod/profiles.php:397 -msgid "Homepage" +#: ../../mod/setup.php:400 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../mod/profiles.php:401 -msgid "Interests" +#: ../../mod/setup.php:405 +msgid "Command line PHP" msgstr "" -#: ../../mod/profiles.php:405 ../../mod/admin.php:868 -msgid "Address" +#: ../../mod/setup.php:414 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../mod/profiles.php:412 ../../mod/pubsites.php:25 -msgid "Location" +#: ../../mod/setup.php:415 +msgid "This is required for message delivery to work." msgstr "" -#: ../../mod/profiles.php:495 -msgid "Profile updated." +#: ../../mod/setup.php:417 +msgid "PHP register_argc_argv" msgstr "" -#: ../../mod/profiles.php:572 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/setup.php:438 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../mod/profiles.php:614 -msgid "Edit Profile Details" +#: ../../mod/setup.php:439 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../mod/profiles.php:616 -msgid "View this profile" +#: ../../mod/setup.php:441 +msgid "Generate encryption keys" msgstr "" -#: ../../mod/profiles.php:618 -msgid "Change Profile Photo" +#: ../../mod/setup.php:448 +msgid "libCurl PHP module" msgstr "" -#: ../../mod/profiles.php:619 -msgid "Create a new profile using these settings" +#: ../../mod/setup.php:449 +msgid "GD graphics PHP module" msgstr "" -#: ../../mod/profiles.php:620 -msgid "Clone this profile" +#: ../../mod/setup.php:450 +msgid "OpenSSL PHP module" msgstr "" -#: ../../mod/profiles.php:621 -msgid "Delete this profile" +#: ../../mod/setup.php:451 +msgid "mysqli or postgres PHP module" msgstr "" -#: ../../mod/profiles.php:623 -msgid "Import profile from file" +#: ../../mod/setup.php:452 +msgid "mb_string PHP module" msgstr "" -#: ../../mod/profiles.php:624 -msgid "Export profile to file" +#: ../../mod/setup.php:453 +msgid "mcrypt PHP module" msgstr "" -#: ../../mod/profiles.php:625 -msgid "Profile Name:" +#: ../../mod/setup.php:458 ../../mod/setup.php:460 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../mod/profiles.php:626 -msgid "Your Full Name:" +#: ../../mod/setup.php:458 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../mod/profiles.php:627 -msgid "Title/Description:" +#: ../../mod/setup.php:464 ../../mod/setup.php:467 +msgid "proc_open" msgstr "" -#: ../../mod/profiles.php:628 -msgid "Your Gender:" +#: ../../mod/setup.php:464 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../mod/profiles.php:629 -msgid "Birthday :" +#: ../../mod/setup.php:472 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../mod/profiles.php:630 -msgid "Street Address:" +#: ../../mod/setup.php:476 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../mod/profiles.php:631 -msgid "Locality/City:" +#: ../../mod/setup.php:480 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../mod/profiles.php:632 -msgid "Postal/Zip Code:" +#: ../../mod/setup.php:484 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." msgstr "" -#: ../../mod/profiles.php:633 -msgid "Country:" +#: ../../mod/setup.php:488 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../mod/profiles.php:634 -msgid "Region/State:" +#: ../../mod/setup.php:492 +msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: ../../mod/profiles.php:635 -msgid " Marital Status:" +#: ../../mod/setup.php:508 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../mod/profiles.php:636 -msgid "Who: (if applicable)" +#: ../../mod/setup.php:509 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../mod/profiles.php:637 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/setup.php:510 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." msgstr "" -#: ../../mod/profiles.php:638 -msgid "Since [date]:" +#: ../../mod/setup.php:511 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../mod/profiles.php:640 -msgid "Homepage URL:" +#: ../../mod/setup.php:514 +msgid ".htconfig.php is writable" msgstr "" -#: ../../mod/profiles.php:643 -msgid "Religious Views:" +#: ../../mod/setup.php:524 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../mod/profiles.php:644 -msgid "Keywords:" +#: ../../mod/setup.php:525 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." msgstr "" -#: ../../mod/profiles.php:647 -msgid "Example: fishing photography software" +#: ../../mod/setup.php:526 ../../mod/setup.php:544 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../mod/profiles.php:648 -msgid "Used in directory listings" +#: ../../mod/setup.php:527 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../mod/profiles.php:649 -msgid "Tell us about yourself..." +#: ../../mod/setup.php:530 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../mod/profiles.php:650 -msgid "Hobbies/Interests" +#: ../../mod/setup.php:543 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to " +"have write access to the store directory under the Red top level folder" msgstr "" -#: ../../mod/profiles.php:651 -msgid "Contact information and Social Networks" +#: ../../mod/setup.php:547 +msgid "store is writable" msgstr "" -#: ../../mod/profiles.php:652 -msgid "My other channels" +#: ../../mod/setup.php:577 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../mod/profiles.php:653 -msgid "Musical interests" +#: ../../mod/setup.php:578 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../mod/profiles.php:654 -msgid "Books, literature" +#: ../../mod/setup.php:579 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../mod/profiles.php:655 -msgid "Television" +#: ../../mod/setup.php:580 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../mod/profiles.php:656 -msgid "Film/dance/culture/entertainment" +#: ../../mod/setup.php:581 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../mod/profiles.php:657 -msgid "Love/romance" +#: ../../mod/setup.php:582 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../mod/profiles.php:658 -msgid "Work/employment" +#: ../../mod/setup.php:584 +msgid "SSL certificate validation" msgstr "" -#: ../../mod/profiles.php:659 -msgid "School/education" +#: ../../mod/setup.php:590 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../mod/profiles.php:665 -msgid "This is your default profile." +#: ../../mod/setup.php:592 +msgid "Url rewrite is working" msgstr "" -#: ../../mod/profiles.php:676 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " +#: ../../mod/setup.php:602 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../mod/profiles.php:719 -msgid "Edit/Manage Profiles" +#: ../../mod/setup.php:626 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../mod/profiles.php:720 -msgid "Add profile things" +#: ../../mod/setup.php:661 +msgid "

      What next

      " msgstr "" -#: ../../mod/profiles.php:721 -msgid "Include desirable objects in your profile" +#: ../../mod/setup.php:662 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/profperm.php:123 -msgid "Visible To" +#: ../../mod/siteinfo.php:132 +msgid "Red" msgstr "" -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" +#: ../../mod/siteinfo.php:133 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" msgstr "" -#: ../../mod/events.php:86 -msgid "Event title and start time are required." +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." msgstr "" -#: ../../mod/events.php:100 -msgid "Event not found." +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/events.php:364 -msgid "l, F j" +#: ../../mod/siteinfo.php:142 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" msgstr "" -#: ../../mod/events.php:386 -msgid "Edit event" +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" msgstr "" -#: ../../mod/events.php:432 -msgid "Create New Event" +#: ../../mod/poke.php:159 +msgid "Poke/Prod" msgstr "" -#: ../../mod/events.php:560 -msgid "Event details" +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/events.php:561 -msgid "Starting date and Title are required." +#: ../../mod/poke.php:161 +msgid "Recipient" msgstr "" -#: ../../mod/events.php:565 -msgid "Event Starts:" +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" +#: ../../mod/poke.php:165 +msgid "Make this post private" msgstr "" -#: ../../mod/events.php:571 -msgid "Finish date/time is not known or not relevant" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../mod/events.php:573 -msgid "Event Finishes:" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../mod/events.php:577 -msgid "Description:" +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../mod/events.php:581 -msgid "Title:" +#: ../../mod/attach.php:9 +msgid "Item not available." msgstr "" -#: ../../mod/events.php:583 -msgid "Share this event" +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../mod/pubsites.php:16 -msgid "Public Sites" +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." msgstr "" -#: ../../mod/pubsites.php:19 +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "" + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "" + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "" + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in " -"the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Site URL" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Access Type" +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" msgstr "" -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" msgstr "" -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." msgstr "" -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../mod/sources.php:130 +msgid "Edit Source" msgstr "" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" +#: ../../mod/sources.php:131 +msgid "Delete Source" msgstr "" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" +#: ../../mod/sources.php:158 +msgid "Source removed" msgstr "" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" +#: ../../mod/sources.php:160 +msgid "Unable to remove source." msgstr "" -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" +#: ../../mod/blocks.php:99 +msgid "Block Name" msgstr "" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" +#: ../../mod/search.php:13 ../../mod/directory.php:15 ../../mod/photos.php:458 +#: ../../mod/display.php:9 ../../mod/viewconnections.php:17 +msgid "Public access denied." msgstr "" -#: ../../mod/chat.php:167 -msgid "Room not found" +#: ../../mod/directory.php:161 +msgid "Gender: " msgstr "" -#: ../../mod/chat.php:178 -msgid "Leave Room" +#: ../../mod/directory.php:163 +msgid "Status: " msgstr "" -#: ../../mod/chat.php:179 -msgid "Delete This Room" +#: ../../mod/directory.php:165 +msgid "Homepage: " msgstr "" -#: ../../mod/chat.php:180 -msgid "I am away right now" +#: ../../mod/directory.php:168 +msgid "Hometown: " msgstr "" -#: ../../mod/chat.php:181 -msgid "I am online" +#: ../../mod/directory.php:170 +msgid "About: " msgstr "" -#: ../../mod/chat.php:183 -msgid "Bookmark this room" +#: ../../mod/directory.php:225 +msgid "Public Forum:" msgstr "" -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" +#: ../../mod/directory.php:228 +msgid "Keywords: " msgstr "" -#: ../../mod/chat.php:208 -msgid "Chatroom Name" +#: ../../mod/directory.php:268 +msgid "Finding:" msgstr "" -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" +#: ../../mod/directory.php:273 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:290 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../mod/register.php:42 +#: ../../mod/register.php:44 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../mod/register.php:48 +#: ../../mod/register.php:50 msgid "" "Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../mod/register.php:82 +#: ../../mod/register.php:84 msgid "Passwords do not match." msgstr "" -#: ../../mod/register.php:115 +#: ../../mod/register.php:117 msgid "" "Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../mod/register.php:121 +#: ../../mod/register.php:123 msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/register.php:124 +#: ../../mod/register.php:126 msgid "Your registration can not be processed." msgstr "" -#: ../../mod/register.php:161 +#: ../../mod/register.php:163 msgid "Registration on this site/hub is by approval only." msgstr "" -#: ../../mod/register.php:162 +#: ../../mod/register.php:164 msgid "Register at another affiliated site/hub" msgstr "" -#: ../../mod/register.php:170 +#: ../../mod/register.php:174 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "" -#: ../../mod/register.php:181 +#: ../../mod/register.php:185 msgid "Terms of Service" msgstr "" -#: ../../mod/register.php:187 +#: ../../mod/register.php:191 #, php-format msgid "I accept the %s for this website" msgstr "" -#: ../../mod/register.php:189 +#: ../../mod/register.php:193 #, php-format msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../mod/register.php:203 ../../mod/admin.php:415 +#: ../../mod/register.php:207 ../../mod/admin.php:413 msgid "Registration" msgstr "" -#: ../../mod/register.php:208 +#: ../../mod/register.php:212 msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/register.php:209 +#: ../../mod/register.php:213 msgid "Please enter your invitation code" msgstr "" -#: ../../mod/register.php:212 +#: ../../mod/register.php:216 msgid "Your email address" msgstr "" -#: ../../mod/register.php:213 +#: ../../mod/register.php:217 msgid "Choose a password" msgstr "" -#: ../../mod/register.php:214 +#: ../../mod/register.php:218 msgid "Please re-enter your password" msgstr "" -#: ../../mod/chatsvc.php:111 -msgid "Away" +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." msgstr "" -#: ../../mod/chatsvc.php:115 -msgid "Online" +#: ../../mod/events.php:86 +msgid "Event title and start time are required." msgstr "" -#: ../../mod/regmod.php:11 -msgid "Please login." +#: ../../mod/events.php:100 +msgid "Event not found." msgstr "" -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../mod/events.php:364 +msgid "l, F j" msgstr "" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" +#: ../../mod/events.php:386 +msgid "Edit event" msgstr "" -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." +#: ../../mod/events.php:432 +msgid "Create New Event" +msgstr "" + +#: ../../mod/events.php:433 ../../mod/photos.php:859 +msgid "Previous" +msgstr "" + +#: ../../mod/events.php:560 +msgid "Event details" +msgstr "" + +#: ../../mod/events.php:561 +msgid "Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:565 +msgid "Event Starts:" +msgstr "" + +#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "" + +#: ../../mod/events.php:571 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: ../../mod/events.php:573 +msgid "Event Finishes:" +msgstr "" + +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "" + +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in " +"the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "" + +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "" + +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "" + +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "" + +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "" + +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." msgstr "" #: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 @@ -5200,1037 +5079,1352 @@ msgstr "" msgid "Authenticate" msgstr "" -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" +#: ../../mod/filer.php:49 +msgid "- select -" msgstr "" -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" +#: ../../mod/photos.php:97 +msgid "Album not found." msgstr "" -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../mod/photos.php:119 ../../mod/photos.php:672 +msgid "Delete Album" msgstr "" -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../mod/photos.php:159 ../../mod/photos.php:957 +msgid "Delete Photo" msgstr "" -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../mod/photos.php:469 +msgid "No photos selected" msgstr "" -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." msgstr "" -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../mod/network.php:79 -msgid "No such group" +#: ../../mod/photos.php:579 +msgid "Upload Photos" msgstr "" -#: ../../mod/network.php:118 -msgid "Search Results For:" +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 +msgid "Enter a new album name" msgstr "" -#: ../../mod/network.php:172 -msgid "Collection is empty" +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../mod/network.php:180 -msgid "Collection: " +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/network.php:193 -msgid "Connection: " +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" msgstr "" -#: ../../mod/network.php:196 -msgid "Invalid connection." +#: ../../mod/photos.php:654 ../../mod/photos.php:1166 +#: ../../mod/photos.php:1182 +msgid "Contact Photos" msgstr "" -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." +#: ../../mod/photos.php:678 +msgid "Show Newest First" msgstr "" -#: ../../mod/connections.php:51 ../../mod/connedit.php:86 -msgid "Could not locate selected profile." +#: ../../mod/photos.php:680 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:707 ../../mod/photos.php:1214 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:736 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:781 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../mod/photos.php:783 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:841 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:848 +msgid "Private Photo" +msgstr "" + +#: ../../mod/photos.php:863 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:905 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "" + +#: ../../mod/photos.php:937 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:939 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:940 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:947 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:949 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:953 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../mod/photos.php:955 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../mod/photos.php:1132 +msgid "In This Photo:" +msgstr "" + +#: ../../mod/photos.php:1220 +msgid "View Album" +msgstr "" + +#: ../../mod/photos.php:1243 +msgid "Recent Photos" +msgstr "" + +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +msgid "Could not access contact record." +msgstr "" + +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 +msgid "Connection updated." +msgstr "" + +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 +msgid "Failed to update connection record." +msgstr "" + +#: ../../mod/connections.php:191 ../../mod/connections.php:292 +msgid "Blocked" +msgstr "" + +#: ../../mod/connections.php:196 ../../mod/connections.php:299 +msgid "Ignored" +msgstr "" + +#: ../../mod/connections.php:201 ../../mod/connections.php:313 +msgid "Hidden" +msgstr "" + +#: ../../mod/connections.php:206 ../../mod/connections.php:306 +msgid "Archived" +msgstr "" + +#: ../../mod/connections.php:230 ../../mod/connections.php:245 +msgid "All" +msgstr "" + +#: ../../mod/connections.php:270 +msgid "Suggest new connections" +msgstr "" + +#: ../../mod/connections.php:273 +msgid "New Connections" +msgstr "" + +#: ../../mod/connections.php:276 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../mod/connections.php:282 +msgid "Show all connections" +msgstr "" + +#: ../../mod/connections.php:285 +msgid "Unblocked" +msgstr "" + +#: ../../mod/connections.php:288 +msgid "Only show unblocked connections" +msgstr "" + +#: ../../mod/connections.php:295 +msgid "Only show blocked connections" +msgstr "" + +#: ../../mod/connections.php:302 +msgid "Only show ignored connections" +msgstr "" + +#: ../../mod/connections.php:309 +msgid "Only show archived connections" +msgstr "" + +#: ../../mod/connections.php:316 +msgid "Only show hidden connections" +msgstr "" + +#: ../../mod/connections.php:371 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../mod/connections.php:372 +msgid "Edit connection" +msgstr "" + +#: ../../mod/connections.php:410 +msgid "Search your connections" +msgstr "" + +#: ../../mod/connections.php:411 +msgid "Finding: " +msgstr "" + +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../mod/manage.php:144 +msgid "Create a new channel" +msgstr "" + +#: ../../mod/manage.php:149 +msgid "Current Channel" +msgstr "" + +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." +msgstr "" + +#: ../../mod/manage.php:152 +msgid "Default Channel" +msgstr "" + +#: ../../mod/manage.php:153 +msgid "Make Default" +msgstr "" + +#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" +msgstr "" + +#: ../../mod/connedit.php:189 +msgid "is now connected to" +msgstr "" + +#: ../../mod/connedit.php:310 +msgid "Could not access address book record." +msgstr "" + +#: ../../mod/connedit.php:324 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../mod/connedit.php:331 +msgid "Channel has been unblocked" +msgstr "" + +#: ../../mod/connedit.php:332 +msgid "Channel has been blocked" +msgstr "" + +#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 +#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 +#: ../../mod/connedit.php:388 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../mod/connedit.php:343 +msgid "Channel has been unignored" +msgstr "" + +#: ../../mod/connedit.php:344 +msgid "Channel has been ignored" +msgstr "" + +#: ../../mod/connedit.php:355 +msgid "Channel has been unarchived" +msgstr "" + +#: ../../mod/connedit.php:356 +msgid "Channel has been archived" +msgstr "" + +#: ../../mod/connedit.php:367 +msgid "Channel has been unhidden" +msgstr "" + +#: ../../mod/connedit.php:368 +msgid "Channel has been hidden" +msgstr "" + +#: ../../mod/connedit.php:383 +msgid "Channel has been approved" +msgstr "" + +#: ../../mod/connedit.php:384 +msgid "Channel has been unapproved" +msgstr "" + +#: ../../mod/connedit.php:412 +msgid "Connection has been removed." +msgstr "" + +#: ../../mod/connedit.php:432 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../mod/connedit.php:436 +msgid "Refresh Permissions" +msgstr "" + +#: ../../mod/connedit.php:439 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../mod/connedit.php:443 +msgid "Recent Activity" +msgstr "" + +#: ../../mod/connedit.php:446 +msgid "View recent posts and comments" +msgstr "" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:732 +msgid "Unblock" +msgstr "" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:731 +msgid "Block" +msgstr "" + +#: ../../mod/connedit.php:453 +msgid "Block or Unblock this connection" +msgstr "" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +msgid "Unignore" +msgstr "" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "" + +#: ../../mod/connedit.php:460 +msgid "Ignore or Unignore this connection" +msgstr "" + +#: ../../mod/connedit.php:463 +msgid "Unarchive" +msgstr "" + +#: ../../mod/connedit.php:463 +msgid "Archive" +msgstr "" + +#: ../../mod/connedit.php:466 +msgid "Archive or Unarchive this connection" +msgstr "" + +#: ../../mod/connedit.php:469 +msgid "Unhide" +msgstr "" + +#: ../../mod/connedit.php:469 +msgid "Hide" +msgstr "" + +#: ../../mod/connedit.php:472 +msgid "Hide or Unhide this connection" +msgstr "" + +#: ../../mod/connedit.php:479 +msgid "Delete this connection" +msgstr "" + +#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 +msgid "Approve this connection" +msgstr "" + +#: ../../mod/connedit.php:522 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../mod/connedit.php:538 +#, php-format +msgid "Connections: settings for %s" +msgstr "" + +#: ../../mod/connedit.php:539 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../mod/connedit.php:543 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "" + +#: ../../mod/connedit.php:545 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../mod/connedit.php:551 +msgid "inherited" +msgstr "" + +#: ../../mod/connedit.php:553 +msgid "Connection has no individual permissions!" +msgstr "" + +#: ../../mod/connedit.php:554 +msgid "" +"This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." msgstr "" -#: ../../mod/connections.php:94 ../../mod/connedit.php:140 -msgid "Connection updated." +#: ../../mod/connedit.php:556 +msgid "Profile Visibility" msgstr "" -#: ../../mod/connections.php:96 ../../mod/connedit.php:142 -msgid "Failed to update connection record." +#: ../../mod/connedit.php:557 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" +#: ../../mod/connedit.php:558 +msgid "Contact Information / Notes" msgstr "" -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" +#: ../../mod/connedit.php:559 +msgid "Edit contact notes" msgstr "" -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" +#: ../../mod/connedit.php:561 +msgid "Their Settings" msgstr "" -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" +#: ../../mod/connedit.php:562 +msgid "My Settings" msgstr "" -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" +#: ../../mod/connedit.php:564 +msgid "Clear/Disable Automatic Permissions" msgstr "" -#: ../../mod/connections.php:270 -msgid "Suggest new connections" +#: ../../mod/connedit.php:565 +msgid "Forum Members" msgstr "" -#: ../../mod/connections.php:273 -msgid "New Connections" +#: ../../mod/connedit.php:566 +msgid "Soapbox" msgstr "" -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" +#: ../../mod/connedit.php:567 +msgid "Full Sharing (typical social network permissions)" msgstr "" -#: ../../mod/connections.php:282 -msgid "Show all connections" +#: ../../mod/connedit.php:568 +msgid "Cautious Sharing " msgstr "" -#: ../../mod/connections.php:285 -msgid "Unblocked" +#: ../../mod/connedit.php:569 +msgid "Follow Only" msgstr "" -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" +#: ../../mod/connedit.php:570 +msgid "Individual Permissions" msgstr "" -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" +#: ../../mod/connedit.php:571 +msgid "" +"Some permissions may be inherited from your channel privacy settings, which have higher priority than individual " +"settings. Changing those inherited settings on this page will have no effect." msgstr "" -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" +#: ../../mod/connedit.php:572 +msgid "Advanced Permissions" msgstr "" -#: ../../mod/connections.php:309 -msgid "Only show archived connections" +#: ../../mod/connedit.php:573 +msgid "Simple Permissions (select one and submit)" msgstr "" -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" +#: ../../mod/connedit.php:577 +#, php-format +msgid "Visit %s's profile - %s" msgstr "" -#: ../../mod/connections.php:371 -#, php-format -msgid "%1$s [%2$s]" +#: ../../mod/connedit.php:578 +msgid "Block/Unblock contact" msgstr "" -#: ../../mod/connections.php:372 -msgid "Edit connection" +#: ../../mod/connedit.php:579 +msgid "Ignore contact" msgstr "" -#: ../../mod/connections.php:410 -msgid "Search your connections" +#: ../../mod/connedit.php:580 +msgid "Repair URL settings" msgstr "" -#: ../../mod/connections.php:411 -msgid "Finding: " +#: ../../mod/connedit.php:581 +msgid "View conversations" msgstr "" -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" +#: ../../mod/connedit.php:583 +msgid "Delete contact" msgstr "" -#: ../../mod/connedit.php:189 -msgid "is now connected to" +#: ../../mod/connedit.php:586 +msgid "Last update:" msgstr "" -#: ../../mod/connedit.php:310 -msgid "Could not access address book record." +#: ../../mod/connedit.php:588 +msgid "Update public posts" msgstr "" -#: ../../mod/connedit.php:324 -msgid "Refresh failed - channel is currently unavailable." +#: ../../mod/connedit.php:590 +msgid "Update now" msgstr "" -#: ../../mod/connedit.php:331 -msgid "Channel has been unblocked" +#: ../../mod/connedit.php:596 +msgid "Currently blocked" msgstr "" -#: ../../mod/connedit.php:332 -msgid "Channel has been blocked" +#: ../../mod/connedit.php:597 +msgid "Currently ignored" msgstr "" -#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 -#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:388 -msgid "Unable to set address book parameters." +#: ../../mod/connedit.php:598 +msgid "Currently archived" msgstr "" -#: ../../mod/connedit.php:343 -msgid "Channel has been unignored" +#: ../../mod/connedit.php:599 +msgid "Currently pending" msgstr "" -#: ../../mod/connedit.php:344 -msgid "Channel has been ignored" +#: ../../mod/connedit.php:600 +msgid "Hide this contact from others" msgstr "" -#: ../../mod/connedit.php:355 -msgid "Channel has been unarchived" +#: ../../mod/connedit.php:600 +msgid "" +"Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/connedit.php:356 -msgid "Channel has been archived" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../mod/connedit.php:367 -msgid "Channel has been unhidden" +#: ../../mod/thing.php:96 +msgid "Thing updated" msgstr "" -#: ../../mod/connedit.php:368 -msgid "Channel has been hidden" +#: ../../mod/thing.php:156 +msgid "Object store: failed" msgstr "" -#: ../../mod/connedit.php:383 -msgid "Channel has been approved" +#: ../../mod/thing.php:160 +msgid "Thing added" msgstr "" -#: ../../mod/connedit.php:384 -msgid "Channel has been unapproved" +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../mod/connedit.php:412 -msgid "Connection has been removed." +#: ../../mod/thing.php:232 +msgid "Show Thing" msgstr "" -#: ../../mod/connedit.php:432 -#, php-format -msgid "View %s's profile" +#: ../../mod/thing.php:239 +msgid "item not found." msgstr "" -#: ../../mod/connedit.php:436 -msgid "Refresh Permissions" +#: ../../mod/thing.php:270 +msgid "Edit Thing" msgstr "" -#: ../../mod/connedit.php:439 -msgid "Fetch updated permissions" +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" msgstr "" -#: ../../mod/connedit.php:443 -msgid "Recent Activity" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" msgstr "" -#: ../../mod/connedit.php:446 -msgid "View recent posts and comments" +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 -#: ../../mod/admin.php:734 -msgid "Unblock" +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" msgstr "" -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 -#: ../../mod/admin.php:733 -msgid "Block" +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" msgstr "" -#: ../../mod/connedit.php:453 -msgid "Block or Unblock this connection" +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 -msgid "Unignore" +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" msgstr "" -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 -#: ../../mod/notifications.php:51 -msgid "Ignore" +#: ../../mod/lostpass.php:15 +msgid "No valid account found." msgstr "" -#: ../../mod/connedit.php:460 -msgid "Ignore or Unignore this connection" +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../mod/connedit.php:463 -msgid "Unarchive" +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../mod/connedit.php:463 -msgid "Archive" +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/connedit.php:466 -msgid "Archive or Unarchive this connection" +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/connedit.php:469 -msgid "Unhide" +#: ../../mod/lostpass.php:85 ../../boot.php:1494 +msgid "Password Reset" msgstr "" -#: ../../mod/connedit.php:469 -msgid "Hide" +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/connedit.php:472 -msgid "Hide or Unhide this connection" +#: ../../mod/lostpass.php:87 +msgid "Your new password is" msgstr "" -#: ../../mod/connedit.php:479 -msgid "Delete this connection" +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 -msgid "Approve this connection" +#: ../../mod/lostpass.php:89 +msgid "click here to login" msgstr "" -#: ../../mod/connedit.php:522 -msgid "Accept connection to allow communication" +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../mod/connedit.php:538 +#: ../../mod/lostpass.php:107 #, php-format -msgid "Connections: settings for %s" +msgid "Your password has changed at %s" msgstr "" -#: ../../mod/connedit.php:539 -msgid "Apply these permissions automatically" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" msgstr "" -#: ../../mod/connedit.php:543 -msgid "Apply the permissions indicated on this page to all new connections." +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../mod/connedit.php:545 -msgid "Slide to adjust your degree of friendship" +#: ../../mod/lostpass.php:124 +msgid "Email Address" msgstr "" -#: ../../mod/connedit.php:551 -msgid "inherited" +#: ../../mod/lostpass.php:125 +msgid "Reset" msgstr "" -#: ../../mod/connedit.php:553 -msgid "Connection has no individual permissions!" +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" msgstr "" -#: ../../mod/connedit.php:554 -msgid "" -"This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" msgstr "" -#: ../../mod/connedit.php:556 -msgid "Profile Visibility" +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" msgstr "" -#: ../../mod/connedit.php:557 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" msgstr "" -#: ../../mod/connedit.php:558 -msgid "Contact Information / Notes" +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" msgstr "" -#: ../../mod/connedit.php:559 -msgid "Edit contact notes" +#: ../../mod/ping.php:257 +msgid "sent you a private message" msgstr "" -#: ../../mod/connedit.php:561 -msgid "Their Settings" +#: ../../mod/ping.php:308 +msgid "added your channel" msgstr "" -#: ../../mod/connedit.php:562 -msgid "My Settings" +#: ../../mod/ping.php:349 +msgid "posted an event" msgstr "" -#: ../../mod/connedit.php:564 -msgid "Clear/Disable Automatic Permissions" +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" msgstr "" -#: ../../mod/connedit.php:565 -msgid "Forum Members" +#: ../../mod/editblock.php:115 +msgid "Edit Block" msgstr "" -#: ../../mod/connedit.php:566 -msgid "Soapbox" +#: ../../mod/editblock.php:125 +msgid "Delete block?" msgstr "" -#: ../../mod/connedit.php:567 -msgid "Full Sharing (typical social network permissions)" +#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" msgstr "" -#: ../../mod/connedit.php:568 -msgid "Cautious Sharing " +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" msgstr "" -#: ../../mod/connedit.php:569 -msgid "Follow Only" +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/connedit.php:570 -msgid "Individual Permissions" +#: ../../mod/editblock.php:183 +msgid "Delete Block" msgstr "" -#: ../../mod/connedit.php:571 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than individual " -"settings. Changing those inherited settings on this page will have no effect." +#: ../../mod/pdledit.php:13 +msgid "Layout updated." msgstr "" -#: ../../mod/connedit.php:572 -msgid "Advanced Permissions" +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" msgstr "" -#: ../../mod/connedit.php:573 -msgid "Simple Permissions (select one and submit)" +#: ../../mod/pdledit.php:48 +msgid "Layout not found." msgstr "" -#: ../../mod/connedit.php:577 -#, php-format -msgid "Visit %s's profile - %s" +#: ../../mod/pdledit.php:54 +msgid "Module Name:" msgstr "" -#: ../../mod/connedit.php:578 -msgid "Block/Unblock contact" +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" msgstr "" -#: ../../mod/connedit.php:579 -msgid "Ignore contact" +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" msgstr "" -#: ../../mod/connedit.php:580 -msgid "Repair URL settings" +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" msgstr "" -#: ../../mod/connedit.php:581 -msgid "View conversations" +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" msgstr "" -#: ../../mod/connedit.php:583 -msgid "Delete contact" +#: ../../mod/editpost.php:31 +msgid "Item is not editable" msgstr "" -#: ../../mod/connedit.php:586 -msgid "Last update:" +#: ../../mod/editpost.php:53 +msgid "Delete item?" msgstr "" -#: ../../mod/connedit.php:588 -msgid "Update public posts" +#: ../../mod/settings.php:73 +msgid "Name is required" msgstr "" -#: ../../mod/connedit.php:590 -msgid "Update now" +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" msgstr "" -#: ../../mod/connedit.php:596 -msgid "Currently blocked" +#: ../../mod/settings.php:197 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/connedit.php:597 -msgid "Currently ignored" +#: ../../mod/settings.php:201 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/connedit.php:598 -msgid "Currently archived" +#: ../../mod/settings.php:215 +msgid "Password changed." msgstr "" -#: ../../mod/connedit.php:599 -msgid "Currently pending" +#: ../../mod/settings.php:217 +msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/connedit.php:600 -msgid "Hide this contact from others" +#: ../../mod/settings.php:231 +msgid "Not valid email." msgstr "" -#: ../../mod/connedit.php:600 -msgid "" -"Replies/likes to your public posts may still be visible" +#: ../../mod/settings.php:234 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." +#: ../../mod/settings.php:243 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" +#: ../../mod/settings.php:479 +msgid "Settings updated." msgstr "" -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +#: ../../mod/settings.php:610 +msgid "Add application" msgstr "" -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" +#: ../../mod/settings.php:551 +msgid "Name of application" msgstr "" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" +#: ../../mod/settings.php:552 ../../mod/settings.php:578 +msgid "Consumer Key" msgstr "" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" +#: ../../mod/settings.php:552 ../../mod/settings.php:553 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/delegate.php:131 -msgid "Add" +#: ../../mod/settings.php:553 ../../mod/settings.php:579 +msgid "Consumer Secret" msgstr "" -#: ../../mod/delegate.php:132 -msgid "No entries." +#: ../../mod/settings.php:554 ../../mod/settings.php:580 +msgid "Redirect" msgstr "" -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " +#: ../../mod/settings.php:554 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/directory.php:223 -msgid "Finding:" +#: ../../mod/settings.php:555 ../../mod/settings.php:581 +msgid "Icon url" msgstr "" -#: ../../mod/directory.php:228 -msgid "next page" +#: ../../mod/settings.php:555 +msgid "Optional" msgstr "" -#: ../../mod/directory.php:228 -msgid "previous page" +#: ../../mod/settings.php:566 +msgid "You can't edit this application." msgstr "" -#: ../../mod/directory.php:245 -msgid "No entries (some entries may be hidden)." +#: ../../mod/settings.php:609 +msgid "Connected Apps" msgstr "" -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" +#: ../../mod/settings.php:613 +msgid "Client key starts with" msgstr "" -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" +#: ../../mod/settings.php:614 +msgid "No name" msgstr "" -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" +#: ../../mod/settings.php:615 +msgid "Remove authorization" msgstr "" -#: ../../mod/dirprofile.php:108 -msgid "Status: " +#: ../../mod/settings.php:626 +msgid "No feature settings configured" msgstr "" -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " +#: ../../mod/settings.php:634 +msgid "Feature Settings" msgstr "" -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " +#: ../../mod/settings.php:657 +msgid "Account Settings" msgstr "" -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " +#: ../../mod/settings.php:658 +msgid "Password Settings" msgstr "" -#: ../../mod/dirprofile.php:114 -msgid "About: " +#: ../../mod/settings.php:659 +msgid "New Password:" msgstr "" -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " +#: ../../mod/settings.php:660 +msgid "Confirm:" msgstr "" -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" +#: ../../mod/settings.php:660 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +#: ../../mod/settings.php:662 ../../mod/settings.php:985 +msgid "Email Address:" msgstr "" -#: ../../mod/setup.php:162 -msgid "Red Matrix Server - Setup" +#: ../../mod/settings.php:663 ../../mod/removeaccount.php:61 +msgid "Remove Account" msgstr "" -#: ../../mod/setup.php:168 -msgid "Could not connect to database." +#: ../../mod/settings.php:664 +msgid "Remove this account from this server including all its channels" msgstr "" -#: ../../mod/setup.php:172 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../mod/settings.php:665 ../../mod/settings.php:1067 +msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/setup.php:179 -msgid "Could not create table." +#: ../../mod/settings.php:681 +msgid "Off" msgstr "" -#: ../../mod/setup.php:185 -msgid "Your site database has been installed." +#: ../../mod/settings.php:681 +msgid "On" msgstr "" -#: ../../mod/setup.php:190 -msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." +#: ../../mod/settings.php:688 +msgid "Additional Features" msgstr "" -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../mod/settings.php:713 +msgid "Connector Settings" msgstr "" -#: ../../mod/setup.php:257 -msgid "System check" +#: ../../mod/settings.php:743 +msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/setup.php:262 -msgid "Check again" +#: ../../mod/settings.php:752 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../mod/setup.php:284 -msgid "Database connection" +#: ../../mod/settings.php:788 +msgid "Display Settings" msgstr "" -#: ../../mod/setup.php:285 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." +#: ../../mod/settings.php:794 +msgid "Display Theme:" msgstr "" -#: ../../mod/setup.php:286 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/settings.php:795 +msgid "Mobile Theme:" msgstr "" -#: ../../mod/setup.php:287 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/settings.php:796 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../mod/setup.php:291 -msgid "Database Server Name" +#: ../../mod/settings.php:797 +msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/setup.php:291 -msgid "Default is localhost" +#: ../../mod/settings.php:797 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/setup.php:292 -msgid "Database Port" +#: ../../mod/settings.php:798 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/setup.php:292 -msgid "Communication port number - use 0 for default" +#: ../../mod/settings.php:798 +msgid "Maximum of 100 items" msgstr "" -#: ../../mod/setup.php:293 -msgid "Database Login Name" +#: ../../mod/settings.php:799 +msgid "Don't show emoticons" msgstr "" -#: ../../mod/setup.php:294 -msgid "Database Login Password" +#: ../../mod/settings.php:800 +msgid "Link post titles to source" msgstr "" -#: ../../mod/setup.php:295 -msgid "Database Name" +#: ../../mod/settings.php:801 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "Site administrator email address" +#: ../../mod/settings.php:835 +msgid "Nobody except yourself" msgstr "" -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../mod/settings.php:836 +msgid "Only those you specifically allow" msgstr "" -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Website URL" +#: ../../mod/settings.php:837 +msgid "Approved connections" msgstr "" -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Please use SSL (https) URL if available." +#: ../../mod/settings.php:838 +msgid "Any connections" msgstr "" -#: ../../mod/setup.php:301 ../../mod/setup.php:344 -msgid "Please select a default timezone for your website" +#: ../../mod/settings.php:839 +msgid "Anybody on this website" msgstr "" -#: ../../mod/setup.php:328 -msgid "Site settings" +#: ../../mod/settings.php:840 +msgid "Anybody in this network" msgstr "" -#: ../../mod/setup.php:387 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/settings.php:841 +msgid "Anybody authenticated" msgstr "" -#: ../../mod/setup.php:388 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../mod/settings.php:842 +msgid "Anybody on the internet" msgstr "" -#: ../../mod/setup.php:392 -msgid "PHP executable path" +#: ../../mod/settings.php:916 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/setup.php:392 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../mod/settings.php:921 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/setup.php:397 -msgid "Command line PHP" +#: ../../mod/settings.php:925 ../../mod/profile_photo.php:365 +msgid "or" msgstr "" -#: ../../mod/setup.php:406 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../mod/settings.php:930 +msgid "Your channel address is" msgstr "" -#: ../../mod/setup.php:407 -msgid "This is required for message delivery to work." +#: ../../mod/settings.php:974 +msgid "Channel Settings" msgstr "" -#: ../../mod/setup.php:409 -msgid "PHP register_argc_argv" +#: ../../mod/settings.php:983 +msgid "Basic Settings" msgstr "" -#: ../../mod/setup.php:430 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../mod/settings.php:986 +msgid "Your Timezone:" msgstr "" -#: ../../mod/setup.php:431 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../mod/settings.php:987 +msgid "Default Post Location:" msgstr "" -#: ../../mod/setup.php:433 -msgid "Generate encryption keys" +#: ../../mod/settings.php:987 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../mod/setup.php:440 -msgid "libCurl PHP module" +#: ../../mod/settings.php:988 +msgid "Use Browser Location:" msgstr "" -#: ../../mod/setup.php:441 -msgid "GD graphics PHP module" +#: ../../mod/settings.php:990 +msgid "Adult Content" msgstr "" -#: ../../mod/setup.php:442 -msgid "OpenSSL PHP module" +#: ../../mod/settings.php:990 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" +#: ../../mod/settings.php:992 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/setup.php:444 -msgid "mb_string PHP module" +#: ../../mod/settings.php:994 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../mod/setup.php:445 -msgid "mcrypt PHP module" +#: ../../mod/settings.php:996 +msgid "Hide my online presence" msgstr "" -#: ../../mod/setup.php:450 ../../mod/setup.php:452 -msgid "Apache mod_rewrite module" +#: ../../mod/settings.php:996 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/setup.php:450 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../mod/settings.php:998 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/setup.php:456 ../../mod/setup.php:459 -msgid "proc_open" +#: ../../mod/settings.php:999 +msgid "" +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/setup.php:456 +#: ../../mod/settings.php:1000 msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../mod/setup.php:464 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/settings.php:1001 +msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/setup.php:468 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../mod/settings.php:1002 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/setup.php:472 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/settings.php:1004 +msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." +#: ../../mod/settings.php:1004 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/setup.php:480 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/settings.php:1006 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/setup.php:484 -msgid "Error: mcrypt PHP module required but not installed." +#: ../../mod/settings.php:1008 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/setup.php:500 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../mod/settings.php:1008 +msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/setup.php:501 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../mod/settings.php:1009 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/setup.php:502 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../mod/settings.php:1009 +msgid "May reduce spam activity" msgstr "" -#: ../../mod/setup.php:503 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../mod/settings.php:1010 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/setup.php:506 -msgid ".htconfig.php is writable" +#: ../../mod/settings.php:1015 +msgid "Channel permissions category:" msgstr "" -#: ../../mod/setup.php:516 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +#: ../../mod/settings.php:1023 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/setup.php:517 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." +#: ../../mod/settings.php:1023 +msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/setup.php:518 ../../mod/setup.php:536 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../mod/settings.php:1026 +msgid "Notification Settings" msgstr "" -#: ../../mod/setup.php:519 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." +#: ../../mod/settings.php:1027 +msgid "By default post a status message when:" msgstr "" -#: ../../mod/setup.php:522 -#, php-format -msgid "%s is writable" +#: ../../mod/settings.php:1028 +msgid "accepting a friend request" msgstr "" -#: ../../mod/setup.php:535 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to " -"have write access to the store directory under the Red top level folder" +#: ../../mod/settings.php:1029 +msgid "joining a forum/community" msgstr "" -#: ../../mod/setup.php:539 -msgid "store is writable" +#: ../../mod/settings.php:1030 +msgid "making an interesting profile change" msgstr "" -#: ../../mod/setup.php:569 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../mod/settings.php:1031 +msgid "Send a notification email when:" msgstr "" -#: ../../mod/setup.php:570 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" +#: ../../mod/settings.php:1032 +msgid "You receive a connection request" msgstr "" -#: ../../mod/setup.php:571 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../mod/settings.php:1033 +msgid "Your connections are confirmed" msgstr "" -#: ../../mod/setup.php:572 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../mod/settings.php:1034 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../mod/settings.php:1035 +msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/setup.php:573 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../mod/settings.php:1036 +msgid "You receive a private message" msgstr "" -#: ../../mod/setup.php:574 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../mod/settings.php:1037 +msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/setup.php:576 -msgid "SSL certificate validation" +#: ../../mod/settings.php:1038 +msgid "You are tagged in a post" msgstr "" -#: ../../mod/setup.php:582 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." +#: ../../mod/settings.php:1039 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/setup.php:584 -msgid "Url rewrite is working" +#: ../../mod/settings.php:1042 +msgid "Show visual notifications including:" msgstr "" -#: ../../mod/setup.php:594 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." +#: ../../mod/settings.php:1044 +msgid "Unseen matrix activity" msgstr "" -#: ../../mod/setup.php:618 -msgid "Errors encountered creating database tables." +#: ../../mod/settings.php:1045 +msgid "Unseen channel activity" msgstr "" -#: ../../mod/setup.php:653 -msgid "

      What next

      " +#: ../../mod/settings.php:1046 +msgid "Unseen private messages" msgstr "" -#: ../../mod/setup.php:654 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/settings.php:1046 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 +msgid "Recommended" msgstr "" -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" +#: ../../mod/settings.php:1047 +msgid "Upcoming events" msgstr "" -#: ../../mod/editblock.php:77 -msgid "Edit Block" +#: ../../mod/settings.php:1048 +msgid "Events today" msgstr "" -#: ../../mod/editblock.php:87 -msgid "Delete block?" +#: ../../mod/settings.php:1049 +msgid "Upcoming birthdays" msgstr "" -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" +#: ../../mod/settings.php:1049 +msgid "Not available in all themes" msgstr "" -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" +#: ../../mod/settings.php:1050 +msgid "System (personal) notifications" msgstr "" -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" +#: ../../mod/settings.php:1051 +msgid "System info messages" msgstr "" -#: ../../mod/editblock.php:153 -msgid "Delete Block" +#: ../../mod/settings.php:1052 +msgid "System critical alerts" msgstr "" -#: ../../mod/pdledit.php:13 -msgid "Layout updated." +#: ../../mod/settings.php:1053 +msgid "New connections" msgstr "" -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" +#: ../../mod/settings.php:1054 +msgid "System Registrations" msgstr "" -#: ../../mod/pdledit.php:48 -msgid "Layout not found." +#: ../../mod/settings.php:1056 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../mod/pdledit.php:54 -msgid "Module Name:" +#: ../../mod/settings.php:1056 +msgid "Must be greater than 0" msgstr "" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" +#: ../../mod/settings.php:1058 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" +#: ../../mod/settings.php:1059 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" +#: ../../mod/settings.php:1062 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" +#: ../../mod/settings.php:1063 +msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" +#: ../../mod/settings.php:1065 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/editpost.php:53 -msgid "Delete item?" +#: ../../mod/settings.php:1066 +msgid "Remove this channel" msgstr "" -#: ../../mod/editwebpage.php:106 +#: ../../mod/editwebpage.php:140 msgid "Edit Webpage" msgstr "" -#: ../../mod/editwebpage.php:116 +#: ../../mod/editwebpage.php:150 msgid "Delete webpage?" msgstr "" -#: ../../mod/editwebpage.php:186 +#: ../../mod/editwebpage.php:215 msgid "Delete Webpage" msgstr "" @@ -6323,71 +6517,21 @@ msgstr "" msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "" - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "" - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "" - -#: ../../mod/sources.php:131 -msgid "Delete Source" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." msgstr "" -#: ../../mod/sources.php:158 -msgid "Source removed" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" #: ../../mod/filestorage.php:76 @@ -6430,36 +6574,47 @@ msgstr "" msgid "Not Found" msgstr "" +#: ../../mod/acl.php:245 +msgid "network" +msgstr "" + #: ../../mod/follow.php:25 msgid "Channel added." msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." msgstr "" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." msgstr "" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" msgstr "" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" msgstr "" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:132 +msgid "No entries." msgstr "" #: ../../mod/group.php:20 @@ -6486,71 +6641,125 @@ msgstr "" msgid "Members are visible to other channels" msgstr "" -#: ../../mod/group.php:107 -msgid "Collection removed." +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "" + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "" + +#: ../../mod/group.php:182 +msgid "Collection Editor" +msgstr "" + +#: ../../mod/group.php:196 +msgid "Members" +msgstr "" + +#: ../../mod/group.php:198 +msgid "All Connected Channels" +msgstr "" + +#: ../../mod/group.php:233 +msgid "Click on a channel to add or remove." +msgstr "" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../mod/import.php:25 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "" + +#: ../../mod/import.php:51 +msgid "Nothing to import." +msgstr "" + +#: ../../mod/import.php:75 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../mod/import.php:81 +msgid "Imported file is empty." +msgstr "" + +#: ../../mod/import.php:105 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." +#: ../../mod/import.php:123 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../mod/group.php:182 -msgid "Collection Editor" +#: ../../mod/import.php:133 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../mod/group.php:196 -msgid "Members" +#: ../../mod/import.php:451 +msgid "Import completed." msgstr "" -#: ../../mod/group.php:198 -msgid "All Connected Channels" +#: ../../mod/import.php:463 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." +#: ../../mod/import.php:468 +msgid "Import Channel" msgstr "" -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../mod/import.php:469 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file. Only identity and connections/relationships will be " +"imported. Importation of content is not yet available." msgstr "" -#: ../../mod/like.php:15 -msgid "Like/Dislike" +#: ../../mod/import.php:470 +msgid "File to Upload" msgstr "" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." +#: ../../mod/import.php:471 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +#: ../../mod/import.php:472 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." +#: ../../mod/import.php:473 +msgid "Your old login email address" msgstr "" -#: ../../mod/like.php:119 -msgid "thing" +#: ../../mod/import.php:474 +msgid "Your old login password" msgstr "" -#: ../../mod/like.php:165 -msgid "Channel unavailable." +#: ../../mod/import.php:475 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." msgstr "" -#: ../../mod/like.php:204 -msgid "Previous action reversed." +#: ../../mod/import.php:476 +msgid "Make this hub my primary location" msgstr "" -#: ../../mod/like.php:430 -msgid "Action completed." +#: ../../mod/import.php:477 +msgid "Import existing posts if possible" msgstr "" -#: ../../mod/like.php:431 -msgid "Thank you." +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" #: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 @@ -6569,7 +6778,7 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: ../../mod/admin.php:97 ../../mod/admin.php:413 +#: ../../mod/admin.php:97 ../../mod/admin.php:411 msgid "Site" msgstr "" @@ -6577,19 +6786,19 @@ msgstr "" msgid "Accounts" msgstr "" -#: ../../mod/admin.php:99 ../../mod/admin.php:860 +#: ../../mod/admin.php:99 ../../mod/admin.php:858 msgid "Channels" msgstr "" -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 +#: ../../mod/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 msgid "Plugins" msgstr "" -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 +#: ../../mod/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 msgid "Themes" msgstr "" -#: ../../mod/admin.php:102 ../../mod/admin.php:515 +#: ../../mod/admin.php:102 ../../mod/admin.php:512 msgid "Server" msgstr "" @@ -6601,7 +6810,7 @@ msgstr "" msgid "DB updates" msgstr "" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 msgid "Logs" msgstr "" @@ -6617,10 +6826,10 @@ msgstr "" msgid "Message queues" msgstr "" -#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 -#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 -#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 +#: ../../mod/admin.php:211 ../../mod/admin.php:410 ../../mod/admin.php:511 +#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 +#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 +#: ../../mod/admin.php:1276 msgid "Administration" msgstr "" @@ -6632,7 +6841,7 @@ msgstr "" msgid "Registered users" msgstr "" -#: ../../mod/admin.php:216 ../../mod/admin.php:518 +#: ../../mod/admin.php:216 ../../mod/admin.php:515 msgid "Pending registrations" msgstr "" @@ -6640,716 +6849,637 @@ msgstr "" msgid "Version" msgstr "" -#: ../../mod/admin.php:219 ../../mod/admin.php:519 +#: ../../mod/admin.php:219 ../../mod/admin.php:516 msgid "Active plugins" msgstr "" -#: ../../mod/admin.php:333 +#: ../../mod/admin.php:326 msgid "Site settings updated." msgstr "" -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" +#: ../../mod/admin.php:363 +msgid "mobile" +msgstr "" + +#: ../../mod/admin.php:365 +msgid "experimental" +msgstr "" + +#: ../../mod/admin.php:367 +msgid "unsupported" msgstr "" -#: ../../mod/admin.php:393 +#: ../../mod/admin.php:391 msgid "Yes - with approval" msgstr "" -#: ../../mod/admin.php:399 +#: ../../mod/admin.php:397 msgid "My site is not a public server" msgstr "" -#: ../../mod/admin.php:400 +#: ../../mod/admin.php:398 msgid "My site has paid access only" msgstr "" -#: ../../mod/admin.php:401 +#: ../../mod/admin.php:399 msgid "My site has free access only" msgstr "" -#: ../../mod/admin.php:402 +#: ../../mod/admin.php:400 msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../mod/admin.php:416 +#: ../../mod/admin.php:414 msgid "File upload" msgstr "" -#: ../../mod/admin.php:417 +#: ../../mod/admin.php:415 msgid "Policies" msgstr "" -#: ../../mod/admin.php:422 +#: ../../mod/admin.php:420 msgid "Site name" msgstr "" -#: ../../mod/admin.php:423 +#: ../../mod/admin.php:421 msgid "Banner/Logo" msgstr "" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:422 msgid "Administrator Information" msgstr "" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:422 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:423 msgid "System language" msgstr "" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:424 msgid "System theme" msgstr "" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:424 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:425 msgid "Mobile system theme" msgstr "" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:425 msgid "Theme for mobile devices" msgstr "" -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "" - -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "" - -#: ../../mod/admin.php:430 +#: ../../mod/admin.php:427 msgid "Enable Diaspora Protocol" msgstr "" -#: ../../mod/admin.php:430 +#: ../../mod/admin.php:427 msgid "Communicate with Diaspora and Friendica - experimental" msgstr "" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:428 msgid "Allow Feeds as Connections" msgstr "" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:428 msgid "(Heavy system resource usage)" msgstr "" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:429 msgid "Maximum image size" msgstr "" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:429 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:430 msgid "Does this site allow new member registration?" msgstr "" -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:431 msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:432 msgid "Register text" msgstr "" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:432 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:433 msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:433 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:434 msgid "Allowed friend domains" msgstr "" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:434 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:435 msgid "Allowed email domains" msgstr "" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:435 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:436 msgid "Block public" msgstr "" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:436 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:437 msgid "Verify Email Addresses" msgstr "" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:437 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:438 msgid "Force publish" msgstr "" -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:438 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:439 msgid "Disable discovery tab" msgstr "" -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:439 msgid "" "Remove the tab in the network view with public content pulled from sources " "chosen for this site." msgstr "" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:440 msgid "No login on Homepage" msgstr "" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:440 msgid "" "Check to hide the login form from your sites homepage when visitors arrive " "who are not logged in (e.g. when you put the content of the homepage in via " "the site channel)." msgstr "" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:442 msgid "Proxy user" msgstr "" -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:443 msgid "Proxy URL" msgstr "" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:444 msgid "Network timeout" msgstr "" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:444 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:445 msgid "Delivery interval" msgstr "" -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:445 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:446 msgid "Poll interval" msgstr "" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:446 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:447 msgid "Maximum Load Average" msgstr "" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:447 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../mod/admin.php:506 +#: ../../mod/admin.php:503 msgid "No server found" msgstr "" -#: ../../mod/admin.php:513 ../../mod/admin.php:737 +#: ../../mod/admin.php:510 ../../mod/admin.php:735 msgid "ID" msgstr "" -#: ../../mod/admin.php:513 +#: ../../mod/admin.php:510 msgid "for channel" msgstr "" -#: ../../mod/admin.php:513 +#: ../../mod/admin.php:510 msgid "on server" msgstr "" -#: ../../mod/admin.php:513 +#: ../../mod/admin.php:510 msgid "Status" msgstr "" -#: ../../mod/admin.php:534 +#: ../../mod/admin.php:531 msgid "Update has been marked successful" msgstr "" -#: ../../mod/admin.php:544 +#: ../../mod/admin.php:541 #, php-format msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../mod/admin.php:547 +#: ../../mod/admin.php:544 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/admin.php:551 +#: ../../mod/admin.php:548 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/admin.php:554 +#: ../../mod/admin.php:551 #, php-format msgid "Update function %s could not be found." msgstr "" -#: ../../mod/admin.php:569 +#: ../../mod/admin.php:566 msgid "No failed updates." msgstr "" -#: ../../mod/admin.php:573 +#: ../../mod/admin.php:570 msgid "Failed Updates" msgstr "" -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:572 msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/admin.php:576 +#: ../../mod/admin.php:573 msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:599 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:609 +#: ../../mod/admin.php:606 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:638 +#: ../../mod/admin.php:635 msgid "Account not found" msgstr "" -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:655 #, php-format msgid "User '%s' unblocked" msgstr "" -#: ../../mod/admin.php:658 +#: ../../mod/admin.php:655 #, php-format msgid "User '%s' blocked" msgstr "" -#: ../../mod/admin.php:724 ../../mod/admin.php:736 +#: ../../mod/admin.php:722 ../../mod/admin.php:734 msgid "Users" msgstr "" -#: ../../mod/admin.php:726 ../../mod/admin.php:862 +#: ../../mod/admin.php:724 ../../mod/admin.php:860 msgid "select all" msgstr "" -#: ../../mod/admin.php:727 +#: ../../mod/admin.php:725 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:728 +#: ../../mod/admin.php:726 msgid "Request date" msgstr "" -#: ../../mod/admin.php:729 +#: ../../mod/admin.php:727 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:730 +#: ../../mod/admin.php:728 msgid "Approve" msgstr "" -#: ../../mod/admin.php:731 +#: ../../mod/admin.php:729 msgid "Deny" msgstr "" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:735 msgid "Register date" msgstr "" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:735 msgid "Last login" msgstr "" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:735 msgid "Expires" msgstr "" -#: ../../mod/admin.php:737 +#: ../../mod/admin.php:735 msgid "Service Class" msgstr "" -#: ../../mod/admin.php:739 +#: ../../mod/admin.php:737 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:738 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:773 +#: ../../mod/admin.php:771 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:780 +#: ../../mod/admin.php:778 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:799 +#: ../../mod/admin.php:797 msgid "Channel not found" msgstr "" -#: ../../mod/admin.php:810 +#: ../../mod/admin.php:808 #, php-format msgid "Channel '%s' deleted" msgstr "" -#: ../../mod/admin.php:821 +#: ../../mod/admin.php:819 #, php-format msgid "Channel '%s' uncensored" msgstr "" -#: ../../mod/admin.php:821 +#: ../../mod/admin.php:819 #, php-format msgid "Channel '%s' censored" msgstr "" -#: ../../mod/admin.php:864 +#: ../../mod/admin.php:862 msgid "Censor" msgstr "" -#: ../../mod/admin.php:865 +#: ../../mod/admin.php:863 msgid "Uncensor" msgstr "" -#: ../../mod/admin.php:868 +#: ../../mod/admin.php:866 msgid "UID" msgstr "" -#: ../../mod/admin.php:870 +#: ../../mod/admin.php:868 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:871 +#: ../../mod/admin.php:869 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:910 +#: ../../mod/admin.php:908 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:912 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +#: ../../mod/admin.php:922 ../../mod/admin.php:1124 msgid "Disable" msgstr "" -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 msgid "Enable" msgstr "" -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 +#: ../../mod/admin.php:950 ../../mod/admin.php:1155 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 +#: ../../mod/admin.php:958 ../../mod/admin.php:1165 msgid "Author: " msgstr "" -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 +#: ../../mod/admin.php:959 ../../mod/admin.php:1166 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:1090 +#: ../../mod/admin.php:1088 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:1149 +#: ../../mod/admin.php:1147 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:1197 +#: ../../mod/admin.php:1195 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:1198 +#: ../../mod/admin.php:1196 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:1225 +#: ../../mod/admin.php:1223 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:1281 +#: ../../mod/admin.php:1279 msgid "Clear" msgstr "" -#: ../../mod/admin.php:1287 +#: ../../mod/admin.php:1285 msgid "Debugging" msgstr "" -#: ../../mod/admin.php:1288 +#: ../../mod/admin.php:1286 msgid "Log file" msgstr "" -#: ../../mod/admin.php:1288 +#: ../../mod/admin.php:1286 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "" - -#: ../../mod/admin.php:1289 -msgid "Log level" -msgstr "" - -#: ../../mod/admin.php:1336 -msgid "New Profile Field" -msgstr "" - -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Field nickname" -msgstr "" - -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "System name of field" -msgstr "" - -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Input type" -msgstr "" - -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Field Name" -msgstr "" - -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Label on profile pages" -msgstr "" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Help text" -msgstr "" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Additional info (optional)" -msgstr "" - -#: ../../mod/admin.php:1351 -msgid "Field definition not found" -msgstr "" - -#: ../../mod/admin.php:1357 -msgid "Edit Profile Field" -msgstr "" - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" +"Must be writable by web server. Relative to your Red top-level directory." msgstr "" -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" +#: ../../mod/admin.php:1287 +msgid "Log level" msgstr "" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" +#: ../../mod/admin.php:1334 +msgid "New Profile Field" msgstr "" -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "Field nickname" msgstr "" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "System name of field" msgstr "" -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" +#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 +msgid "Input type" msgstr "" -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field Name" msgstr "" -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Label on profile pages" msgstr "" -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Help text" msgstr "" -#: ../../mod/import.php:51 -msgid "Nothing to import." +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Additional info (optional)" msgstr "" -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" +#: ../../mod/admin.php:1349 +msgid "Field definition not found" msgstr "" -#: ../../mod/import.php:81 -msgid "Imported file is empty." +#: ../../mod/admin.php:1355 +msgid "Edit Profile Field" msgstr "" -#: ../../mod/import.php:105 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../mod/item.php:159 +msgid "Unable to locate original post." msgstr "" -#: ../../mod/import.php:123 -msgid "Channel clone failed. Import failed." +#: ../../mod/item.php:418 +msgid "Empty post discarded." msgstr "" -#: ../../mod/import.php:133 -msgid "Cloned channel not found. Import failed." +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../mod/import.php:451 -msgid "Import completed." +#: ../../mod/item.php:898 +msgid "System error. Post not saved." msgstr "" -#: ../../mod/import.php:463 -msgid "You must be logged in to use this feature." +#: ../../mod/item.php:1373 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../mod/import.php:468 -msgid "Import Channel" +#: ../../mod/item.php:1379 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../mod/import.php:469 -msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file. Only identity and connections/relationships will be " -"imported. Importation of content is not yet available." +#: ../../mod/like.php:15 +msgid "Like/Dislike" msgstr "" -#: ../../mod/import.php:470 -msgid "File to Upload" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." msgstr "" -#: ../../mod/import.php:471 -msgid "Or provide the old server/hub details" +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." msgstr "" -#: ../../mod/import.php:472 -msgid "Your old identity address (xyz@example.com)" +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." msgstr "" -#: ../../mod/import.php:473 -msgid "Your old login email address" +#: ../../mod/like.php:119 +msgid "thing" msgstr "" -#: ../../mod/import.php:474 -msgid "Your old login password" +#: ../../mod/like.php:165 +msgid "Channel unavailable." msgstr "" -#: ../../mod/import.php:475 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +#: ../../mod/like.php:204 +msgid "Previous action reversed." msgstr "" -#: ../../mod/import.php:476 -msgid "Make this hub my primary location" +#: ../../mod/like.php:430 +msgid "Action completed." msgstr "" -#: ../../mod/import.php:477 -msgid "Import existing posts if possible" +#: ../../mod/like.php:431 +msgid "Thank you." msgstr "" #: ../../mod/invite.php:25 @@ -7421,45 +7551,6 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../mod/item.php:151 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:411 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:453 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:891 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:1366 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../mod/item.php:1372 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "" - -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "" - #: ../../mod/locs.php:19 ../../mod/locs.php:46 msgid "Location not found." msgstr "" @@ -7488,6 +7579,19 @@ msgstr "" msgid "Drop location" msgstr "" +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +msgid "[Embedded content - reload page to view]" +msgstr "" + +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "" + +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "" + #: ../../mod/lockview.php:31 msgid "Remote privacy information not available." msgstr "" @@ -7509,79 +7613,6 @@ msgstr "" msgid "View Connnections" msgstr "" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:85 ../../boot.php:1523 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "" - #: ../../mod/magic.php:70 msgid "Hub not found." msgstr "" @@ -7668,31 +7699,6 @@ msgstr "" msgid "Send Reply" msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "" - #: ../../mod/wall_upload.php:34 msgid "Wall Photos" msgstr "" @@ -7713,87 +7719,91 @@ msgstr "" msgid "No matches" msgstr "" -#: ../../mod/menu.php:21 +#: ../../mod/menu.php:31 msgid "Menu updated." msgstr "" -#: ../../mod/menu.php:25 +#: ../../mod/menu.php:35 msgid "Unable to update menu." msgstr "" -#: ../../mod/menu.php:30 +#: ../../mod/menu.php:40 msgid "Menu created." msgstr "" -#: ../../mod/menu.php:34 +#: ../../mod/menu.php:44 msgid "Unable to create menu." msgstr "" -#: ../../mod/menu.php:57 +#: ../../mod/menu.php:76 msgid "Manage Menus" msgstr "" -#: ../../mod/menu.php:60 +#: ../../mod/menu.php:79 msgid "Drop" msgstr "" -#: ../../mod/menu.php:62 +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../mod/menu.php:82 msgid "Create a new menu" msgstr "" -#: ../../mod/menu.php:63 +#: ../../mod/menu.php:83 msgid "Delete this menu" msgstr "" -#: ../../mod/menu.php:64 ../../mod/menu.php:109 +#: ../../mod/menu.php:84 ../../mod/menu.php:125 msgid "Edit menu contents" msgstr "" -#: ../../mod/menu.php:65 +#: ../../mod/menu.php:85 msgid "Edit this menu" msgstr "" -#: ../../mod/menu.php:80 +#: ../../mod/menu.php:96 msgid "New Menu" msgstr "" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Menu name" msgstr "" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Must be unique, only seen by you" msgstr "" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title" msgstr "" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title as seen by others" msgstr "" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Allow bookmarks" msgstr "" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../mod/menu.php:98 +#: ../../mod/menu.php:114 msgid "Menu deleted." msgstr "" -#: ../../mod/menu.php:100 +#: ../../mod/menu.php:116 msgid "Menu could not be deleted." msgstr "" -#: ../../mod/menu.php:106 +#: ../../mod/menu.php:122 msgid "Edit Menu" msgstr "" -#: ../../mod/menu.php:108 +#: ../../mod/menu.php:124 msgid "Add or remove entries to this menu" msgstr "" @@ -7877,6 +7887,14 @@ msgstr "" msgid "System Notifications" msgstr "" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "" @@ -7889,10 +7907,6 @@ msgstr "" msgid "invalid target signature" msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "" - #: ../../mod/appman.php:28 ../../mod/appman.php:44 msgid "App installed." msgstr "" @@ -8266,41 +8280,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1311 +#: ../../boot.php:1293 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1314 +#: ../../boot.php:1296 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1488 +#: ../../boot.php:1463 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1516 +#: ../../boot.php:1489 msgid "Password" msgstr "" -#: ../../boot.php:1517 +#: ../../boot.php:1490 msgid "Remember me" msgstr "" -#: ../../boot.php:1522 +#: ../../boot.php:1493 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1587 +#: ../../boot.php:1567 msgid "permission denied" msgstr "" -#: ../../boot.php:1588 +#: ../../boot.php:1568 msgid "Got Zot?" msgstr "" -#: ../../boot.php:2021 +#: ../../boot.php:2030 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index d86614502..0ea73e309 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-13.858 +2014-11-15.860 -- cgit v1.2.3 From 1c249a5b06279ea4a19433d45a8dbe6fd71bcd25 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 15:51:42 -0800 Subject: some poller optimisations and a fix for undefined (empty) dbtype which shows up as a mysql error that 'rand' isn't found. --- boot.php | 3 ++- include/dba/dba_driver.php | 8 +++++-- include/externals.php | 2 ++ include/poller.php | 55 ++++++++++++++++++++++++++-------------------- version.inc | 2 +- 5 files changed, 42 insertions(+), 28 deletions(-) diff --git a/boot.php b/boot.php index 7758d1933..569162221 100755 --- a/boot.php +++ b/boot.php @@ -567,7 +567,8 @@ define ( 'ITEM_VERIFIED', 0x2000); // Signature verification was success define ( 'ITEM_RETAINED', 0x4000); // We looked at this item once to decide whether or not to expire it, and decided not to. define ( 'ITEM_RSS', 0x8000); // Item comes from a feed. Use this to decide whether to link the title // Don't make us evaluate this same item again. -define ( 'DBTYPE_MYSQL', 0 ); + +define ( 'DBTYPE_MYSQL', 0 ); define ( 'DBTYPE_POSTGRES', 1 ); /** diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index 103dc8fcc..1bb45b06d 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -24,7 +24,10 @@ function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { $dba = null; - if($dbtype == 1) { + + $dbtype = intval($dbtype); + + if($dbtype == DBTYPE_POSTGRES) { require_once('include/dba/dba_postgres.php'); if(is_null($port)) $port = 5432; $dba = new dba_postgres($server, $port, $user, $pass, $db, $install); @@ -39,6 +42,7 @@ function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { $dba = new dba_mysql($server, $port,$user,$pass,$db,$install); } } + define('NULL_DATE', $dba->get_null_date()); define('ACTIVE_DBTYPE', $dbtype); return $dba; @@ -371,7 +375,7 @@ function db_getfunc($f) { if(isset($lookup[$f]) && isset($lookup[$f][ACTIVE_DBTYPE])) return $lookup[$f][ACTIVE_DBTYPE]; - logger('Unable to abstract DB function "'. $f . '"', LOG_DEBUG); + logger('Unable to abstract DB function "'. $f . '" for dbtype ' . ACTIVE_DBTYPE, LOGGER_DEBUG); return $f; } diff --git a/include/externals.php b/include/externals.php index 0be5d0fde..b0f853dc6 100644 --- a/include/externals.php +++ b/include/externals.php @@ -14,6 +14,8 @@ function externals_run($argv, $argc){ $total = 0; $attempts = 0; + logger('externals: startup', LOGGER_DEBUG); + // pull in some public posts diff --git a/include/poller.php b/include/poller.php index 952431926..e13c6829d 100644 --- a/include/poller.php +++ b/include/poller.php @@ -27,10 +27,11 @@ function poller_run($argv, $argc){ // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it. $lockfile = 'store/[data]/poller'; - if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600))) { - logger("poller: Already running"); + if((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600)) + && (! get_config('system','override_poll_lockfile'))) { + logger("poller: Already running"); return; - } + } // Create a lockfile. Needs two vars, but $x doesn't need to contain anything. file_put_contents($lockfile, $x); @@ -52,7 +53,7 @@ function poller_run($argv, $argc){ // expire any expired items $r = q("select id from item where expires != '%s' and expires < %s - and not ( item_restrict & %d )>0 ", + and ( item_restrict & %d ) = 0 ", dbesc(NULL_DATE), db_utcnow(), intval(ITEM_DELETED) @@ -69,7 +70,8 @@ function poller_run($argv, $argc){ // or dead entries. $r = q("select channel_id from channel where channel_dirdate < %s - INTERVAL %s", - db_utcnow(), db_quoteinterval('30 DAY') + db_utcnow(), + db_quoteinterval('30 DAY') ); if($r) { foreach($r as $rr) { @@ -82,7 +84,7 @@ function poller_run($argv, $argc){ // publish any applicable items that were set to be published in the future // (time travel posts) - $r = q("select id from item where ( item_restrict & %d )>0 and created <= %s ", + $r = q("select id from item where ( item_restrict & %d ) > 0 and created <= %s ", intval(ITEM_DELAYED_PUBLISH), db_utcnow() ); @@ -207,7 +209,8 @@ function poller_run($argv, $argc){ $r = q("select xchan_photo_l, xchan_hash from xchan where xchan_photo_l != '' and xchan_photo_m = '' and xchan_photo_date < %s - INTERVAL %s", - db_utcnow(), db_quoteinterval('1 DAY') + db_utcnow(), + db_quoteinterval('1 DAY') ); if($r) { require_once('include/photo/photo_driver.php'); @@ -253,13 +256,13 @@ function poller_run($argv, $argc){ } - $sql_extra = (($manual_id) ? " AND abook_id = $manual_id " : ""); + $sql_extra = (($manual_id) ? " AND abook_id = " . intval($manual_id) . " " : ""); reload_plugins(); $d = datetime_convert(); - //TODO check to see if there are any cronhooks before wasting a process + // TODO check to see if there are any cronhooks before wasting a process if(! $restart) proc_run('php','include/cronhooks.php'); @@ -271,12 +274,12 @@ function poller_run($argv, $argc){ : '' ); - $randfunc = (ACTIVE_DBTYPE == DBTYPE_POSTGRES) ? 'RANDOM()' : 'RAND()'; + $randfunc = db_getfunc('RAND'); - $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel - FROM abook LEFT JOIN account on abook_account = account_id + $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel, xchan_network + FROM abook LEFT JOIN xchan on abook_xchan = xchan_hash LEFT JOIN account on abook_account = account_id $sql_extra - AND (( abook_flags & %d )>0 OR ( abook_flags = %d )) + AND (( abook_flags & %d ) > 0 OR ( abook_flags = %d )) AND (( account_flags = %d ) OR ( account_flags = %d )) $abandon_sql ORDER BY $randfunc", intval(ABOOK_FLAG_HIDDEN|ABOOK_FLAG_PENDING|ABOOK_FLAG_UNCONNECTED|ABOOK_FLAG_FEED), intval(0), @@ -289,6 +292,9 @@ function poller_run($argv, $argc){ foreach($contacts as $contact) { + if($contact['abook_flags'] & ABOOK_FLAG_SELF) + continue; + $update = false; $t = $contact['abook_updated']; @@ -310,6 +316,9 @@ function poller_run($argv, $argc){ } + if($contact['xchan_network'] !== 'zot') + continue; + if($c == $t) { if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) $update = true; @@ -330,17 +339,12 @@ function poller_run($argv, $argc){ // He's dead, Jim if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 30 day")) > 0) { - $n = q("select xchan_network from xchan where xchan_hash = '%s' limit 1", - dbesc($contact['abook_xchan']) + $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d", + intval(ABOOK_FLAG_ARCHIVED), + intval($contact['abook_id']) ); - if($n && $n[0]['xchan_network'] == 'zot') { - $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d", - intval(ABOOK_FLAG_ARCHIVED), - intval($contact['abook_id']) - ); - $update = false; - continue; - } + $update = false; + continue; } if($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) { @@ -364,6 +368,9 @@ function poller_run($argv, $argc){ } + if($contact['abook_flags'] & (ABOOK_FLAG_PENDING|ABOOK_FLAG_ARCHIVED|ABOOK_FLAG_IGNORED)) + continue; + if((! $update) && (! $force)) continue; @@ -375,7 +382,7 @@ function poller_run($argv, $argc){ } if($dirmode == DIRECTORY_MODE_SECONDARY || $dirmode == DIRECTORY_MODE_PRIMARY) { - $r = q("select distinct ud_addr, updates.* from updates where not ( ud_flags & %d )>0 and ud_addr != '' and ( ud_last = '%s' OR ud_last > %s - INTERVAL %s ) group by ud_addr ", + $r = q("select distinct ud_addr, updates.* from updates where ( ud_flags & %d ) = 0 and ud_addr != '' and ( ud_last = '%s' OR ud_last > %s - INTERVAL %s ) group by ud_addr ", intval(UPDATE_FLAGS_UPDATED), dbesc(NULL_DATE), db_utcnow(), db_quoteinterval('7 DAY') diff --git a/version.inc b/version.inc index 0ea73e309..664554361 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-15.860 +2014-11-16.861 -- cgit v1.2.3 From cbaee76dd955a4d6d6f0f0e0d364e34e12a9b827 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 16:19:24 -0800 Subject: "list mode" (forum and blog mode, no comments or comment boxes displayed on the summary page) --- include/ItemObject.php | 5 +- mod/channel.php | 8 ++- mod/network.php | 7 +- view/tpl/conv_list.tpl | 175 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 191 insertions(+), 4 deletions(-) create mode 100755 view/tpl/conv_list.tpl diff --git a/include/ItemObject.php b/include/ItemObject.php index 9e694b8ac..ee7676bd4 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -243,6 +243,7 @@ class Item extends BaseObject { 'id' => $this->get_id(), 'linktitle' => sprintf( t('View %s\'s profile - %s'), $profile_name, $item['author']['xchan_addr']), 'olinktitle' => sprintf( t('View %s\'s profile - %s'), $this->get_owner_name(), $item['owner']['xchan_addr']), + 'llink' => $item['llink'], 'to' => t('to'), 'via' => t('via'), 'wall' => t('Wall-to-Wall'), @@ -503,12 +504,12 @@ class Item extends BaseObject { /** * Get template */ - private function get_template() { + public function get_template() { return $this->template; } - private function set_template($t) { + public function set_template($t) { $this->template = $t; } diff --git a/mod/channel.php b/mod/channel.php index 8d6b2a169..1cc2dc02c 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -293,8 +293,14 @@ function channel_content(&$a, $update = 0, $load = false) { } + if(get_pconfig($a->profile['profile_uid'],'system','channel_list_mode')) + $page_mode = 'list'; + else + $page_mode = 'client'; + + if($_COOKIE['jsAvailable'] == 1) { - $o .= conversation($a,$items,'channel',$update,'client'); + $o .= conversation($a,$items,'channel',$update,$page_mode); } else { $o .= conversation($a,$items,'channel',$update,'traditional'); } diff --git a/mod/network.php b/mod/network.php index da020c389..fd74b1887 100644 --- a/mod/network.php +++ b/mod/network.php @@ -426,7 +426,12 @@ function network_content(&$a, $update = 0, $load = false) { $mode = (($nouveau) ? 'network-new' : 'network'); - $o .= conversation($a,$items,$mode,$update,'client'); + if(get_pconfig(local_user(),'system','network_list_mode')) + $page_mode = 'list'; + else + $page_mode = 'client'; + + $o .= conversation($a,$items,$mode,$update,$page_mode); if(($items) && (! $update)) $o .= alt_pager($a,count($items)); diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl new file mode 100755 index 000000000..86562e1f1 --- /dev/null +++ b/view/tpl/conv_list.tpl @@ -0,0 +1,175 @@ +{{if $item.comment_firstcollapsed}} + + +{{/if}} -- cgit v1.2.3 From 18cedf4def7d1d2c816a847ab449cbd74b33b58f Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 16:48:35 -0800 Subject: blog/list mode display settings --- mod/settings.php | 10 ++++++++++ view/tpl/settings_display.tpl | 2 ++ 2 files changed, 12 insertions(+) diff --git a/mod/settings.php b/mod/settings.php index 396bb2972..725825b34 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -140,6 +140,10 @@ function settings_post(&$a) { $user_scalable = ((x($_POST,'user_scalable')) ? intval($_POST['user_scalable']) : 0); $nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile']) : 0); $title_tosource = ((x($_POST,'title_tosource')) ? intval($_POST['title_tosource']) : 0); + $channel_list_mode = ((x($_POST,'channel_list_mode')) ? intval($_POST['channel_list_mode']) : 0); + $network_list_mode = ((x($_POST,'network_list_mode')) ? intval($_POST['network_list_mode']) : 0); + + $browser_update = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0); $browser_update = $browser_update * 1000; if($browser_update < 10000) @@ -159,6 +163,8 @@ function settings_post(&$a) { set_pconfig(local_user(),'system','itemspage', $itemspage); set_pconfig(local_user(),'system','no_smilies',$nosmile); set_pconfig(local_user(),'system','title_tosource',$title_tosource); + set_pconfig(local_user(),'system','channel_list_mode', $channel_list_mode); + set_pconfig(local_user(),'system','network_list_mode', $network_list_mode); if ($theme == $a->channel['channel_theme']){ // call theme_post only if theme has not been changed @@ -722,6 +728,7 @@ function settings_content(&$a) { /* * DISPLAY SETTINGS */ + if((argc() > 1) && (argv(1) === 'display')) { $default_theme = get_config('system','theme'); if(! $default_theme) @@ -801,6 +808,9 @@ function settings_content(&$a) { '$layout_editor' => t('System Page Layout Editor - (advanced)'), '$theme_config' => $theme_config, '$expert' => feature_enabled(local_user(),'expert'), + '$channel_list_mode' => array('channel_list_mode', t('Use blog/list mode on channel page'), get_pconfig(local_user(),'system','channel_list_mode'), t('(comments displayed separately)')), + '$network_list_mode' => array('network_list_mode', t('Use blog/list mode on matrix page'), get_pconfig(local_user(),'system','network_list_mode'), t('(comments displayed separately)')), + )); return $o; diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index d3134ea88..8e870ba0e 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -13,6 +13,8 @@ {{include file="field_input.tpl" field=$itemspage}} {{include file="field_checkbox.tpl" field=$nosmile}} {{include file="field_checkbox.tpl" field=$title_tosource}} +{{include file="field_checkbox.tpl" field=$channel_list_mode}} +{{include file="field_checkbox.tpl" field=$network_list_mode}}
      -- cgit v1.2.3 From 591f10e2350812d1aa8d673246d59bfa3063c051 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 19:08:10 -0800 Subject: module cleanup --- mod/network.php | 215 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 109 insertions(+), 106 deletions(-) diff --git a/mod/network.php b/mod/network.php index fd74b1887..d6c19eca7 100644 --- a/mod/network.php +++ b/mod/network.php @@ -24,7 +24,7 @@ function network_content(&$a, $update = 0, $load = false) { if(! local_user()) { $_SESSION['return_url'] = $a->query_string; - return login(false); + return login(false); } @@ -52,28 +52,30 @@ function network_content(&$a, $update = 0, $load = false) { } - $datequery = $datequery2 = ''; $group = 0; - $nouveau = false; + $nouveau = false; - $datequery = ((x($_GET,'dend') && is_a_date_arg($_GET['dend'])) ? notags($_GET['dend']) : ''); + $datequery = ((x($_GET,'dend') && is_a_date_arg($_GET['dend'])) ? notags($_GET['dend']) : ''); $datequery2 = ((x($_GET,'dbegin') && is_a_date_arg($_GET['dbegin'])) ? notags($_GET['dbegin']) : ''); - $nouveau = ((x($_GET,'new')) ? intval($_GET['new']) : 0); - $gid = ((x($_GET,'gid')) ? intval($_GET['gid']) : 0); + $nouveau = ((x($_GET,'new')) ? intval($_GET['new']) : 0); + $gid = ((x($_GET,'gid')) ? intval($_GET['gid']) : 0); if($datequery) $_GET['order'] = 'post'; + + // filter by collection (e.g. group) + if($gid) { - $r = q("SELECT * FROM `groups` WHERE id = %d AND uid = %d LIMIT 1", - intval($gid), - intval(local_user()) - ); - if(! $r) { + $r = q("SELECT * FROM groups WHERE id = %d AND uid = %d LIMIT 1", + intval($gid), + intval(local_user()) + ); + if(! $r) { if($update) killme(); notice( t('No such group') . EOL ); @@ -81,27 +83,26 @@ function network_content(&$a, $update = 0, $load = false) { // NOTREACHED } - $group = $gid; + $group = $gid; $group_hash = $r[0]['hash']; - $def_acl = array('allow_gid' => '<' . $r[0]['hash'] . '>'); + $def_acl = array('allow_gid' => '<' . $r[0]['hash'] . '>'); } $o = ''; - // if no tabs are selected, defaults to comments - $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0); - $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0); - $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment'); - $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0); - $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0); - $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0); - $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0); - $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99); - $firehose = ((x($_GET,'fh')) ? intval($_GET['fh']) : 0); - $file = ((x($_GET,'file')) ? $_GET['file'] : ''); + $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0); + $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0); + $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment'); + $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0); + $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0); + $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0); + $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0); + $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99); + $firehose = ((x($_GET,'fh')) ? intval($_GET['fh']) : 0); + $file = ((x($_GET,'file')) ? $_GET['file'] : ''); if(x($_GET,'search') || x($_GET,'file')) @@ -122,21 +123,21 @@ function network_content(&$a, $update = 0, $load = false) { $channel_acl = array( 'allow_cid' => $channel['channel_allow_cid'], 'allow_gid' => $channel['channel_allow_gid'], - 'deny_cid' => $channel['channel_deny_cid'], - 'deny_gid' => $channel['channel_deny_gid'] + 'deny_cid' => $channel['channel_deny_cid'], + 'deny_gid' => $channel['channel_deny_gid'] ); $x = array( - 'is_owner' => true, - 'allow_location' => ((intval(get_pconfig($channel['channel_id'],'system','use_browser_location'))) ? '1' : ''), + 'is_owner' => true, + 'allow_location' => ((intval(get_pconfig($channel['channel_id'],'system','use_browser_location'))) ? '1' : ''), 'default_location' => $channel['channel_location'], - 'nickname' => $channel['channel_address'], - 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), - 'acl' => populate_acl((($group || $cid) ? $def_acl : $channel_acl)), - 'bang' => (($group || $cid) ? '!' : ''), - 'visitor' => true, - 'profile_uid' => local_user() + 'nickname' => $channel['channel_address'], + 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), + 'acl' => populate_acl((($group || $cid) ? $def_acl : $channel_acl)), + 'bang' => (($group || $cid) ? '!' : ''), + 'visitor' => true, + 'profile_uid' => local_user() ); $o .= status_editor($a,$x); @@ -146,11 +147,11 @@ function network_content(&$a, $update = 0, $load = false) { // We don't have to deal with ACL's on this page. You're looking at everything // that belongs to you, hence you can see all of it. We will filter by group if - // desired. + // desired. + - - $sql_options = (($star) - ? " and (item_flags & " . intval(ITEM_STARRED) . ")>0" + $sql_options = (($star) + ? " and (item_flags & " . intval(ITEM_STARRED) . ") > 0" : ''); $sql_nets = ''; @@ -159,20 +160,20 @@ function network_content(&$a, $update = 0, $load = false) { if($group) { $contact_str = ''; - $contacts = group_get_members($group); - if($contacts) { + $contacts = group_get_members($group); + if($contacts) { foreach($contacts as $c) { if($contact_str) $contact_str .= ','; - $contact_str .= "'" . $c['xchan'] . "'"; + $contact_str .= "'" . $c['xchan'] . "'"; } - } - else { - $contact_str = ' 0 '; + } + else { + $contact_str = ' 0 '; info( t('Collection is empty')); - } + } - $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND (( author_xchan IN ( $contact_str ) OR owner_xchan in ( $contact_str )) or allow_gid like '" . protect_sprintf('%<' . dbesc($group_hash) . '>%') . "' ) and id = parent and item_restrict = 0 ) "; + $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND (( author_xchan IN ( $contact_str ) OR owner_xchan in ( $contact_str )) or allow_gid like '" . protect_sprintf('%<' . dbesc($group_hash) . '>%') . "' ) and id = parent and item_restrict = 0 ) "; $x = group_rec_byhash(local_user(), $group_hash); @@ -180,60 +181,60 @@ function network_content(&$a, $update = 0, $load = false) { $o = '

      ' . t('Collection: ') . $x['name'] . '

      ' . $o; - } + } elseif($cid) { - $r = q("SELECT abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where abook_id = %d and abook_channel = %d and not ( abook_flags & " . intval(ABOOK_FLAG_BLOCKED) . ")>0 limit 1", + $r = q("SELECT abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash where abook_id = %d and abook_channel = %d and not ( abook_flags & " . intval(ABOOK_FLAG_BLOCKED) . ") > 0 limit 1", intval($cid), intval(local_user()) - ); - if($r) { - $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND uid = " . intval(local_user()) . " AND ( author_xchan = '" . dbesc($r[0]['abook_xchan']) . "' or owner_xchan = '" . dbesc($r[0]['abook_xchan']) . "' ) and item_restrict = 0 ) "; + ); + if($r) { + $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND uid = " . intval(local_user()) . " AND ( author_xchan = '" . dbesc($r[0]['abook_xchan']) . "' or owner_xchan = '" . dbesc($r[0]['abook_xchan']) . "' ) and item_restrict = 0 ) "; $o = '

      ' . t('Connection: ') . $r[0]['xchan_name'] . '

      ' . $o; - } - else { + } + else { notice( t('Invalid connection.') . EOL); goaway($a->get_baseurl(true) . '/network'); - } + } } if(! $update) { // The special div is needed for liveUpdate to kick in for this page. - // We only launch liveUpdate if you aren't filtering in some incompatible + // We only launch liveUpdate if you aren't filtering in some incompatible // way and also you aren't writing a comment (discovered in javascript). if($gid || $cid || $cmin || ($cmax != 99) || $star || $liked || $conv || $spam || $nouveau || $list) - $firehose = 0; + $firehose = 0; $o .= '
      ' . "\r\n"; - $o .= ""; + $o .= ""; $a->page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array( '$baseurl' => z_root(), - '$pgtype' => 'network', - '$uid' => ((local_user()) ? local_user() : '0'), - '$gid' => (($gid) ? $gid : '0'), - '$cid' => (($cid) ? $cid : '0'), - '$cmin' => (($cmin) ? $cmin : '0'), - '$cmax' => (($cmax) ? $cmax : '0'), - '$star' => (($star) ? $star : '0'), - '$liked' => (($liked) ? $liked : '0'), - '$conv' => (($conv) ? $conv : '0'), - '$spam' => (($spam) ? $spam : '0'), - '$fh' => (($firehose) ? $firehose : '0'), + '$pgtype' => 'network', + '$uid' => ((local_user()) ? local_user() : '0'), + '$gid' => (($gid) ? $gid : '0'), + '$cid' => (($cid) ? $cid : '0'), + '$cmin' => (($cmin) ? $cmin : '0'), + '$cmax' => (($cmax) ? $cmax : '0'), + '$star' => (($star) ? $star : '0'), + '$liked' => (($liked) ? $liked : '0'), + '$conv' => (($conv) ? $conv : '0'), + '$spam' => (($spam) ? $spam : '0'), + '$fh' => (($firehose) ? $firehose : '0'), '$nouveau' => (($nouveau) ? $nouveau : '0'), - '$wall' => '0', - '$list' => ((x($_REQUEST,'list')) ? intval($_REQUEST['list']) : 0), - '$page' => (($a->pager['page'] != 1) ? $a->pager['page'] : 1), - '$search' => (($search) ? $search : ''), - '$order' => $order, - '$file' => $file, - '$cats' => '', - '$dend' => $datequery, - '$mid' => '', - '$dbegin' => $datequery2 + '$wall' => '0', + '$list' => ((x($_REQUEST,'list')) ? intval($_REQUEST['list']) : 0), + '$page' => (($a->pager['page'] != 1) ? $a->pager['page'] : 1), + '$search' => (($search) ? $search : ''), + '$order' => $order, + '$file' => $file, + '$cats' => '', + '$dend' => $datequery, + '$mid' => '', + '$dbegin' => $datequery2 )); } @@ -246,17 +247,19 @@ function network_content(&$a, $update = 0, $load = false) { $sql_extra3 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2)))); } - $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` "); + $sql_extra2 = (($nouveau) ? '' : " AND item.parent = item.id "); $sql_extra3 = (($nouveau) ? '' : $sql_extra3); if(x($_GET,'search')) { $search = escape_tags($_GET['search']); - if(strpos($search,'#') === 0) + if(strpos($search,'#') === 0) { $sql_extra .= term_query('item',substr($search,1),TERM_HASHTAG); - else - $sql_extra .= sprintf(" AND `item`.`body` like '%s' ", + } + else { + $sql_extra .= sprintf(" AND item.body like '%s' ", dbesc(protect_sprintf('%' . $search . '%')) ); + } } if(strlen($file)) { @@ -264,7 +267,7 @@ function network_content(&$a, $update = 0, $load = false) { } if($conv) { - $sql_extra .= sprintf(" AND parent IN (SELECT distinct(parent) from item where ( author_xchan like '%s' or ( item_flags & %d )>0)) ", + $sql_extra .= sprintf(" AND parent IN (SELECT distinct(parent) from item where ( author_xchan like '%s' or ( item_flags & %d ) > 0)) ", dbesc(protect_sprintf($channel['channel_hash'])), intval(ITEM_MENTIONSME) ); @@ -287,7 +290,7 @@ function network_content(&$a, $update = 0, $load = false) { // Not everybody who shows up in the network stream will be in your address book. // By default those that aren't are assumed to have closeness = 99; but this isn't - // recorded anywhere. So if cmax is 99, we'll open the search up to anybody in + // recorded anywhere. So if cmax is 99, we'll open the search up to anybody in // the stream with a NULL address book entry. $sql_nets .= " AND "; @@ -314,33 +317,33 @@ function network_content(&$a, $update = 0, $load = false) { $uids = " and item.uid = " . local_user() . " "; } - $simple_update = (($update) ? " and ( item.item_flags & " . intval(ITEM_UNSEEN) . " )>0 " : ''); + $simple_update = (($update) ? " and ( item.item_flags & " . intval(ITEM_UNSEEN) . " ) > 0 " : ''); // This fixes a very subtle bug so I'd better explain it. You wake up in the morning or return after a day - // or three and look at your matrix page - after opening up your browser. The first page loads just as it - // should. All of a sudden a few seconds later, page 2 will get inserted at the beginning of the page + // or three and look at your matrix page - after opening up your browser. The first page loads just as it + // should. All of a sudden a few seconds later, page 2 will get inserted at the beginning of the page // (before the page 1 content). The update code is actually doing just what it's supposed // to, it's fetching posts that have the ITEM_UNSEEN bit set. But the reason that page 2 content is being - // returned in an UPDATE is because you hadn't gotten that far yet - you're still on page 1 and everything + // returned in an UPDATE is because you hadn't gotten that far yet - you're still on page 1 and everything // that we loaded for page 1 is now marked as seen. But the stuff on page 2 hasn't been. So... it's being - // treated as "new fresh" content because it is unseen. We need to distinguish it somehow from content + // treated as "new fresh" content because it is unseen. We need to distinguish it somehow from content // which "arrived as you were reading page 1". We're going to do this // by storing in your session the current UTC time whenever you LOAD a network page, and only UPDATE items // which are both ITEM_UNSEEN and have "changed" since that time. Cross fingers... - if($update && $_SESSION['loadtime']) - $simple_update .= " and item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' "; + if($update && $_SESSION['loadtime']) + $simple_update .= " and item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' "; if($load) $simple_update = ''; if($nouveau && $load) { // "New Item View" - show all items unthreaded in reverse created date order - $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, received FROM `item` - WHERE true $uids AND item_restrict = 0 + $items = q("SELECT item.*, item.id AS item_id, received FROM item + WHERE true $uids AND item_restrict = 0 $simple_update $sql_extra $sql_nets - ORDER BY `item`.`received` DESC $pager_sql " + ORDER BY item.received DESC $pager_sql " ); require_once('include/items.php'); @@ -354,9 +357,9 @@ function network_content(&$a, $update = 0, $load = false) { // Normal conversation view if($order === 'post') - $ordering = "`created`"; + $ordering = "created"; else - $ordering = "`commented`"; + $ordering = "commented"; if($load) { @@ -364,7 +367,7 @@ function network_content(&$a, $update = 0, $load = false) { // Fetch a page full of parent items for this page - $r = q("SELECT distinct item.id AS item_id, $ordering FROM item + $r = q("SELECT distinct item.id AS item_id, $ordering FROM item left join abook on item.author_xchan = abook.abook_xchan WHERE true $uids AND item.item_restrict = 0 AND item.parent = item.id @@ -376,7 +379,7 @@ function network_content(&$a, $update = 0, $load = false) { } else { - if(! $firehose) { + if(! $firehose) { // update $r = q("SELECT item.parent AS item_id FROM item left join abook on item.author_xchan = abook.abook_xchan @@ -396,9 +399,9 @@ function network_content(&$a, $update = 0, $load = false) { $parents_str = ids_to_querystr($r,'item_id'); - $items = q("SELECT `item`.*, `item`.`id` AS `item_id` FROM `item` - WHERE true $uids AND `item`.`item_restrict` = 0 - AND `item`.`parent` IN ( %s ) + $items = q("SELECT item.*, item.id AS item_id FROM item + WHERE true $uids AND item.item_restrict = 0 + AND item.parent IN ( %s ) $sql_extra ", dbesc($parents_str) ); @@ -406,7 +409,7 @@ function network_content(&$a, $update = 0, $load = false) { xchan_query($items,true,(($firehose) ? local_user() : 0)); $items = fetch_post_tags($items,true); $items = conv_sort($items,$ordering); - } + } else { $items = array(); } @@ -417,8 +420,8 @@ function network_content(&$a, $update = 0, $load = false) { } if(($update_unseen) && (! $firehose)) - $r = q("UPDATE `item` SET item_flags = ( item_flags & ~%d) - WHERE (item_flags & %d)>0 AND `uid` = %d $update_unseen ", + $r = q("UPDATE item SET item_flags = ( item_flags & ~%d) + WHERE (item_flags & %d) > 0 AND uid = %d $update_unseen ", intval(ITEM_UNSEEN), intval(ITEM_UNSEEN), intval(local_user()) @@ -433,8 +436,8 @@ function network_content(&$a, $update = 0, $load = false) { $o .= conversation($a,$items,$mode,$update,$page_mode); - if(($items) && (! $update)) - $o .= alt_pager($a,count($items)); + if(($items) && (! $update)) + $o .= alt_pager($a,count($items)); return $o; } -- cgit v1.2.3 From acc8c692421581c2516bbe5d91d86ad2f3f12c27 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 19:33:58 -0800 Subject: when in list mode, make the max height half of the normal height before 'divgrow' kicks in. --- view/js/main.js | 33 ++++++++++++++++----------------- view/tpl/conv_list.tpl | 2 +- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index a55b8fbb1..bec35ba72 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -458,25 +458,17 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $(".autotime").timeago(); - // divgrow doesn't prevent itself from attaching a second (or 500th) - // "show more" div to a content region - it also has a few other - // issues related to how we're trying to use it. - // disable for now. - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } else { $('img',this).each(function() { $(this).attr('src',$(this).attr('dst')); }); - // more FIXME related to expanded comments if($('#collapsed-comments-'+itmId).is(':visible')) isVisible = true; $('#' + ident).replaceWith($(this)); if(isVisible) showHideComments(itmId); $(".autotime").timeago(); - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); - } prev = ident; }); @@ -508,8 +500,6 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $(".autotime").timeago(); - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); - } else { $('img',this).each(function() { @@ -521,7 +511,6 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); $(".autotime").timeago(); - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } }); @@ -557,7 +546,6 @@ function updateConvItems(mode,data) { showHideComments(itmId); $(".autotime").timeago(); - // $("div.wall-item-body").divgrow({ initialHeight: 400 }); } prev = ident; }); @@ -596,17 +584,28 @@ function updateConvItems(mode,data) { function collapseHeight() { - $(".wall-item-body").each(function() { - if($(this).height() > 410) { + var isListMode = false; + $(".wall-item-listbody").each(function() { + isListMode = true; + if($(this).height() > 210) { if(! $(this).hasClass('divmore')) { - $(this).divgrow({ initialHeight: 400, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); + $(this).divgrow({ initialHeight: 200, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); $(this).addClass('divmore'); } } }); - } - + $(".wall-item-body").each(function() { + if(! isListMode) { + if($(this).height() > 410) { + if(! $(this).hasClass('divmore')) { + $(this).divgrow({ initialHeight: 400, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false }); + $(this).addClass('divmore'); + } + } + } + }); + } function liveUpdate() { if((src == null) || (stopped) || (! profile_uid)) { $('.like-rotator').spin(false); return; } diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index 86562e1f1..71554a9b3 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -32,7 +32,7 @@
      -
      +
      {{$item.body}} {{if $item.tags}}
      -- cgit v1.2.3 From b3383a2547846e14c79cf59a3a0a0b1939e2aa71 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 20:23:22 -0800 Subject: speed things up a wee bit --- include/ItemObject.php | 15 +++++++++++++-- include/conversation.php | 8 +++----- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/include/ItemObject.php b/include/ItemObject.php index ee7676bd4..4aa6857c1 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -28,6 +28,7 @@ class Item extends BaseObject { private $threaded = false; private $visiting = false; private $channel = null; + private $display_mode = 'normal'; public function __construct($data) { @@ -226,9 +227,10 @@ class Item extends BaseObject { if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) $indent .= ' shiny'; - localize_item($item); + localize_item($item); $body = prepare_body($item,true); + $comment_count_txt = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); $children = $this->get_children(); @@ -316,7 +318,8 @@ class Item extends BaseObject { $result['children'] = array(); $nb_children = count($children); - if($nb_children > 0) { + + if(($this->get_display_mode() === 'normal') && ($nb_children > 0)) { foreach($children as $child) { $result['children'][] = $child->get_template_data($alike, $dlike, $thread_level + 1); } @@ -353,6 +356,14 @@ class Item extends BaseObject { return $this->get_data_value('id'); } + public function get_display_mode() { + return $this->display_mode; + } + + public function set_display_mode($mode) { + $this->display_mode = $mode; + } + public function is_threaded() { return $this->threaded; } diff --git a/include/conversation.php b/include/conversation.php index af8780549..ada2cbbd6 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -793,12 +793,10 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ // $tx1 = dba_timer(); $item_object = new Item($item); $conv->add_thread($item_object); - if($page_mode === 'list') + if($page_mode === 'list') { $item_object->set_template('conv_list.tpl'); - -// $tx2 = dba_timer(); -// if($mode === 'network') -// profiler($tx1,$tx2,'add thread ' . $item['id']); + $item_object->set_display_mode('list'); + } } } $t2 = dba_timer(); -- cgit v1.2.3 From cd404f571079dcbf021e44cae23568ba0c7f2214 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 20:33:50 -0800 Subject: remove old timers --- include/conversation.php | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index ada2cbbd6..96864c29a 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -419,8 +419,6 @@ function visible_activity($item) { function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $prepared_item = '') { - $tstart = dba_timer(); - $t0 = $t1 = $t2 = $t3 = $t4 = $t5 = $t6 = null; $content_html = ''; $o = ''; @@ -452,8 +450,6 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ if($mode === 'network') { - $t1 = dba_timer(); - $profile_owner = local_user(); $page_writeable = true; @@ -790,7 +786,7 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ $item['pagedrop'] = $page_dropping; if($item['id'] == $item['parent']) { -// $tx1 = dba_timer(); + $item_object = new Item($item); $conv->add_thread($item_object); if($page_mode === 'list') { @@ -799,18 +795,12 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ } } } - $t2 = dba_timer(); + $threads = $conv->get_template_data($alike, $dlike); if(!$threads) { logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG); $threads = array(); } - $t3 = dba_timer(); - if($mode === 'network') { - profiler($t1,$t2,'Conversation prepare'); - profiler($t2,$t3,'Conversation get_template'); - } - } } @@ -846,14 +836,6 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ '$dropping' => ($page_dropping?t('Delete Selected Items'):False), )); - if($mode === 'network') { - $t4 = dba_timer(); - profiler($t3,$t4,'conversation template'); - } - -// if($page_mode === 'preview') -// logger('preview: ' . $o, LOGGER_DATA); - return $o; } -- cgit v1.2.3 From b11ed7f88e4683315a4f5aa02692cb61facf32a7 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 22:46:52 -0800 Subject: allow somebody to access the "home page content" (whatever that may be) even after logging in by including a home/splash argument. It appears that nothing else is required to provide 'sys' channel webpage contents except a link in the admin page to create them. There *may* be an issue with comanche theme selection but we'll cross that bridge when we come to it. Also thinking that we might want to map /home/foo to /page/sys/foo in the longer term scheme of things. --- mod/home.php | 48 +++++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/mod/home.php b/mod/home.php index 576213e06..a1a68710f 100644 --- a/mod/home.php +++ b/mod/home.php @@ -9,9 +9,10 @@ function home_init(&$a) { $ret = array(); call_hooks('home_init',$ret); - $channel = $a->get_channel(); + $splash = ((argc() > 1 && argv(1) === 'splash') ? true : false); - if(local_user() && $channel && $channel['xchan_url']) { + $channel = $a->get_channel(); + if(local_user() && $channel && $channel['xchan_url'] && ! $splash) { $dest = $channel['channel_startpage']; if(! $dest) $dest = get_pconfig(local_user(),'system','startpage'); @@ -23,7 +24,7 @@ function home_init(&$a) { goaway($dest); } - if(get_account_id()) { + if(get_account_id() && ! $splash) { goaway(z_root() . '/new_channel'); } @@ -39,6 +40,7 @@ function home_content(&$a) { if(x($_SESSION,'mobile_theme')) unset($_SESSION['mobile_theme']); + $splash = ((argc() > 1 && argv(1) === 'splash') ? true : false); if(get_config('system','projecthome')) { $o .= file_get_contents('assets/home.html'); @@ -48,20 +50,20 @@ function home_content(&$a) { } -// Deprecated - $channel_address = get_config("system", "site_channel" ); - -// See if the sys channel set a homepage - if (! $channel_address) { - $u = get_sys_channel(); - if ($u) { - $u = array($u); - // change to channel_id when below deprecated and skip the $u=... - $channel_address = $u[0]['channel_address']; - } - } + // Deprecated + $channel_address = get_config("system", "site_channel" ); + + // See if the sys channel set a homepage + if (! $channel_address) { + $u = get_sys_channel(); + if ($u) { + $u = array($u); + // change to channel_id when below deprecated and skip the $u=... + $channel_address = $u[0]['channel_address']; + } + } - if ($channel_address){ + if($channel_address) { $page_id = 'home'; @@ -78,16 +80,16 @@ function home_content(&$a) { ); if($r) { - xchan_query($r); - $r = fetch_post_tags($r,true); - $a->profile = array('profile_uid' => $u[0]['channel_id']); - $o .= prepare_page($r[0]); - return $o; + xchan_query($r); + $r = fetch_post_tags($r,true); + $a->profile = array('profile_uid' => $u[0]['channel_id']); + $a->profile_uid = $u[0]['channel_id']; + $o .= prepare_page($r[0]); + return $o; } - } -// Nope, we didn't find an item. Let's see if there's any html + // Nope, we didn't find an item. Let's see if there's any html if(file_exists('home.html')) { $o .= file_get_contents('home.html'); -- cgit v1.2.3