From f6be815c31fc5985d30f99a712d8f266edef8c83 Mon Sep 17 00:00:00 2001 From: Christian Vogeley Date: Sat, 22 Feb 2014 22:54:09 +0100 Subject: more tweaks --- view/theme/redbasic/css/narrow_navbar.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css index b05f46797..cd128f35b 100644 --- a/view/theme/redbasic/css/narrow_navbar.css +++ b/view/theme/redbasic/css/narrow_navbar.css @@ -7,10 +7,9 @@ margin: 2px 0px 1px 10px; border-radius: 0px; } .navbar-left{height: 30px;} -.container-fluid {min-height:30px;} .collapse .navbar-collapse {min-height:30px;} #nav-search-text {margin:5px;} -header #banner {margin-top:5px;} +header #banner {margin:5px;} nav .dropdown-menu { top: 30px;} nav .badge { -- cgit v1.2.3 From 8e3a16bcdddb3e978bb984a050f837912de4f463 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Tue, 25 Feb 2014 21:06:47 +0000 Subject: Update channel permissions to full ints --- boot.php | 2 +- install/update.php | 22 ++++++++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index fbab83f05..26811a55e 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1098 ); +define ( 'DB_UPDATE_VERSION', 1099 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/install/update.php b/install/update.php index 7d1305863..9ad74fec4 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ Date: Tue, 25 Feb 2014 21:12:19 +0000 Subject: Also update database.sql --- install/database.sql | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/install/database.sql b/install/database.sql index cd31a0285..ac35f9bc3 100644 --- a/install/database.sql +++ b/install/database.sql @@ -160,18 +160,18 @@ CREATE TABLE IF NOT EXISTS `channel` ( `channel_allow_gid` mediumtext NOT NULL, `channel_deny_cid` mediumtext NOT NULL, `channel_deny_gid` mediumtext NOT NULL, - `channel_r_stream` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_r_profile` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_r_photos` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_r_abook` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_stream` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_wall` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_tagwall` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_comment` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_mail` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_photos` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_w_chat` tinyint(3) unsigned NOT NULL DEFAULT '128', - `channel_a_delegate` tinyint(3) unsigned NOT NULL DEFAULT '0', + `channel_r_stream` int(10) unsigned NOT NULL DEFAULT '128', + `channel_r_profile` int(10) unsigned NOT NULL DEFAULT '128', + `channel_r_photos` int(10) unsigned NOT NULL DEFAULT '128', + `channel_r_abook` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_stream` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_wall` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_tagwall` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_comment` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_mail` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_photos` int(10) unsigned NOT NULL DEFAULT '128', + `channel_w_chat` int(10) unsigned NOT NULL DEFAULT '128', + `channel_a_delegate` int(10) unsigned NOT NULL DEFAULT '0', `channel_r_storage` int(10) unsigned NOT NULL DEFAULT '128', `channel_w_storage` int(10) unsigned NOT NULL DEFAULT '128', `channel_r_pages` int(10) unsigned NOT NULL DEFAULT '128', -- cgit v1.2.3 From 08313bac6c7ce9f87b6b6ddf23cc5c4d50747aa1 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 25 Feb 2014 14:12:51 -0800 Subject: allow personalised page layouts for modules. --- boot.php | 14 ++++++++++++-- include/identity.php | 2 -- mod/settings.php | 1 - version.inc | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/boot.php b/boot.php index fbab83f05..68b7c8d3c 100755 --- a/boot.php +++ b/boot.php @@ -1807,8 +1807,18 @@ function construct_page(&$a) { // in case a page has overloaded a module, see if we already have a layout defined // otherwise, if a pdl file exists for this module, use it - if((! count($a->layout)) && ($p = theme_include('mod_' . $a->module . '.pdl')) != '') - comanche_parser($a,@file_get_contents($p)); + if(! count($a->layout)) { + $n = 'mod_' . $a->module . '.pdl' ; + $u = get_theme_uid(); + if((! $u) && $a->profile_uid) + $u = $a->profile_uid; + if($u) + $s = get_pconfig($u,'system',$n); + if((! $s) && (($p = theme_include($n)) != '')) + $s = @file_get_contents($p); + if($s) + comanche_parser($a,$s); + } $comanche = ((count($a->layout)) ? true : false); diff --git a/include/identity.php b/include/identity.php index 2e611625a..93174031c 100644 --- a/include/identity.php +++ b/include/identity.php @@ -1112,8 +1112,6 @@ function get_theme_uid() { if(local_user()) { if((get_pconfig(local_user(),'system','always_my_theme')) || (! $uid)) return local_user(); - if(! $uid) - return local_user(); } if(! $uid) { $x = get_sys_channel(); diff --git a/mod/settings.php b/mod/settings.php index b88380ff0..13cb3cae9 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -439,7 +439,6 @@ function settings_post(&$a) { dbesc($str_group_deny), intval(local_user()) ); - if($r) info( t('Settings updated.') . EOL); diff --git a/version.inc b/version.inc index adf85ba7e..5e33a16d7 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-02-24.598 +2014-02-25.599 -- cgit v1.2.3 From 9a2e73ae1522c7e69d7d6e0ca6c1089189c6e697 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 25 Feb 2014 16:29:00 -0800 Subject: move bootstrap to theme and out of core. --- view/php/theme_init.php | 9 +-------- view/theme/redbasic/php/theme_init.php | 9 +++++++++ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/view/php/theme_init.php b/view/php/theme_init.php index b6aa5de0f..45eb2fc1d 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -2,8 +2,6 @@ require_once('include/plugin.php'); -head_add_css('library/bootstrap/css/bootstrap-theme.min.css'); -head_add_css('library/bootstrap/css/bootstrap.min.css'); head_add_css('library/fancybox/jquery.fancybox-1.3.4.css'); head_add_css('library/tiptip/tipTip.css'); head_add_css('library/jgrowl/jquery.jgrowl.css'); @@ -11,13 +9,10 @@ head_add_css('library/jslider/css/jslider.css'); head_add_css('library/colorbox/colorbox.css'); head_add_css('view/css/conversation.css'); -head_add_css('view/css/bootstrap-red.css'); head_add_css('view/css/widgets.css'); -head_add_css('library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css'); + head_add_js('jquery.js'); -head_add_js('library/bootstrap/js/bootstrap.min.js'); -head_add_js('library/bootstrap/js/bootbox.min.js'); head_add_js('jquery-migrate-1.1.1.js'); //head_add_js('jquery-compat.js'); head_add_js('spin.js'); @@ -42,8 +37,6 @@ head_add_js('crypto.js'); head_add_js('library/jslider/bin/jquery.slider.min.js'); head_add_js('docready.js'); head_add_js('library/colorbox/jquery.colorbox-min.js'); -head_add_js('library/bootstrap-datetimepicker/js/moment.js'); -head_add_js('library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'); /** * Those who require this feature will know what to do with it. diff --git a/view/theme/redbasic/php/theme_init.php b/view/theme/redbasic/php/theme_init.php index ccb85a070..12f49efa7 100644 --- a/view/theme/redbasic/php/theme_init.php +++ b/view/theme/redbasic/php/theme_init.php @@ -1,5 +1,14 @@ Date: Tue, 25 Feb 2014 17:55:30 -0800 Subject: more chatroom discovery --- boot.php | 2 +- install/database.sql | 11 +++++++++++ install/update.php | 20 +++++++++++++++++++- mod/rbmark.php | 7 ++++--- 4 files changed, 35 insertions(+), 5 deletions(-) diff --git a/boot.php b/boot.php index 56a87ca9a..381f1eea0 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1099 ); +define ( 'DB_UPDATE_VERSION', 1100 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/install/database.sql b/install/database.sql index ac35f9bc3..5d00afb03 100644 --- a/install/database.sql +++ b/install/database.sql @@ -1027,6 +1027,17 @@ CREATE TABLE IF NOT EXISTS `xchan` ( KEY `xchan_follow` (`xchan_follow`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +CREATE TABLE IF NOT EXISTS `xchat` ( + `xchat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `xchat_url` char(255) NOT NULL DEFAULT '', + `xchat_desc` char(255) NOT NULL DEFAULT '', + `xchat_xchan` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`xchat_id`), + KEY `xchat_url` (`xchat_url`), + KEY `xchat_desc` (`xchat_desc`), + KEY `xchat_xchan` (`xchat_xchan`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + CREATE TABLE IF NOT EXISTS `xconfig` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `xchan` char(255) NOT NULL, diff --git a/install/update.php b/install/update.php index 9ad74fec4..8612e7354 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ escape_tags($_REQUEST['url']),'term' => escape_tags($_REQUEST['title'])); bookmark_add($channel,$channel,$t,((x($_REQUEST,'private')) ? intval($_REQUEST['private']) : 0), array('menu_id' => ((x($_REQUEST,'menu_id')) ? intval($_REQUEST['menu_id']) : 0), - 'menu_name' => ((x($_REQUEST,'menu_name')) ? escape_tags($_REQUEST['menu_name']) : '') + 'menu_name' => ((x($_REQUEST,'menu_name')) ? escape_tags($_REQUEST['menu_name']) : ''), + 'ischat' => ((x($_REQUEST['ischat'])) ? intval($_REQUEST['ischat']) : 0) )); goaway(z_root() . '/bookmarks'); @@ -92,8 +93,8 @@ function rbmark_content(&$a) { '$header' => t('Save Bookmark'), '$url' => array('url',t('URL of bookmark'),escape_tags($_REQUEST['url'])), '$title' => array('title',t('Description'),escape_tags($_REQUEST['title'])), - '$ischat' => (($ischat) ? 1 : 0), - '$private' => (($private) ? 1 : 0), + '$ischat' => ((x($_REQUEST,'ischat')) ? intval($_REQUEST['ischat']) : 0), + '$private' => ((x($_REQUEST,'private')) ? intval($_REQUEST['private']) : 0), '$submit' => t('Save'), '$menu_name' => array('menu_name',t('Or enter new bookmark folder name'),'',''), '$menus' => $menu_select -- cgit v1.2.3 From 04e6cb515b524b35ae9f8d20c4b131aa0429a784 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Wed, 26 Feb 2014 01:57:29 +0000 Subject: Fix the weirdness of messages appearing in the middle of the screen and working their way downwards one comment at a time as the ping runs when joining an active chat room. --- mod/chatsvc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/chatsvc.php b/mod/chatsvc.php index e6590f57a..9cc8778f5 100644 --- a/mod/chatsvc.php +++ b/mod/chatsvc.php @@ -113,7 +113,7 @@ function chatsvc_content(&$a) { $chats = array(); - $r = q("select * from chat left join xchan on chat_xchan = xchan_hash where chat_room = %d and chat_id > %d", + $r = q("select * from chat left join xchan on chat_xchan = xchan_hash where chat_room = %d and chat_id > %d order by created", intval($a->data['chat']['room_id']), intval($lastseen) ); @@ -147,4 +147,4 @@ function chatsvc_content(&$a) { json_return_and_die($ret); } - \ No newline at end of file + -- cgit v1.2.3 From e7e97e578b3069b8d24ea2a18ce4d3648b402ca3 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 25 Feb 2014 19:48:13 -0800 Subject: put bookmarked chatrooms into poco --- boot.php | 2 +- include/socgraph.php | 28 ++++++++++++++++++++++++++++ install/database.sql | 4 +++- install/update.php | 10 +++++++++- mod/poco.php | 11 +++++++++++ 5 files changed, 52 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 381f1eea0..c37bd57b9 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1100 ); +define ( 'DB_UPDATE_VERSION', 1101 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/include/socgraph.php b/include/socgraph.php index 0e91eba60..2bd0290cc 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -64,6 +64,34 @@ function poco_load($xchan = '',$url = null) { logger('poco_load: ' . print_r($j,true),LOGGER_DATA); + if($xchan) { + if(array_key_exists('chatrooms',$j) && is_array($j['chatrooms'])) { + foreach($j['chatrooms'] as $room) { + $r = q("select * from xchat where xchat_url = '%s' and xchat_xchan = '%s' limit 1", + dbesc($room['url']) + ); + if($r) { + q("update xchat set xchat_edited = '%s' where xchat_id = %d limit 1", + dbesc(datetime_convert()), + intval($r[0]['xchat_id']) + ); + } + else { + $x = q("insert into xchat ( xchat_url, xchat_desc, xchat_xchan, xchat_edited ) + values ( '%s', '%s', '%s', '%s' ) ", + dbesc(escape_tags($room['url'])), + dbesc(escape_tags($room['desc'])), + dbesc($xchan), + dbesc(datetime_convert()) + ); + } + } + } + q("delete from xchat where xchat_edited < UTC_TIMESTAMP() - INTERVAL 7 DAY and xchat_xchan = '%s' ", + dbesc($xchan) + ); + } + if(! ((x($j,'entry')) && (is_array($j['entry'])))) { logger('poco_load: no entries'); return; diff --git a/install/database.sql b/install/database.sql index 5d00afb03..2c8bc50c7 100644 --- a/install/database.sql +++ b/install/database.sql @@ -1032,10 +1032,12 @@ CREATE TABLE IF NOT EXISTS `xchat` ( `xchat_url` char(255) NOT NULL DEFAULT '', `xchat_desc` char(255) NOT NULL DEFAULT '', `xchat_xchan` char(255) NOT NULL DEFAULT '', + `xchat_edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' PRIMARY KEY (`xchat_id`), KEY `xchat_url` (`xchat_url`), KEY `xchat_desc` (`xchat_desc`), - KEY `xchat_xchan` (`xchat_xchan`) + KEY `xchat_xchan` (`xchat_xchan`), + KEY `xchat_edited` (`xchat_edited`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `xconfig` ( diff --git a/install/update.php b/install/update.php index 8612e7354..9c9b6129a 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ $d['mitem_link'], 'desc' => $d['mitem_desc']); + } + } + $ret['entry'] = array(); -- cgit v1.2.3 From 1857036a994a5470aaece799d3bf07fbc863a91f Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 25 Feb 2014 20:36:56 -0800 Subject: I'll have to fix this someday. --- include/enotify.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/enotify.php b/include/enotify.php index e0991257f..036d5275e 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -384,6 +384,12 @@ function notification($params) { $itemlink = $a->get_baseurl() . '/notify/view/' . $notify_id; $msg = str_replace('$itemlink',$itemlink,$epreamble); + + // wretched hack, but we don't want to duplicate all the preamble variations and we also don't want to screw up a translation + + if(($a->language === 'en' || (! $a->language)) && strpos($msg,', ')) + $msg = substr($msg,strpos($msg,', ')+1); + $r = q("update notify set msg = '%s' where id = %d and uid = %d limit 1", dbesc($msg), intval($notify_id), -- cgit v1.2.3 From 364fc9f1638e67dad2c289b4d365753a5d06ac05 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 25 Feb 2014 20:58:20 -0800 Subject: comanche: provide an option to add a menu class for different theming choices on some menus (e.g. horizontal, tabbed, etc.) --- include/comanche.php | 15 ++++++++++++--- include/menu.php | 3 ++- mod/bookmarks.php | 4 ++-- view/tpl/usermenu.tpl | 2 +- 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/include/comanche.php b/include/comanche.php index 7d7e0e70c..f02190ee5 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -79,10 +79,10 @@ function comanche_parser(&$a,$s) { } -function comanche_menu($name) { +function comanche_menu($name,$class = '') { $a = get_app(); $m = menu_fetch($name,$a->profile['profile_uid'],get_observer_hash()); - return menu_render($m); + return menu_render($m,$class); } function comanche_replace_region($match) { @@ -152,13 +152,22 @@ function comanche_widget($name,$text) { function comanche_region(&$a,$s) { - $cnt = preg_match_all("/\[menu\](.*?)\[\/menu\]/ism", $s, $matches, PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { $s = str_replace($mtch[0],comanche_menu(trim($mtch[1])),$s); } } + + // menu class e.g. [menu=horizontal]my_menu[/menu] or [menu=tabbed]my_menu[/menu] + // allows different menu renderings to be applied + + $cnt = preg_match_all("/\[menu=(.*?)\](.*?)\[\/menu\]/ism", $s, $matches, PREG_SET_ORDER); + if($cnt) { + foreach($matches as $mtch) { + $s = str_replace($mtch[0],comanche_menu(trim($mtch[2]),$match[1]),$s); + } + } $cnt = preg_match_all("/\[block\](.*?)\[\/block\]/ism", $s, $matches, PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { diff --git a/include/menu.php b/include/menu.php index 2f1719d0b..4b0a11f10 100644 --- a/include/menu.php +++ b/include/menu.php @@ -24,7 +24,7 @@ function menu_fetch($name,$uid,$observer_xchan) { return null; } -function menu_render($menu, $edit = false) { +function menu_render($menu, $class='', $edit = false) { if(! $menu) return ''; @@ -38,6 +38,7 @@ function menu_render($menu, $edit = false) { return replace_macros(get_markup_template('usermenu.tpl'),array( '$menu' => $menu['menu'], + '$class' => $class, '$edit' => (($edit) ? t("Edit") : ''), '$items' => $menu['items'] )); diff --git a/mod/bookmarks.php b/mod/bookmarks.php index c5be68b8e..141ae2e0b 100644 --- a/mod/bookmarks.php +++ b/mod/bookmarks.php @@ -57,7 +57,7 @@ function bookmarks_content(&$a) { if($x) { foreach($x as $xx) { $y = menu_fetch($xx['menu_name'],local_user(),get_observer_hash()); - $o .= menu_render($y,true); + $o .= menu_render($y,'',true); } } @@ -69,7 +69,7 @@ function bookmarks_content(&$a) { if($x) { foreach($x as $xx) { $y = menu_fetch($xx['menu_name'],local_user(),get_observer_hash()); - $o .= menu_render($y,true); + $o .= menu_render($y,'',true); } } diff --git a/view/tpl/usermenu.tpl b/view/tpl/usermenu.tpl index 80e160fdf..a5c6faa99 100644 --- a/view/tpl/usermenu.tpl +++ b/view/tpl/usermenu.tpl @@ -1,4 +1,4 @@ -
+
{{if $menu.menu_desc}}

{{$menu.menu_desc}}

{{/if}} -- cgit v1.2.3 From c5b8224dcca6d867f1156757a9c78948fa007dad Mon Sep 17 00:00:00 2001 From: marijus Date: Wed, 26 Feb 2014 23:20:40 +0100 Subject: properly fix profile edit dropdown menu --- view/theme/redbasic/css/style.css | 87 ++++++++------------------------------- view/tpl/profile_vcard.tpl | 6 +-- 2 files changed, 21 insertions(+), 72 deletions(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2402e514e..057a0fba4 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -429,6 +429,11 @@ footer { text-decoration: none; } +.vcard .dropdown-menu { + position: absolute; + left: 200px; + top: 18px; +} #profile-extra-links { clear: both; @@ -445,9 +450,7 @@ footer { margin-top: 5px; } -.profile-edit-side-div { - float: right; -} + .profile-edit-side-link { opacity: 0.3; filter:alpha(opacity=30); @@ -488,72 +491,6 @@ footer { padding: 12px; } -#profiles-menu.menu-popup { - left: 200px; - right: auto; - top: 22px; -} - -ul.menu-popup { - position: absolute; - display: none; - width: 10em; - background: #0080FF; - color: #eec; - padding: 0px; - list-style: none; -/* border-radius: 0px 0px 20px 20px; */ - z-index: 100000; - -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); - box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); -} -ul.menu-popup a { - display: block; - color: #FFFFFF; - padding: 5px 10px; - text-decoration: none; -} - - -ul.menu-popup a:hover { - background-color: #888888; - color: #FFFFFF; -} -ul.menu-popup .menu-sep { - border-top: 1px solid #9eabb0; -} -ul.menu-popup li { - float: none; - overflow: auto; - height: auto; - display: block; -} -ul.menu-popup li img { - float: left; - width: 16px; - height: 16px; - padding-right: 5px; -} -ul.menu-popup .empty { - padding: 5px; - text-align: center; - color: #9eabb0; -} -ul.menu-popup .toolbar { - background-color: #9eabb0; - height: auto; - overflow: auto; -} -ul.menu-popup .toolbar a { - float: right; -} -ul.menu-popup .toolbar a:hover { - background-color: #ffffff; -} - - - #profile-in-dir-yes-label, #profile-in-dir-no-label, #profile-in-netdir-yes-label, @@ -2273,3 +2210,15 @@ nav .dropdown-menu { blockquote { font-size: $body_font_size; } + +.dropdown-menu { + font-size: $body_font_size; + border-radius: $radiuspx; +} + +.dropdown-menu img { + width: 32px; + height: 32px; + margin-right: 5px; + border-radius: $radiuspx; +} diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl index 10a928e1c..10a0a25a9 100755 --- a/view/tpl/profile_vcard.tpl +++ b/view/tpl/profile_vcard.tpl @@ -1,9 +1,9 @@
{{if $profile.edit}} -
- -
diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html index 7b700a6c6..7c5fab00e 100644 --- a/doc/html/boot_8php.html +++ b/doc/html/boot_8php.html @@ -202,7 +202,7 @@ Variables   const ZOT_REVISION 1   -const DB_UPDATE_VERSION 1098 +const DB_UPDATE_VERSION 1101   const EOL '<br />' . "\r\n"   @@ -416,6 +416,8 @@ Variables   const MENU_ITEM_NEWWIN 0x0002   +const MENU_ITEM_CHATROOM 0x0004 +  const POLL_SIMPLE_RATING 0x0001   const POLL_TENSCALE 0x0002 @@ -720,7 +722,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), api_get_user(), attach_init(), 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(), help_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(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), page_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(), register_init(), regmod_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_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_dbsync(), admin_page_users(), admin_post(), api_get_user(), attach_init(), 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(), help_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(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), page_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(), register_init(), regmod_content(), rpost_content(), settings_init(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_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().

@@ -738,7 +740,7 @@ Variables
-

Referenced by App\__construct(), _well_known_init(), achievements_content(), admin_content(), admin_page_dbsync(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_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(), help_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(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), page_content(), page_init(), 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(), register_init(), regmod_content(), rpost_content(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_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_dbsync(), admin_page_users(), admin_post(), api_get_user(), api_statuses_destroy(), api_statuses_repeat(), api_statuses_show(), attach_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(), help_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(), notify_init(), oembed_init(), oexchange_content(), oexchange_init(), online_init(), page_content(), page_init(), 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(), register_init(), regmod_content(), rpost_content(), settings_post(), setup_init(), share_init(), sources_content(), starred_init(), subthread_content(), tagger_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().

@@ -960,7 +962,7 @@ Variables
-

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), blogtheme_imgurl(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_block(), comanche_menu(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), dir_tagblock(), drop_item(), editpost_content(), event_store(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), RedBrowser\htmlActionsPanel(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onedirsync_run(), onepoll_run(), page_content(), photos_album_widget(), photos_content(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), search(), searchbox(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

+

Referenced by FriendicaSmarty\__construct(), FriendicaSmartyEngine\__construct(), abook_toggle_flag(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_statuses_user_timeline(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), blogtheme_imgurl(), build_sync_packet(), call_hooks(), can_comment_on_post(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), cli_suggest_run(), comanche_block(), comanche_menu(), comanche_replace_region(), comanche_widget(), common_friends_visitor_widget(), connedit_content(), contact_block(), contact_select(), create_identity(), current_theme(), deliver_run(), design_tools(), dir_tagblock(), drop_item(), editpost_content(), event_store(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), RedBrowser\generateDirectoryIndex(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_feed_for(), get_form_security_token(), FriendicaSmartyEngine\get_intltext_template(), get_intltext_template(), get_markup_template(), get_observer_hash(), get_plink(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), handle_tag(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), head_remove_css(), head_remove_js(), RedBrowser\htmlActionsPanel(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), info(), insert_hook(), is_site_admin(), item_message_id(), item_photo_menu(), item_redir_and_replace_images(), item_store(), item_store_update(), items_fetch(), load_contact_links(), load_hooks(), local_dir_update(), login(), FKOAuth1\loginUser(), manage_content(), map_scope(), menu_add_item(), menu_edit_item(), nav_set_selected(), new_contact(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onedirsync_run(), onepoll_run(), page_content(), photos_album_widget(), photos_content(), ping_init(), poco_load(), poller_run(), post_activity_item(), preg_heart(), prepare_body(), proc_run(), process_delivery(), profile_activity(), profile_sidebar(), public_permissions_sql(), replace_macros(), rmagic_init(), rpost_callback(), scale_external_images(), search(), searchbox(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), service_class_allows(), service_class_fetch(), smilies(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), tryzrlvideo(), tt(), update_suggestions(), user_allow(), vcard_from_xchan(), what_next(), widget_archive(), widget_categories(), widget_chatroom_list(), widget_collections(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), widget_mailmenu(), widget_menu_preview(), widget_photo_albums(), widget_profile(), widget_savedsearch(), widget_settings_menu(), widget_tagcloud(), widget_tagcloud_wall(), widget_vcard(), z_fetch_url(), and zot_finger().

@@ -1022,7 +1024,7 @@ Variables
-

Referenced by advanced_profile(), api_statuses_user_timeline(), attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), bookmarks_content(), chat_content(), chatsvc_content(), chatsvc_init(), chatsvc_post(), cloud_init(), comanche_menu(), common_content(), common_friends_visitor_widget(), dir_safe_mode(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_post(), get_public_feed(), item_permissions_sql(), magic_init(), mitem_content(), new_contact(), notice(), permissions_sql(), photo_init(), photos_content(), photos_post(), ping_init(), prepare_body(), profile_content(), profile_sidebar(), search_content(), 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_photo_albums(), widget_suggestions(), and z_readdir().

+

Referenced by advanced_profile(), api_statuses_user_timeline(), attach_by_hash(), attach_by_hash_nodata(), attach_mkdir(), attach_store(), bookmarks_content(), chat_content(), chatsvc_content(), chatsvc_init(), chatsvc_post(), cloud_init(), comanche_menu(), common_content(), common_friends_visitor_widget(), dir_safe_mode(), directory_content(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_post(), get_public_feed(), item_permissions_sql(), magic_init(), mitem_content(), new_contact(), notice(), permissions_sql(), photo_init(), photos_content(), photos_post(), ping_init(), prepare_body(), profile_content(), profile_sidebar(), search_content(), 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_bookmarkedchats(), widget_photo_albums(), widget_suggestedchats(), widget_suggestions(), and z_readdir().

@@ -1040,7 +1042,7 @@ Variables
-

Referenced by admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), api_content(), authenticate_success(), channel_content(), channel_remove(), chanview_content(), chat_content(), chat_post(), chatsvc_content(), check_form_security_token_redirectOnErr(), connect_post(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), events_post(), filerm_content(), filestorage_content(), follow_init(), group_content(), group_post(), home_init(), import_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), mood_init(), network_content(), new_channel_post(), new_contact(), notifications_post(), notify_init(), openid_content(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), search_content(), settings_post(), sources_content(), sources_post(), sslify_init(), tagrm_content(), tagrm_post(), toggle_mobile_init(), toggle_safesearch_init(), xref_init(), and zid_init().

+

Referenced by admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_logs_post(), admin_page_plugins(), admin_page_site_post(), admin_page_themes(), admin_page_users(), admin_page_users_post(), admin_post(), api_content(), authenticate_success(), channel_content(), channel_remove(), chanview_content(), chat_content(), chat_post(), chatsvc_content(), check_form_security_token_redirectOnErr(), connect_post(), connections_post(), connedit_content(), connedit_post(), delegate_content(), directory_content(), display_content(), drop_item(), events_post(), filerm_content(), filestorage_content(), follow_init(), group_content(), group_post(), home_init(), import_post(), item_post(), login_content(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), menu_content(), menu_post(), message_content(), mitem_content(), mitem_post(), mood_init(), network_content(), new_channel_post(), new_contact(), notifications_post(), notify_init(), openid_content(), photos_post(), post_init(), profile_photo_post(), profiles_init(), randprof_init(), rbmark_content(), rbmark_post(), register_post(), removeme_content(), rmagic_init(), rmagic_post(), rpost_content(), search_content(), settings_post(), sources_content(), sources_post(), sslify_init(), tagrm_content(), tagrm_post(), toggle_mobile_init(), toggle_safesearch_init(), xref_init(), and zid_init().

@@ -1194,7 +1196,7 @@ Variables
-

Referenced by Conversation\__construct(), acl_init(), api_content(), api_get_user(), api_post(), api_user(), 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(), common_friends_visitor_widget(), community_content(), community_init(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), 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(), 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(), home_init(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_puller(), lockview_content(), 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(), 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_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), redbasic_form(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), service_class_allows(), service_class_fetch(), 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_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().

+

Referenced by Conversation\__construct(), acl_init(), api_content(), api_get_user(), api_post(), api_user(), 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(), common_friends_visitor_widget(), community_content(), community_init(), connect_content(), connect_post(), connections_content(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), 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(), 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(), home_init(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_puller(), lockview_content(), 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(), 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_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), profperm_init(), rbmark_content(), redbasic_form(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), rpost_content(), search(), search_ac_init(), search_content(), searchbox(), service_class_allows(), service_class_fetch(), 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_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().

@@ -1228,7 +1230,7 @@ Variables @@ -1346,7 +1348,7 @@ Variables
-

Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), 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(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), App\build_pagehead(), channel_content(), chatsvc_content(), check_form_security_token(), cloud_init(), community_content(), connections_content(), connections_post(), connedit_content(), construct_page(), consume_feed(), conversation(), create_account(), create_identity(), current_theme(), del_pconfig(), del_xconfig(), delegate_content(), detect_language(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), encode_rel_links(), 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(), process_delivery(), profile_photo_post(), profile_sidebar(), profiles_post(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), rpost_content(), script_path(), search_ac_init(), search_content(), search_init(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_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().

+

Referenced by FriendicaSmarty\__construct(), App\__construct(), acl_init(), 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(), attach_store(), authenticate_success(), bbcode(), bbtoevent(), best_link_url(), bookmark_add(), App\build_pagehead(), channel_content(), chatsvc_content(), check_form_security_token(), cloud_init(), community_content(), 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(), directory_content(), dirprofile_init(), dirsearch_content(), display_content(), encode_rel_links(), 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(), process_delivery(), profile_photo_post(), profile_sidebar(), profiles_post(), rbmark_content(), rbmark_post(), ref_session_read(), register_content(), register_post(), App\register_template_engine(), regmod_content(), remote_user(), removeme_post(), rpost_content(), script_path(), search_ac_init(), search_content(), search_init(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_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().

@@ -1380,7 +1382,7 @@ Variables
-

Referenced by allowed_public_recips(), 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(), conversation(), create_identity(), deliver_run(), directory_content(), dirprofile_init(), display_content(), event_store(), filestorage_content(), follow_init(), format_categories(), format_filer(), 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(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), openid_content(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), register_post(), 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(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), and zot_new_uid().

+

Referenced by allowed_public_recips(), 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(), conversation(), create_identity(), deliver_run(), directory_content(), dirprofile_init(), display_content(), event_store(), filestorage_content(), follow_init(), format_categories(), format_filer(), 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(), login_content(), lostpass_content(), lostpass_post(), magic_init(), magiclink_url(), mail_post(), manage_content(), menu_content(), menu_post(), mitem_content(), mitem_post(), mood_init(), navbar_complete(), network_content(), new_channel_post(), notification(), notifications_post(), notifier_run(), openid_content(), photo_upload(), photos_album_widget(), photos_albums_list(), photos_create_item(), photos_list_photos(), post_activity_item(), post_init(), post_post(), profile_activity(), profile_sidebar(), public_recips(), pubsites_content(), rbmark_content(), rbmark_post(), register_post(), 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(), webpages_content(), wfinger_init(), widget_archive(), widget_chatroom_list(), widget_dirtags(), widget_filer(), widget_savedsearch(), widget_suggestions(), xref_init(), zfinger_init(), zid_init(), zot_build_packet(), zot_fetch(), and zot_new_uid().

@@ -2129,7 +2131,7 @@ Variables
- +
const DB_UPDATE_VERSION 1098const DB_UPDATE_VERSION 1101
@@ -2828,7 +2830,7 @@ Variables
-

Referenced by RedDirectory\__construct(), 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(), bookmark_add(), consume_feed(), conversation(), RedDirectory\createDirectory(), RedDirectory\createFile(), delete_imported_item(), deliver_run(), directory_content(), directory_run(), dirprofile_init(), expire_run(), fix_private_photos(), RedFile\get(), get_language_name(), Conversation\get_template_data(), RedDirectory\getDir(), RedFile\getName(), group_content(), guess_image_type(), import_author_rss(), 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(), local_dir_update(), FKOAuth1\loginUser(), magic_init(), mail_store(), mood_init(), new_contact(), notification(), notifier_run(), parse_url_content(), photo_upload(), photos_post(), poco_init(), poco_load(), poke_init(), post_post(), process_delivery(), process_profile_delivery(), profile_load(), RedFile\put(), RedFileData(), Item\remove_child(), scale_external_images(), enotify\send(), Conversation\set_mode(), RedFile\setName(), unload_plugin(), zot_finger(), zot_gethub(), zot_register_hub(), and zotfeed_init().

+

Referenced by RedDirectory\__construct(), 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(), bookmark_add(), consume_feed(), conversation(), RedDirectory\createDirectory(), RedDirectory\createFile(), delete_imported_item(), deliver_run(), directory_content(), directory_run(), dirprofile_init(), expire_run(), fix_private_photos(), RedFile\get(), get_language_name(), Conversation\get_template_data(), RedDirectory\getDir(), RedFile\getName(), group_content(), guess_image_type(), import_author_rss(), 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(), local_dir_update(), FKOAuth1\loginUser(), magic_init(), mail_store(), mood_init(), new_contact(), notification(), notifier_run(), parse_url_content(), photo_upload(), photos_post(), poco_init(), poco_load(), poke_init(), post_post(), process_delivery(), process_profile_delivery(), profile_load(), RedFile\put(), RedFileData(), Item\remove_child(), scale_external_images(), enotify\send(), Conversation\set_mode(), RedFile\setName(), unload_plugin(), zot_finger(), zot_gethub(), zot_register_hub(), and zotfeed_init().

@@ -2982,7 +2984,21 @@ Variables + + +
+
+ + + + +
const MENU_ITEM_CHATROOM 0x0004
+
+ +

Referenced by bookmark_add(), and poco_init().

@@ -2996,7 +3012,7 @@ Variables @@ -3010,7 +3026,7 @@ Variables @@ -3025,7 +3041,7 @@ Variables diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js index 7bcf18827..2a2602b58 100644 --- a/doc/html/boot_8php.js +++ b/doc/html/boot_8php.js @@ -155,6 +155,7 @@ var boot_8php = [ "MAX_IMAGE_LENGTH", "boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa", null ], [ "MAX_LIKERS", "boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd", null ], [ "MENU_BOOKMARK", "boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e", null ], + [ "MENU_ITEM_CHATROOM", "boot_8php.html#af6b3de425e5849c73370a484c44607a3", null ], [ "MENU_ITEM_NEWWIN", "boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5", null ], [ "MENU_ITEM_ZID", "boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53", null ], [ "MENU_SYSTEM", "boot_8php.html#a718a801b0be6cbaef5e519516da12721", null ], diff --git a/doc/html/cloud_8php.html b/doc/html/cloud_8php.html index a5ea81c0a..229bf4d9a 100644 --- a/doc/html/cloud_8php.html +++ b/doc/html/cloud_8php.html @@ -112,8 +112,8 @@ $(document).ready(function(){initNavTree('cloud_8php.html','');}); - +

Functions

if(x($_SERVER,'REDIRECT_REMOTE_USER'))
-if(x($_SERVER,'HTTP_AUTHORIZATION')) 
cloud_init (&$a)
if(x($_SERVER,'REDIRECT_REMOTE_USER'))
+if(x($_SERVER,'HTTP_AUTHORIZATION')) 
cloud_init (&$a)
 

Function Documentation

@@ -122,7 +122,7 @@ Functions
- + diff --git a/doc/html/comanche_8php.html b/doc/html/comanche_8php.html index 57572239d..7a235b5b3 100644 --- a/doc/html/comanche_8php.html +++ b/doc/html/comanche_8php.html @@ -116,8 +116,8 @@ Functions - - + + @@ -148,7 +148,7 @@ Functions - +
if (x($_SERVER,'REDIRECT_REMOTE_USER')) if (x($_SERVER,'HTTP_AUTHORIZATION')) cloud_init if (x($_SERVER,'REDIRECT_REMOTE_USER')) if (x($_SERVER,'HTTP_AUTHORIZATION')) cloud_init ( $a)
 
 comanche_parser (&$a, $s)
 
 comanche_menu ($name)
 
 comanche_menu ($name, $class= '')
 
 comanche_replace_region ($match)
 
 comanche_block ($name)
@@ -156,8 +156,18 @@ Functions - + + + + + + + + + + +
comanche_menu (  $name)$name,
 $class = '' 
)
diff --git a/doc/html/comanche_8php.js b/doc/html/comanche_8php.js index f3c4d5ff3..4c16e7e84 100644 --- a/doc/html/comanche_8php.js +++ b/doc/html/comanche_8php.js @@ -1,7 +1,7 @@ var comanche_8php = [ [ "comanche_block", "comanche_8php.html#a5a7ab801717d38e91ac910b933973887", null ], - [ "comanche_menu", "comanche_8php.html#a1fe339e1454803aa502ac89379c17f5b", null ], + [ "comanche_menu", "comanche_8php.html#ad5a44e42231759aba1dda49e0490501e", null ], [ "comanche_parser", "comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922", null ], [ "comanche_region", "comanche_8php.html#a5718daeda40bf835345fe061e8808cdf", null ], [ "comanche_replace_region", "comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe", null ], diff --git a/doc/html/dba__driver_8php.html b/doc/html/dba__driver_8php.html index 8c47a8a44..94329a67e 100644 --- a/doc/html/dba__driver_8php.html +++ b/doc/html/dba__driver_8php.html @@ -202,7 +202,7 @@ Functions
-

Referenced by account_verify_password(), achievements_content(), acl_init(), admin_page_users(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedDirectory\createFile(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), directory_run(), dirsearch_content(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), events_post(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), RedDirectory\getDir(), RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), home_content(), import_author_rss(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_message_id(), item_permissions_sql(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_content(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), msearch_post(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), RedFile\put(), queue_run(), rconnect_url(), red_zrl_callback(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedFile\setName(), settings_post(), siteinfo_init(), sources_content(), sources_post(), photo_driver\store(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), vote_post(), webpages_content(), wfinger_init(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by account_verify_password(), achievements_content(), acl_init(), admin_page_users(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_destroy(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatsvc_content(), chatsvc_post(), check_account_email(), check_account_invite(), check_item_source(), check_webbie(), Cache\clear(), comanche_block(), common_friends(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_post(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), RedDirectory\createFile(), dbesc_array_cb(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), directory_run(), dirsearch_content(), display_content(), downgrade_accounts(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), event_store(), events_content(), events_post(), fbrowser_content(), feed_init(), fetch_post_tags(), file_tag_file_query(), filerm_content(), filestorage_content(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), RedDirectory\getDir(), RedDirectory\getLastModified(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), home_content(), import_author_rss(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_message_id(), item_permissions_sql(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), like_content(), load_config(), load_plugin(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_delete(), menu_edit(), menu_edit_item(), menu_fetch(), menu_list(), msearch_post(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifier_run(), notify_init(), oauth_get_client(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), RedFile\put(), queue_run(), rconnect_url(), red_zrl_callback(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_hook(), register_post(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), set_xconfig(), RedFile\setName(), settings_post(), siteinfo_init(), sources_content(), sources_post(), photo_driver\store(), store_item_tag(), stream_perms_xchans(), stringify_array_elms(), subthread_content(), suggest_init(), sync_directories(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_savedsearch(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_process_response(), zot_refresh(), and zotfeed_init().

@@ -318,7 +318,7 @@ Functions

This will happen occasionally trying to store the session data after abnormal program termination

-

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), achievements_content(), acl_init(), admin_content(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), all_friends(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), community_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), dirsearch_content(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedDirectory\getDir(), RedDirectory\getLastModified(), RedDirectory\getQuotaInfo(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), home_content(), identity_basic_export(), identity_check_service_class(), import_author_rss(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_check_service_class(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), match_content(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), RedFile\put(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), RedFile\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_filer(), widget_follow(), widget_savedsearch(), widget_settings_menu(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().

+

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_remove(), account_total(), account_verify_password(), achievements_content(), acl_init(), admin_content(), admin_page_dbsync(), admin_page_hubloc(), admin_page_hubloc_post(), admin_page_summary(), admin_page_users(), admin_page_users_post(), all_friends(), allowed_public_recips(), api_direct_messages_box(), api_direct_messages_new(), api_favorites(), api_ff_ids(), api_format_items(), api_get_user(), api_status_show(), api_statuses_destroy(), api_statuses_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_change_permissions(), attach_count_files(), attach_delete(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), authenticate_success(), blocks_content(), bookmark_add(), bookmarks_init(), build_sync_packet(), call_hooks(), categories_widget(), change_channel(), chanman_remove_everything_from_network(), channel_content(), channel_remove(), channel_total(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), chat_content(), chat_post(), chatroom_create(), chatroom_destroy(), chatroom_enter(), chatroom_leave(), chatroom_list(), chatsvc_content(), chatsvc_init(), chatsvc_post(), check_account_email(), check_account_invite(), check_config(), check_item_source(), check_webbie(), Cache\clear(), collect_recipients(), comanche_block(), common_friends(), common_friends_zcid(), common_init(), community_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_init(), connedit_post(), consume_feed(), contact_block(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), current_theme(), del_config(), del_pconfig(), del_xconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dir_tagadelic(), directory_content(), directory_run(), dirprofile_init(), dirsearch_content(), display_content(), downgrade_accounts(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), feed_init(), fetch_post_tags(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), first_post_date(), fix_attached_photo_permissions(), fix_private_photos(), fix_system_urls(), fsuggest_content(), fsuggest_post(), Cache\get(), RedFile\get(), get_all_perms(), get_birthdays(), get_channel_by_nick(), get_cloudpath(), get_config_from_storage(), get_events(), get_item_elements(), get_online_status(), get_sys_channel(), get_things(), get_words(), RedDirectory\getDir(), RedDirectory\getLastModified(), RedDirectory\getQuotaInfo(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rec_byhash(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), home_content(), identity_basic_export(), identity_check_service_class(), import_author_rss(), import_author_zot(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), invite_post(), item_check_service_class(), item_expire(), item_message_id(), item_post(), item_store(), item_store_update(), items_fetch(), layout_select(), layouts_content(), like_content(), list_public_sites(), load_config(), load_contact_links(), load_hooks(), load_pconfig(), load_plugin(), load_translation_table(), load_xconfig(), local_dir_update(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_store(), manage_content(), match_content(), match_openid(), member_of(), menu_add_item(), menu_create(), menu_del_item(), menu_delete(), menu_delete_id(), menu_edit(), menu_edit_item(), menu_fetch(), menu_fetch_id(), menu_list(), mimetype_select(), mini_group_select(), mitem_content(), mood_init(), msearch_post(), network_content(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), oembed_fetch_url(), onedirsync_run(), onepoll_run(), openid_content(), page_content(), pagelist_widget(), pdl_selector(), perm_is_allowed(), photo_init(), photo_new_resource(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_list_photos(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), RedFile\put(), queue_run(), random_profile(), rconnect_url(), red_zrl_callback(), RedChannelList(), RedCollectionData(), RedFileData(), ref_session_destroy(), ref_session_gc(), ref_session_read(), ref_session_write(), register_content(), register_hook(), register_post(), reload_plugins(), remote_online_status(), remove_all_xchan_resources(), remove_community_tag(), remove_queue_item(), rmagic_init(), rmagic_post(), photo_driver\save(), search_ac_init(), search_content(), send_message(), send_reg_approval_email(), send_status_notifications(), service_class_allows(), service_class_fetch(), Cache\set(), set_config(), set_default_login_identity(), set_pconfig(), set_xconfig(), RedFile\setName(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), sitelist_init(), sources_content(), sources_post(), starred_init(), photo_driver\store(), store_item_tag(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), suggest_init(), suggestion_query(), sync_directories(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), thing_content(), thing_init(), tryzrlaudio(), tryzrlvideo(), uninstall_plugin(), unregister_hook(), update_directory_entry(), update_modtime(), update_queue_time(), update_remote_id(), update_suggestions(), user_allow(), user_deny(), RedBasicAuth\validateUserPass(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), vote_init(), vote_post(), webpages_content(), wfinger_init(), widget_bookmarkedchats(), widget_filer(), widget_follow(), widget_savedsearch(), widget_settings_menu(), widget_suggestedchats(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), z_input_filter(), z_readdir(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hublocs(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), and zotfeed_init().

diff --git a/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html b/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html index d5d596a86..6f0ed1121 100644 --- a/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html +++ b/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html @@ -106,10 +106,14 @@ $(document).ready(function(){initNavTree('dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.h Files file  config.php   +file  functions.php +  file  style.php   file  theme.php   +file  theme_init.php diff --git a/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js b/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js index 749793501..5a54bf95f 100644 --- a/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js +++ b/doc/html/dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.js @@ -1,6 +1,8 @@ var dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5 = [ [ "config.php", "view_2theme_2apw_2php_2config_8php.html", "view_2theme_2apw_2php_2config_8php" ], + [ "functions.php", "functions_8php.html", "functions_8php" ], [ "style.php", "apw_2php_2style_8php.html", "apw_2php_2style_8php" ], - [ "theme.php", "apw_2php_2theme_8php.html", "apw_2php_2theme_8php" ] + [ "theme.php", "apw_2php_2theme_8php.html", "apw_2php_2theme_8php" ], + [ "theme_init.php", "theme_2apw_2php_2theme__init_8php.html", "theme_2apw_2php_2theme__init_8php" ] ]; \ No newline at end of file diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html index bbf142733..be8951bb9 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html @@ -276,6 +276,8 @@ Files   file  randprof.php   +file  rbmark.php +  file  register.php   file  regmod.php diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js index 1fd7d42d1..fe3688887 100644 --- a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js @@ -86,6 +86,7 @@ var dir_d41ce877eb409a4791b288730010abe2 = [ "profperm.php", "profperm_8php.html", "profperm_8php" ], [ "pubsites.php", "pubsites_8php.html", "pubsites_8php" ], [ "randprof.php", "randprof_8php.html", "randprof_8php" ], + [ "rbmark.php", "rbmark_8php.html", "rbmark_8php" ], [ "register.php", "register_8php.html", "register_8php" ], [ "regmod.php", "regmod_8php.html", "regmod_8php" ], [ "removeme.php", "removeme_8php.html", "removeme_8php" ], diff --git a/doc/html/dir_d520c5cf583201d9437764f209363c22.html b/doc/html/dir_d520c5cf583201d9437764f209363c22.html index 5d99e87f7..c1c883fad 100644 --- a/doc/html/dir_d520c5cf583201d9437764f209363c22.html +++ b/doc/html/dir_d520c5cf583201d9437764f209363c22.html @@ -104,6 +104,8 @@ $(document).ready(function(){initNavTree('dir_d520c5cf583201d9437764f209363c22.h + + diff --git a/doc/html/dir_d520c5cf583201d9437764f209363c22.js b/doc/html/dir_d520c5cf583201d9437764f209363c22.js index d5e01c25e..9b58769c1 100644 --- a/doc/html/dir_d520c5cf583201d9437764f209363c22.js +++ b/doc/html/dir_d520c5cf583201d9437764f209363c22.js @@ -1,5 +1,6 @@ var dir_d520c5cf583201d9437764f209363c22 = [ + [ "css", "dir_f19da925ee886ec38f19b0e8c19779bc.html", "dir_f19da925ee886ec38f19b0e8c19779bc" ], [ "php", "dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html", "dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5" ], [ "schema", "dir_05f4fba29266e8fd7869afcd6cefb5cb.html", "dir_05f4fba29266e8fd7869afcd6cefb5cb" ] ]; \ No newline at end of file diff --git a/doc/html/docblox__errorchecker_8php.html b/doc/html/docblox__errorchecker_8php.html index 28091a557..7ef1bae9f 100644 --- a/doc/html/docblox__errorchecker_8php.html +++ b/doc/html/docblox__errorchecker_8php.html @@ -134,7 +134,7 @@ Variables - + diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html index 2a5b6ba5b..e0508b65f 100644 --- a/doc/html/extract_8php.html +++ b/doc/html/extract_8php.html @@ -132,7 +132,7 @@ Variables

Directories

directory  css
 
directory  php
 
directory  schema
 
 $filelist =array()
 
while($dh=opendir($dir)) if(runs($filelist)) $res =$filelist
while($dh=opendir($dir)) if(runs($filelist)) $res =$filelist
 
 $i =0
 
-

Referenced by activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_post(), chatroom_create(), chatroom_destroy(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), drop_item(), event_store(), feature_enabled(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_cloudpath(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), settings_post(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), theme_content(), thing_init(), validate_channelname(), wfinger_init(), widget_affinity(), widget_archive(), widget_suggestions(), widget_tagcloud_wall(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

+

Referenced by activity_sanitise(), api_rss_extra(), api_statuses_user_timeline(), array_sanitise(), attach_mkdir(), attach_store(), bookmark_add(), chat_post(), chatroom_create(), chatroom_destroy(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connect_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_select(), conversation(), create_account(), create_identity(), dbesc_array(), directory_content(), drop_item(), event_store(), feature_enabled(), find_xchan_in_array(), format_like(), get_all_perms(), get_atom_elements(), get_cloudpath(), get_features(), get_item_elements(), get_mail_elements(), get_mood_verbs(), get_poke_verbs(), get_profile_elements(), Item\get_template_data(), get_terms_oftype(), App\get_widgets(), group_select(), ids_to_querystr(), import_author_rss(), import_author_xchan(), import_directory_profile(), import_post(), import_site(), import_xchan(), item_getfeedattach(), item_store(), item_store_update(), items_fetch(), like_content(), like_puller(), load_database(), magic_init(), mail_store(), menu_add_item(), menu_create(), menu_edit(), menu_edit_item(), mood_init(), network_content(), new_channel_post(), new_contact(), obj_verbs(), openid_content(), parse_url_content(), pdl_selector(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), ping_init(), po2php_run(), poke_init(), post_activity_item(), post_init(), post_post(), proc_run(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profiles_content(), redbasic_form(), register_post(), remove_community_tag(), replace_macros(), rmagic_post(), photo_driver\save(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), settings_post(), sort_by_date(), stringify_array_elms(), subthread_content(), suggest_content(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), theme_content(), thing_init(), validate_channelname(), wfinger_init(), widget_affinity(), widget_archive(), widget_suggestions(), widget_tagcloud_wall(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid(), zid_init(), zot_fetch(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

@@ -160,7 +160,7 @@ Variables
-

Referenced by Template\_build_nodes(), Template\_replcb_node(), admin_page_themes(), attribute_contains(), base64url_decode(), base64url_encode(), bb_tag_preg_replace(), bb_translate_video(), bbtoevent(), bbtovcal(), bookmarks_init(), chanlink_hash(), chanlink_url(), comanche_parser(), comanche_region(), comanche_webpage(), datetime_convert(), day_translate(), detect_language(), diaspora2bb(), diaspora_ol(), diaspora_ul(), expand_acl(), file_tag_decode(), file_tag_encode(), file_tag_file_query(), fix_mce_lf(), fix_private_photos(), format_categories(), format_filer(), format_term_for_display(), get_bb_tag_pos(), get_intltext_template(), get_language_name(), get_markup_template(), get_tags(), html2bb_video(), info(), is_a_date_arg(), is_foreigner(), is_member(), json_decode_plus(), legal_webbie(), linkify(), magic_link(), mail_content(), network_to_name(), normalise_openid(), notice(), notifier_run(), oembed_iframe(), oembed_replacecb(), oexchange_content(), parse_xml_string(), photos_post(), poco_load(), prepare_body(), print_template(), printable(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), protect_sprintf(), purify_html(), qp(), random_string(), Template\replace(), replace_macros(), FriendicaSmartyEngine\replace_macros(), Template\replace_macros(), scale_external_images(), search(), searchbox(), siteinfo_content(), smilies(), sslify(), string_splitter(), strip_zids(), stripdcode_br_cb(), t(), tag_deliver(), template_escape(), template_unescape(), term_query(), theme_attachments(), unamp(), undo_post_tagging(), unxmlify(), Template\var_replace(), webfinger(), webfinger_dfrn(), x(), z_fetch_url(), z_input_filter(), z_post_url(), zfinger_init(), and zid().

+

Referenced by Template\_build_nodes(), Template\_replcb_node(), admin_page_themes(), attribute_contains(), base64url_decode(), base64url_encode(), bb_tag_preg_replace(), bb_translate_video(), bbtoevent(), bbtovcal(), bookmarks_init(), chanlink_hash(), chanlink_url(), comanche_parser(), comanche_region(), comanche_webpage(), construct_page(), datetime_convert(), day_translate(), detect_language(), diaspora2bb(), diaspora_ol(), diaspora_ul(), expand_acl(), file_tag_decode(), file_tag_encode(), file_tag_file_query(), fix_mce_lf(), fix_private_photos(), format_categories(), format_filer(), format_term_for_display(), get_bb_tag_pos(), get_intltext_template(), get_language_name(), get_markup_template(), get_tags(), html2bb_video(), info(), is_a_date_arg(), is_foreigner(), is_member(), json_decode_plus(), legal_webbie(), linkify(), magic_link(), mail_content(), network_to_name(), normalise_openid(), notice(), notifier_run(), oembed_iframe(), oembed_replacecb(), oexchange_content(), parse_xml_string(), photos_post(), poco_load(), prepare_body(), print_template(), printable(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), protect_sprintf(), purify_html(), qp(), random_string(), Template\replace(), replace_macros(), FriendicaSmartyEngine\replace_macros(), Template\replace_macros(), scale_external_images(), search(), searchbox(), siteinfo_content(), smilies(), sslify(), string_splitter(), strip_zids(), stripdcode_br_cb(), t(), tag_deliver(), template_escape(), template_unescape(), term_query(), theme_attachments(), unamp(), undo_post_tagging(), unxmlify(), Template\var_replace(), webfinger(), webfinger_dfrn(), x(), z_fetch_url(), z_input_filter(), z_post_url(), zfinger_init(), and zid().

diff --git a/doc/html/files.html b/doc/html/files.html index efc357c1c..ceb13a574 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -278,51 +278,52 @@ $(document).ready(function(){initNavTree('files.html','');}); |o*profperm.php |o*pubsites.php |o*randprof.php -|o*register.php -|o*regmod.php -|o*removeme.php -|o*rmagic.php -|o*rpost.php -|o*rsd_xml.php -|o*search.php -|o*search_ac.php -|o*settings.php -|o*setup.php -|o*share.php -|o*siteinfo.php -|o*sitelist.php -|o*smilies.php -|o*sources.php -|o*sslify.php -|o*starred.php -|o*subthread.php -|o*suggest.php -|o*tagger.php -|o*tagrm.php -|o*thing.php -|o*toggle_mobile.php -|o*toggle_safesearch.php -|o*uexport.php -|o*update_channel.php -|o*update_community.php -|o*update_display.php -|o*update_network.php -|o*update_search.php -|o*view.php -|o*viewconnections.php -|o*viewsrc.php -|o*vote.php -|o*wall_attach.php -|o*wall_upload.php -|o*webfinger.php -|o*webpages.php -|o*wfinger.php -|o*xchan.php -|o*xrd.php -|o*xref.php -|o*zfinger.php -|o*zotfeed.php -|\*zping.php +|o*rbmark.php +|o*register.php +|o*regmod.php +|o*removeme.php +|o*rmagic.php +|o*rpost.php +|o*rsd_xml.php +|o*search.php +|o*search_ac.php +|o*settings.php +|o*setup.php +|o*share.php +|o*siteinfo.php +|o*sitelist.php +|o*smilies.php +|o*sources.php +|o*sslify.php +|o*starred.php +|o*subthread.php +|o*suggest.php +|o*tagger.php +|o*tagrm.php +|o*thing.php +|o*toggle_mobile.php +|o*toggle_safesearch.php +|o*uexport.php +|o*update_channel.php +|o*update_community.php +|o*update_display.php +|o*update_network.php +|o*update_search.php +|o*view.php +|o*viewconnections.php +|o*viewsrc.php +|o*vote.php +|o*wall_attach.php +|o*wall_upload.php +|o*webfinger.php +|o*webpages.php +|o*wfinger.php +|o*xchan.php +|o*xrd.php +|o*xref.php +|o*zfinger.php +|o*zotfeed.php +|\*zping.php o+util |o+fpostit ||\*fpostit.php @@ -351,22 +352,26 @@ $(document).ready(function(){initNavTree('files.html','');}); ||\*theme_init.php |\+theme | o+apw -| |o+php -| ||o*config.php -| ||o*style.php -| ||\*theme.php -| |\+schema -| | o*darkness.php -| | o*darknessleftaside.php -| | o*darknessrightaside.php -| | o*greenthumbnails.php -| | o*minimalisticdarkness.php -| | o*olddefault.php -| | o*passion.php -| | o*passionwide.php -| | o*pine.php -| | o*redbasic.php -| | \*widedarkness.php +| |o+css +| ||\*mod_chanview.php +| |o+php +| ||o*config.php +| ||o*functions.php +| ||o*style.php +| ||o*theme.php +| ||\*theme_init.php +| |\+schema +| | o*darkness.php +| | o*darknessleftaside.php +| | o*darknessrightaside.php +| | o*greenthumbnails.php +| | o*minimalisticdarkness.php +| | o*olddefault.php +| | o*passion.php +| | o*passionwide.php +| | o*pine.php +| | o*redbasic.php +| | \*widedarkness.php | o+blogga | |o+php | ||o*config.php diff --git a/doc/html/fpostit_8php.html b/doc/html/fpostit_8php.html index b17a11384..edd788dd8 100644 --- a/doc/html/fpostit_8php.html +++ b/doc/html/fpostit_8php.html @@ -118,11 +118,11 @@ Functions - +if(isset($_GET['text'])) if(isset($_GET['url']))
+if((isset($title))&&(isset($text))&&(isset($url))) 

Variables

if(($_POST["friendika_acct_name"]!=
+
if(($_POST["friendika_acct_name"]!=
'')&&($_POST["friendika_password"]!=
'')) if(isset($_GET['title']))
-if(isset($_GET['text'])) if(isset($_GET['url']))
-if((isset($title))&&(isset($text))&&(isset($url))) 
else
else
 

Function Documentation

@@ -158,7 +158,7 @@ Variables
- +
if (isset($_POST['submit'])) elseif (isset($_POST['submit'])) else
diff --git a/doc/html/globals.html b/doc/html/globals.html index 5df6b05c9..c671f4918 100644 --- a/doc/html/globals.html +++ b/doc/html/globals.html @@ -177,13 +177,19 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $dirstack : docblox_errorchecker.php
  • +
  • $fext +: style.php +
  • $filelist : docblox_errorchecker.php
  • $files -: typo.php -, extract.php +: extract.php , tpldebug.php +, typo.php +
  • +
  • $fname +: style.php
  • $gc_probability : session.php @@ -197,6 +203,9 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $i : docblox_errorchecker.php
  • +
  • $iconsize +: style.php +
  • $infile : php2po.php
  • @@ -218,9 +227,15 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $nav_percent_min_opacity : style.php
  • +
  • $navheight +: style.php +
  • $needed : docblox_errorchecker.php
  • +
  • $obliquemacro +: style.php +
  • $out : php2po.php
  • @@ -254,6 +269,9 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $sectionleft : minimalisticdarkness.php
  • +
  • $sectiontop +: style.php +
  • $sectionwidth : minimalisticdarkness.php
  • @@ -263,9 +281,15 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $session_expire : session.php
  • +
  • $showlock +: style.php +
  • $str : typohelper.php
  • +
  • $strongmacro +: style.php +
  • $uid : style.php
  • @@ -275,6 +299,9 @@ $(document).ready(function(){initNavTree('globals.html','');});
  • $wwtop : style.php
  • +
  • $x +: style.php +
  • $zones : extract.php
  • diff --git a/doc/html/globals_0x62.html b/doc/html/globals_0x62.html index 07b3c6724..f36ed548c 100644 --- a/doc/html/globals_0x62.html +++ b/doc/html/globals_0x62.html @@ -220,7 +220,7 @@ $(document).ready(function(){initNavTree('globals_0x62.html','');}); : theme.php
  • bookmark_add() -: bookmarks.php +: bookmarks.php
  • bookmarks_content() : bookmarks.php diff --git a/doc/html/globals_0x63.html b/doc/html/globals_0x63.html index 1e9987b2f..dd801d9f9 100644 --- a/doc/html/globals_0x63.html +++ b/doc/html/globals_0x63.html @@ -322,7 +322,7 @@ $(document).ready(function(){initNavTree('globals_0x63.html','');}); : comanche.php
  • comanche_menu() -: comanche.php +: comanche.php
  • comanche_parser() : comanche.php diff --git a/doc/html/globals_0x67.html b/doc/html/globals_0x67.html index a3578bee3..5d11faf06 100644 --- a/doc/html/globals_0x67.html +++ b/doc/html/globals_0x67.html @@ -168,6 +168,9 @@ $(document).ready(function(){initNavTree('globals_0x67.html','');});
  • get_birthdays() : identity.php
  • +
  • get_bookmark_link() +: bookmarks.php +
  • get_browser_language() : language.php
  • diff --git a/doc/html/globals_0x69.html b/doc/html/globals_0x69.html index 0d880f0ff..2834e95b9 100644 --- a/doc/html/globals_0x69.html +++ b/doc/html/globals_0x69.html @@ -157,7 +157,7 @@ $(document).ready(function(){initNavTree('globals_0x69.html','');}); : php2po.php , default.php , full.php -, style.php +, style.php
  • import_author_rss() : items.php diff --git a/doc/html/globals_0x6d.html b/doc/html/globals_0x6d.html index 26714be71..c29a58934 100644 --- a/doc/html/globals_0x6d.html +++ b/doc/html/globals_0x6d.html @@ -240,6 +240,9 @@ $(document).ready(function(){initNavTree('globals_0x6d.html','');});
  • menu_fetch_id() : menu.php
  • +
  • MENU_ITEM_CHATROOM +: boot.php +
  • MENU_ITEM_NEWWIN : boot.php
  • @@ -253,7 +256,7 @@ $(document).ready(function(){initNavTree('globals_0x6d.html','');}); : menu.php
  • menu_render() -: menu.php +: menu.php
  • MENU_SYSTEM : boot.php diff --git a/doc/html/globals_0x72.html b/doc/html/globals_0x72.html index ba8858b00..778ccdc2a 100644 --- a/doc/html/globals_0x72.html +++ b/doc/html/globals_0x72.html @@ -159,6 +159,12 @@ $(document).ready(function(){initNavTree('globals_0x72.html','');});
  • randprof_init() : randprof.php
  • +
  • rbmark_content() +: rbmark.php +
  • +
  • rbmark_post() +: rbmark.php +
  • rconnect_url() : Contact.php
  • diff --git a/doc/html/globals_0x73.html b/doc/html/globals_0x73.html index b3892df35..9dce54a2c 100644 --- a/doc/html/globals_0x73.html +++ b/doc/html/globals_0x73.html @@ -270,6 +270,9 @@ $(document).ready(function(){initNavTree('globals_0x73.html','');});
  • sources_post() : sources.php
  • +
  • splitFilename() +: functions.php +
  • SSL_POLICY_FULL : boot.php
  • diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html index f74429e9e..5c6c8c33c 100644 --- a/doc/html/globals_0x77.html +++ b/doc/html/globals_0x77.html @@ -177,6 +177,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • widget_archive() : widgets.php
  • +
  • widget_bookmarkedchats() +: widgets.php +
  • widget_categories() : widgets.php
  • @@ -231,6 +234,9 @@ $(document).ready(function(){initNavTree('globals_0x77.html','');});
  • widget_settings_menu() : widgets.php
  • +
  • widget_suggestedchats() +: widgets.php +
  • widget_suggestions() : widgets.php
  • diff --git a/doc/html/globals_func_0x62.html b/doc/html/globals_func_0x62.html index cb663e545..7d1073194 100644 --- a/doc/html/globals_func_0x62.html +++ b/doc/html/globals_func_0x62.html @@ -219,7 +219,7 @@ $(document).ready(function(){initNavTree('globals_func_0x62.html','');}); : theme.php
  • bookmark_add() -: bookmarks.php +: bookmarks.php
  • bookmarks_content() : bookmarks.php diff --git a/doc/html/globals_func_0x63.html b/doc/html/globals_func_0x63.html index 01cfcc622..513c7125e 100644 --- a/doc/html/globals_func_0x63.html +++ b/doc/html/globals_func_0x63.html @@ -312,7 +312,7 @@ $(document).ready(function(){initNavTree('globals_func_0x63.html','');}); : comanche.php
  • comanche_menu() -: comanche.php +: comanche.php
  • comanche_parser() : comanche.php diff --git a/doc/html/globals_func_0x67.html b/doc/html/globals_func_0x67.html index abf85737c..12301d1d1 100644 --- a/doc/html/globals_func_0x67.html +++ b/doc/html/globals_func_0x67.html @@ -167,6 +167,9 @@ $(document).ready(function(){initNavTree('globals_func_0x67.html','');});
  • get_birthdays() : identity.php
  • +
  • get_bookmark_link() +: bookmarks.php +
  • get_browser_language() : language.php
  • diff --git a/doc/html/globals_func_0x6d.html b/doc/html/globals_func_0x6d.html index f1233bc97..50ebb053c 100644 --- a/doc/html/globals_func_0x6d.html +++ b/doc/html/globals_func_0x6d.html @@ -219,7 +219,7 @@ $(document).ready(function(){initNavTree('globals_func_0x6d.html','');}); : menu.php
  • menu_render() -: menu.php +: menu.php
  • message_content() : message.php diff --git a/doc/html/globals_func_0x72.html b/doc/html/globals_func_0x72.html index 8f621003b..6aa9487e2 100644 --- a/doc/html/globals_func_0x72.html +++ b/doc/html/globals_func_0x72.html @@ -152,6 +152,12 @@ $(document).ready(function(){initNavTree('globals_func_0x72.html','');});
  • randprof_init() : randprof.php
  • +
  • rbmark_content() +: rbmark.php +
  • +
  • rbmark_post() +: rbmark.php +
  • rconnect_url() : Contact.php
  • diff --git a/doc/html/globals_func_0x73.html b/doc/html/globals_func_0x73.html index c24e34214..b8aeeba55 100644 --- a/doc/html/globals_func_0x73.html +++ b/doc/html/globals_func_0x73.html @@ -269,6 +269,9 @@ $(document).ready(function(){initNavTree('globals_func_0x73.html','');});
  • sources_post() : sources.php
  • +
  • splitFilename() +: functions.php +
  • sslify() : text.php
  • diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html index 860b694e2..8b0a9030c 100644 --- a/doc/html/globals_func_0x77.html +++ b/doc/html/globals_func_0x77.html @@ -173,6 +173,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
  • widget_archive() : widgets.php
  • +
  • widget_bookmarkedchats() +: widgets.php +
  • widget_categories() : widgets.php
  • @@ -227,6 +230,9 @@ $(document).ready(function(){initNavTree('globals_func_0x77.html','');});
  • widget_settings_menu() : widgets.php
  • +
  • widget_suggestedchats() +: widgets.php +
  • widget_suggestions() : widgets.php
  • diff --git a/doc/html/globals_vars.html b/doc/html/globals_vars.html index e2ba25cd8..5e3294c86 100644 --- a/doc/html/globals_vars.html +++ b/doc/html/globals_vars.html @@ -172,13 +172,19 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
  • $dirstack : docblox_errorchecker.php
  • +
  • $fext +: style.php +
  • $filelist : docblox_errorchecker.php
  • $files -: typo.php -, extract.php +: extract.php , tpldebug.php +, typo.php +
  • +
  • $fname +: style.php
  • $gc_probability : session.php @@ -192,6 +198,9 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
  • $i : docblox_errorchecker.php
  • +
  • $iconsize +: style.php +
  • $infile : php2po.php
  • @@ -213,9 +222,15 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
  • $nav_percent_min_opacity : style.php
  • +
  • $navheight +: style.php +
  • $needed : docblox_errorchecker.php
  • +
  • $obliquemacro +: style.php +
  • $out : php2po.php
  • @@ -249,6 +264,9 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
  • $sectionleft : minimalisticdarkness.php
  • +
  • $sectiontop +: style.php +
  • $sectionwidth : minimalisticdarkness.php
  • @@ -258,9 +276,15 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
  • $session_expire : session.php
  • +
  • $showlock +: style.php +
  • $str : typohelper.php
  • +
  • $strongmacro +: style.php +
  • $uid : style.php
  • @@ -270,6 +294,9 @@ $(document).ready(function(){initNavTree('globals_vars.html','');});
  • $wwtop : style.php
  • +
  • $x +: style.php +
  • $zones : extract.php
  • diff --git a/doc/html/globals_vars_0x69.html b/doc/html/globals_vars_0x69.html index 2d4e26940..6f96dad0f 100644 --- a/doc/html/globals_vars_0x69.html +++ b/doc/html/globals_vars_0x69.html @@ -142,7 +142,7 @@ $(document).ready(function(){initNavTree('globals_vars_0x69.html','');});
  • if : php2po.php , default.php -, style.php +, style.php , full.php
  • ITEM_BLOCKED diff --git a/doc/html/globals_vars_0x6d.html b/doc/html/globals_vars_0x6d.html index b67fde2da..b6da098d2 100644 --- a/doc/html/globals_vars_0x6d.html +++ b/doc/html/globals_vars_0x6d.html @@ -166,6 +166,9 @@ $(document).ready(function(){initNavTree('globals_vars_0x6d.html','');});
  • MENU_BOOKMARK : boot.php
  • +
  • MENU_ITEM_CHATROOM +: boot.php +
  • MENU_ITEM_NEWWIN : boot.php
  • diff --git a/doc/html/help_8php.html b/doc/html/help_8php.html index 3a7df70f8..87291e66d 100644 --- a/doc/html/help_8php.html +++ b/doc/html/help_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('help_8php.html','');}); - + @@ -123,7 +123,7 @@ Functions

    Functions

    if(!function_exists('load_doc_file')) help_content (&$a)
    if(!function_exists('load_doc_file')) help_content (&$a)
     
     preg_callback_help_include ($matches)
     
    - + diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html index 24e96902c..f6317bf75 100644 --- a/doc/html/identity_8php.html +++ b/doc/html/identity_8php.html @@ -399,6 +399,8 @@ Functions
    if (!function_exists('load_doc_file')) help_content if (!function_exists('load_doc_file')) help_content ( $a)
    +

    Referenced by construct_page().

    +
    @@ -737,7 +739,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 chanview_content(), chatsvc_content(), conversation(), dirprofile_init(), format_categories(), get_plink(), like_puller(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), tryzrlaudio(), tryzrlvideo(), and viewconnections_content().

    +

    Referenced by chanview_content(), chatsvc_content(), conversation(), dirprofile_init(), format_categories(), get_plink(), like_puller(), localize_item(), match_content(), menu_render(), new_contact(), oembed_fetch_url(), tryzrlaudio(), tryzrlvideo(), viewconnections_content(), widget_bookmarkedchats(), and widget_suggestedchats().

    diff --git a/doc/html/include_2bookmarks_8php.html b/doc/html/include_2bookmarks_8php.html index 28218b211..3628677c8 100644 --- a/doc/html/include_2bookmarks_8php.html +++ b/doc/html/include_2bookmarks_8php.html @@ -112,11 +112,13 @@ $(document).ready(function(){initNavTree('include_2bookmarks_8php.html','');}); - - + + + +

    Functions

     bookmark_add ($channel, $sender, $taxonomy, $private)
     
     bookmark_add ($channel, $sender, $taxonomy, $private, $opts=null)
     
     get_bookmark_link ($observer)
     

    Function Documentation

    - +
    @@ -142,7 +144,13 @@ Functions - + + + + + + + @@ -152,7 +160,25 @@ Functions
     $private $private,
     $opts = null 
    -

    Referenced by bookmarks_init(), and tag_deliver().

    +

    Referenced by bookmarks_init(), rbmark_post(), and tag_deliver().

    + +
    +
    + +
    +
    + + + + + + + + +
    get_bookmark_link ( $observer)
    +
    + +

    Referenced by chat_content().

    diff --git a/doc/html/include_2bookmarks_8php.js b/doc/html/include_2bookmarks_8php.js index c63d2d4dd..e1884bb55 100644 --- a/doc/html/include_2bookmarks_8php.js +++ b/doc/html/include_2bookmarks_8php.js @@ -1,4 +1,5 @@ var include_2bookmarks_8php = [ - [ "bookmark_add", "include_2bookmarks_8php.html#a88ce7dee6a3dc7465aa9b8eaa45b0087", null ] + [ "bookmark_add", "include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323", null ], + [ "get_bookmark_link", "include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa", null ] ]; \ No newline at end of file diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html index c46e26f27..cc593de76 100644 --- a/doc/html/include_2config_8php.html +++ b/doc/html/include_2config_8php.html @@ -324,7 +324,7 @@ Functions
    -

    Referenced by Conversation\__construct(), App\build_pagehead(), change_channel(), channel_content(), chanview_content(), community_content(), connect_content(), contact_block(), contact_remove(), conversation(), current_theme(), display_content(), editpost_content(), feature_enabled(), findpeople_widget(), Item\get_comment_box(), get_online_status(), get_theme_uid(), group_content(), home_init(), invite_content(), invite_post(), item_expire(), item_post(), item_store(), item_store_update(), items_fetch(), FKOAuth1\loginUser(), mail_content(), message_content(), network_content(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), rpost_content(), search_content(), set_pconfig(), smilies(), tag_deliver(), theme_content(), and widget_notes().

    +

    Referenced by Conversation\__construct(), App\build_pagehead(), change_channel(), channel_content(), chanview_content(), community_content(), connect_content(), construct_page(), contact_block(), contact_remove(), conversation(), current_theme(), display_content(), editpost_content(), feature_enabled(), findpeople_widget(), Item\get_comment_box(), get_online_status(), get_theme_uid(), group_content(), home_init(), invite_content(), invite_post(), item_expire(), item_post(), item_store(), item_store_update(), items_fetch(), FKOAuth1\loginUser(), mail_content(), message_content(), network_content(), profile_activity(), profile_load(), profile_sidebar(), profperm_content(), remove_community_tag(), rpost_content(), search_content(), set_pconfig(), smilies(), tag_deliver(), theme_content(), and widget_notes().

    diff --git a/doc/html/include_2menu_8php.html b/doc/html/include_2menu_8php.html index 2fb579197..b00d62faa 100644 --- a/doc/html/include_2menu_8php.html +++ b/doc/html/include_2menu_8php.html @@ -114,8 +114,8 @@ $(document).ready(function(){initNavTree('include_2menu_8php.html','');}); Functions  menu_fetch ($name, $uid, $observer_xchan)   - menu_render ($menu, $edit=false) -  + menu_render ($menu, $class='', $edit=false) +   menu_fetch_id ($menu_id, $channel_id)    menu_create ($arr) @@ -166,7 +166,7 @@ Functions
    -

    Referenced by bookmark_add(), and mitem_post().

    +

    Referenced by bookmark_add(), and mitem_post().

    @@ -184,7 +184,7 @@ Functions
    -

    Referenced by bookmark_add(), and menu_post().

    +

    Referenced by bookmark_add(), and menu_post().

    @@ -358,7 +358,7 @@ Functions @@ -421,11 +421,11 @@ Functions

    If $flags is present, check that all the bits in $flags are set so that MENU_SYSTEM|MENU_BOOKMARK will return entries with both bits set. We will use this to find system generated bookmarks.

    -

    Referenced by bookmark_add(), bookmarks_content(), and menu_content().

    +

    Referenced by bookmark_add(), bookmarks_content(), menu_content(), and rbmark_content().

    - +
    @@ -435,6 +435,12 @@ Functions + + + + + + @@ -449,7 +455,7 @@ Functions
      $menu,
     $class = '',
    diff --git a/doc/html/include_2menu_8php.js b/doc/html/include_2menu_8php.js index e449b7920..c5e645c10 100644 --- a/doc/html/include_2menu_8php.js +++ b/doc/html/include_2menu_8php.js @@ -10,5 +10,5 @@ var include_2menu_8php = [ "menu_fetch", "include_2menu_8php.html#a68ebbf492470c930f652013656f9071d", null ], [ "menu_fetch_id", "include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7", null ], [ "menu_list", "include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d", null ], - [ "menu_render", "include_2menu_8php.html#a4d7123b0577fa994770199f9b831da11", null ] + [ "menu_render", "include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a", null ] ]; \ No newline at end of file diff --git a/doc/html/language_8php.html b/doc/html/language_8php.html index 6b1775abb..4a5553a59 100644 --- a/doc/html/language_8php.html +++ b/doc/html/language_8php.html @@ -361,7 +361,7 @@ Functions
    Returns
    translated string if exsists, otherwise s
    -

    Referenced by achievements_content(), admin_content(), admin_page_dbsync(), admin_page_hubloc(), 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_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), categories_widget(), channel_content(), channel_init(), chanview_content(), 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(), community_content(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), datesel_format(), day_translate(), delegate_content(), design_tools(), 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(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_attached_photo_permissions(), follow_init(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), 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(), help_content(), home_content(), RedBrowser\htmlActionsPanel(), identity_check_service_class(), import_author_rss(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), 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_content(), paginate(), pdl_selector(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), profile_activity(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), pubsites_content(), redbasic_form(), register_content(), register_post(), regmod_content(), relative_date(), removeme_content(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_deny(), validate_channelname(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), widget_archive(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), widget_tagcloud(), writepages_widget(), xchan_content(), z_readdir(), and zfinger_init().

    +

    Referenced by achievements_content(), admin_content(), admin_page_dbsync(), admin_page_hubloc(), 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_post(), advanced_profile(), alt_pager(), api_content(), api_post(), api_statuses_public_timeline(), apps_content(), apw_form(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_init(), attach_list_files(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), blogtheme_form(), bookmark_add(), bookmarks_content(), bookmarks_init(), categories_widget(), channel_content(), channel_init(), chanview_content(), 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(), community_content(), connect_content(), connect_init(), connect_post(), connections_content(), connections_post(), connedit_content(), connedit_post(), construct_page(), contact_block(), contact_poll_interval(), contact_reputation(), conversation(), create_account(), create_identity(), datesel_format(), day_translate(), delegate_content(), design_tools(), 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(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filestorage_content(), filestorage_post(), findpeople_widget(), fix_attached_photo_permissions(), follow_init(), format_categories(), format_event_diaspora(), format_event_html(), format_filer(), format_like(), format_notification(), fsuggest_content(), fsuggest_post(), gender_selector(), 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(), help_content(), home_content(), RedBrowser\htmlActionsPanel(), identity_check_service_class(), import_author_rss(), import_channel_photo(), import_content(), import_post(), import_xchan(), dba_driver\install(), invite_content(), invite_post(), item_check_service_class(), item_photo_menu(), item_post(), item_post_type(), items_fetch(), lang_selector(), layout_select(), layouts_content(), like_content(), load_database(), localize_item(), lockview_content(), login(), lostpass_content(), lostpass_post(), magic_init(), mail_content(), mail_post(), manage_content(), manual_config(), marital_selector(), 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_content(), paginate(), pdl_selector(), photo_upload(), photos_album_widget(), photos_content(), photos_init(), photos_post(), ping_init(), poke_content(), poke_init(), populate_acl(), post_activity_item(), post_init(), 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(), removeme_content(), rmagic_content(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_content(), searchbox(), select_timezone(), send_message(), send_reg_approval_email(), send_verification_email(), settings_post(), setup_content(), sexpref_selector(), siteinfo_content(), sources_content(), sources_post(), subthread_content(), suggest_content(), tagblock(), tagger_content(), tagrm_content(), tagrm_post(), theme_attachments(), thing_content(), thing_init(), timezone_cmp(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), upgrade_bool_message(), upgrade_link(), upgrade_message(), user_allow(), user_deny(), validate_channelname(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), vote_content(), wall_upload_post(), webpages_content(), what_next(), widget_affinity(), 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/navtree.js b/doc/html/navtree.js index e9b142c1f..8ebae3629 100644 --- a/doc/html/navtree.js +++ b/doc/html/navtree.js @@ -36,14 +36,14 @@ var NAVTREE = var NAVTREEINDEX = [ "BaseObject_8php.html", -"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866", -"classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8", -"classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f", -"functions_0x63.html", -"include_2config_8php.html#ac543813a980b3841cc5a277fcd4a24a6", -"namespaceFriendica.html", -"session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052", -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4" +"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c", +"classApp.html#af58db526040829b1c8bd95561b329262", +"classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1", +"friendica__smarty_8php.html", +"include_2chat_8php.html", +"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014", +"security_8php.html#a8d23d2597aae380a3341872fe9513380", +"view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js index 7d3fb5a74..5f1c5338e 100644 --- a/doc/html/navtreeindex0.js +++ b/doc/html/navtreeindex0.js @@ -68,11 +68,20 @@ var NAVTREEINDEX0 = "annotated.html":[4,0], "apps_8php.html":[5,0,1,5], "apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[5,0,1,5,0], -"apw_2php_2style_8php.html":[5,0,3,2,0,0,1], -"apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a":[5,0,3,2,0,0,1,0], -"apw_2php_2style_8php.html#a883f9f14e205f7aa7de02c14df67b40a":[5,0,3,2,0,0,1,1], -"apw_2php_2theme_8php.html":[5,0,3,2,0,0,2], -"apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89":[5,0,3,2,0,0,2,0], +"apw_2php_2style_8php.html":[5,0,3,2,0,1,2], +"apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30":[5,0,3,2,0,1,2,2], +"apw_2php_2style_8php.html#a109bbd7f4add27541707b191b73ef84a":[5,0,3,2,0,1,2,8], +"apw_2php_2style_8php.html#a1c8a7c0db8c174239f3909cb931cb872":[5,0,3,2,0,1,2,3], +"apw_2php_2style_8php.html#a2cad82a3ecadbe58dbc4197de1c63da0":[5,0,3,2,0,1,2,4], +"apw_2php_2style_8php.html#a404171b8f918c116e45a6421c92f0cc9":[5,0,3,2,0,1,2,0], +"apw_2php_2style_8php.html#aa58104ba36588bbf082cecbb3910e2ea":[5,0,3,2,0,1,2,7], +"apw_2php_2style_8php.html#ab9e0f70d44ab67f4334f9883631777fc":[5,0,3,2,0,1,2,1], +"apw_2php_2style_8php.html#acb0dedc3212a7c60ab2474768becd79a":[5,0,3,2,0,1,2,5], +"apw_2php_2style_8php.html#ad401ea1d1ba236f86863b4574f01e425":[5,0,3,2,0,1,2,6], +"apw_2php_2style_8php.html#aea44f144ed341be483b334a7634c1aec":[5,0,3,2,0,1,2,10], +"apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7":[5,0,3,2,0,1,2,9], +"apw_2php_2theme_8php.html":[5,0,3,2,0,1,3], +"apw_2php_2theme_8php.html#a42167c539043a39a6b83c252d05f1e89":[5,0,3,2,0,1,3,0], "auth_8php.html":[5,0,0,7], "auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee":[5,0,0,7,0], "auth_8php.html#a0950af7c2888ca1d4743fe5d0bff9ae5":[5,0,0,7,3], @@ -117,137 +126,128 @@ var NAVTREEINDEX0 = "boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[5,0,4,131], "boot_8php.html#a01353c9abebc3544ea080ac161729632":[5,0,4,35], "boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[5,0,4,145], -"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,244], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[5,0,4,245], "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[5,0,4,51], -"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[5,0,4,163], +"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[5,0,4,164], "boot_8php.html#a0450389f24c632906fbc24347700a543":[5,0,4,43], "boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[5,0,4,100], "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[5,0,4,1], -"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,202], +"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[5,0,4,203], "boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[5,0,4,65], -"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,167], -"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,262], -"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,258], -"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,261], +"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[5,0,4,168], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[5,0,4,263], +"boot_8php.html#a0cc8dc76bd10ac0ec81bac08a46f82fe":[5,0,4,259], +"boot_8php.html#a0d877df1e20bae765e1708be50f6b503":[5,0,4,262], "boot_8php.html#a0e4701c9742c3ef88f02ac450a042a84":[5,0,4,21], "boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[5,0,4,57], "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[5,0,4,15], "boot_8php.html#a0fb63e51c2a9814941842ae8f2f4dff8":[5,0,4,75], -"boot_8php.html#a115faf8797718c3165498abbd6895843":[5,0,4,248], +"boot_8php.html#a115faf8797718c3165498abbd6895843":[5,0,4,249], "boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[5,0,4,79], "boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[5,0,4,76], -"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[5,0,4,193], +"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[5,0,4,194], "boot_8php.html#a176664e78dcb9132e16be69418223eb2":[5,0,4,60], "boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[5,0,4,144], "boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[5,0,4,140], -"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,166], +"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[5,0,4,167], "boot_8php.html#a18a400fa45e5632811b33041d8c048bf":[5,0,4,134], -"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,269], -"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[5,0,4,238], -"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,271], -"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,170], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[5,0,4,270], +"boot_8php.html#a1ba00027b718db732f30fc0e2c3e0abc":[5,0,4,239], +"boot_8php.html#a1c923b99bf77e4203ae94e5684b6ad0f":[5,0,4,272], +"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[5,0,4,171], "boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[5,0,4,74], -"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,217], +"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[5,0,4,218], "boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[5,0,4,102], "boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[5,0,4,151], -"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[5,0,4,186], -"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,240], +"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[5,0,4,187], +"boot_8php.html#a21cc29e0025943e7c28ff58cb4856ac3":[5,0,4,241], "boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[5,0,4,38], "boot_8php.html#a24a7a70afedd5d85fe0eadc85afa9f77":[5,0,4,20], "boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[5,0,4,98], "boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[5,0,4,90], -"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,251], -"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[5,0,4,189], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[5,0,4,252], +"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[5,0,4,190], "boot_8php.html#a29528a2544373cc19a378f350040c6a1":[5,0,4,81], "boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[5,0,4,126], -"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,215], +"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[5,0,4,216], "boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[5,0,4,103], -"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[5,0,4,236], -"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[5,0,4,185], +"boot_8php.html#a2b525996e4426bdddbcec277778bde08":[5,0,4,237], +"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[5,0,4,186], "boot_8php.html#a2c8906f1af94a3559a5b4661067bb79d":[5,0,4,123], "boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[5,0,4,66], "boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[5,0,4,71], -"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,222], +"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[5,0,4,223], "boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[5,0,4,138], "boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[5,0,4,40], "boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[5,0,4,116], "boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[5,0,4,153], -"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,275], -"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,174], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[5,0,4,276], +"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[5,0,4,175], "boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[5,0,4,105], "boot_8php.html#a3b56bfc6a0dd159070e316ddac3b7456":[5,0,4,110], -"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,274], -"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,213], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[5,0,4,275], +"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[5,0,4,214], "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[5,0,4,12], "boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[5,0,4,58], "boot_8php.html#a3f40aa5bafff8c4eebdc62e5121daf77":[5,0,4,88], "boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[5,0,4,49], "boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[5,0,4,127], -"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,207], -"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[5,0,4,184], +"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[5,0,4,208], +"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[5,0,4,185], "boot_8php.html#a43c6c7d84d880e9500bd4f8f8ecc5731":[5,0,4,87], -"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[5,0,4,160], +"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[5,0,4,161], "boot_8php.html#a44ae1542a805ffd7f826fb511db07374":[5,0,4,148], "boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[5,0,4,69], "boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e":[5,0,4,154], -"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,259], -"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,172], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[5,0,4,260], +"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[5,0,4,173], "boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[5,0,4,101], -"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,230], -"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[5,0,4,171], +"boot_8php.html#a4a49b29838ef2c45ab3556b52baec6a4":[5,0,4,231], +"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[5,0,4,172], "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[5,0,4,6], -"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,204], -"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,226], -"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[5,0,4,196], +"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[5,0,4,205], +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[5,0,4,227], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[5,0,4,197], "boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[5,0,4,152], "boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[5,0,4,39], "boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[5,0,4,80], "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[5,0,4,32], -"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,188], -"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,225], -"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[5,0,4,272], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[5,0,4,189], +"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[5,0,4,226], +"boot_8php.html#a5a681a672e007cdc22b43345d71f07c6":[5,0,4,273], "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[5,0,4,19], "boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[5,0,4,59], -"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,178], -"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,200], +"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[5,0,4,179], +"boot_8php.html#a5b8484922918946d041e5e0515dbe718":[5,0,4,201], "boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[5,0,4,77], -"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[5,0,4,158], -"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,201], +"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[5,0,4,159], +"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[5,0,4,202], "boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[5,0,4,18], "boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[5,0,4,73], -"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,255], -"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,164], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[5,0,4,256], +"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[5,0,4,165], "boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[5,0,4,136], "boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[5,0,4,139], "boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[5,0,4,42], "boot_8php.html#a6969947145a139ec374ce098224d8e81":[5,0,4,142], -"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,242], -"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,229], -"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,223], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[5,0,4,243], +"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[5,0,4,230], +"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[5,0,4,224], "boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[5,0,4,99], "boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[5,0,4,91], -"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,211], +"boot_8php.html#a6df1102664f64b274810db85197c2755":[5,0,4,212], "boot_8php.html#a6e57d913634d033b4d5ad72d99fd3e9d":[5,0,4,125], -"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[5,0,4,205], -"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,241], -"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[5,0,4,157], +"boot_8php.html#a6ee7a72d558d1851bbb9e3cdde377932":[5,0,4,206], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[5,0,4,242], +"boot_8php.html#a718a801b0be6cbaef5e519516da12721":[5,0,4,158], "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[5,0,4,27], -"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[5,0,4,179], +"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[5,0,4,180], "boot_8php.html#a749144d8dd9c1366596a0213c277d050":[5,0,4,129], "boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[5,0,4,70], "boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[5,0,4,2], -"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,263], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[5,0,4,264], "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[5,0,4,4], "boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[5,0,4,72], "boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[5,0,4,85], -"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,232], -"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[5,0,4,111], -"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[5,0,4,63], -"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[5,0,4,128], -"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[5,0,4,159], -"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[5,0,4,67], -"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[5,0,4,104], -"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[5,0,4,55], -"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[5,0,4,161], -"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[5,0,4,46] +"boot_8php.html#a78849a1bf8ce8d9804b4cbb502e8f383":[5,0,4,233] }; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js index 49fa2193d..24e01a7cc 100644 --- a/doc/html/navtreeindex1.js +++ b/doc/html/navtreeindex1.js @@ -1,45 +1,54 @@ var NAVTREEINDEX1 = { +"boot_8php.html#a7a8ba64d089cc0412c59a2eefc6d655c":[5,0,4,111], +"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[5,0,4,63], +"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[5,0,4,128], +"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[5,0,4,160], +"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[5,0,4,67], +"boot_8php.html#a7c286add8961fd2d79216314cd4aadd8":[5,0,4,104], +"boot_8php.html#a7c2eb822d50e1554bf5c32861f36342b":[5,0,4,55], +"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[5,0,4,162], +"boot_8php.html#a7f3474fec541e261fc8dff47313c4017":[5,0,4,46], "boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[5,0,4,82], "boot_8php.html#a7fc4b291a7cdaa48b38e27344ea183cf":[5,0,4,114], -"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[5,0,4,198], +"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[5,0,4,199], "boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[5,0,4,50], "boot_8php.html#a845891f82bf6edd7fa2d578b66703112":[5,0,4,108], "boot_8php.html#a84f48897059bbd4a8738d7ee4cec6688":[5,0,4,54], -"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[5,0,4,209], +"boot_8php.html#a852d4036a3bed66af1534d014c4ecde2":[5,0,4,210], "boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[5,0,4,121], "boot_8php.html#a87b0f279f8413c7e4d805c5d85f20d34":[5,0,4,113], -"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,254], -"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,253], -"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,177], +"boot_8php.html#a882b666adfe21f035a0f8c02806066d6":[5,0,4,255], +"boot_8php.html#a8892374789fd261eb32a7969d934a14a":[5,0,4,254], +"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[5,0,4,178], "boot_8php.html#a899d24fd074594ceebbf72e1feff335f":[5,0,4,16], "boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[5,0,4,96], -"boot_8php.html#a8b2af16eaee9e7768a88d0e437877f3b":[5,0,4,206], -"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,227], +"boot_8php.html#a8b2af16eaee9e7768a88d0e437877f3b":[5,0,4,207], +"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[5,0,4,228], "boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[5,0,4,124], "boot_8php.html#a8da836617174eed9fc2ac8054125354b":[5,0,4,118], -"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,234], -"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[5,0,4,270], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[5,0,4,235], +"boot_8php.html#a8fdcc4ffb365a3267bd02ce8a8d466d6":[5,0,4,271], "boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[5,0,4,30], "boot_8php.html#a926cad0b3d8b9d9ee5da1898fc063ba3":[5,0,4,11], "boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[5,0,4,143], "boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[5,0,4,122], "boot_8php.html#a949116d9a295b214293006c060ca4848":[5,0,4,120], -"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[5,0,4,265], -"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,239], +"boot_8php.html#a9690d73434125ce594a1f5e7c2a4f7c0":[5,0,4,266], +"boot_8php.html#a96ad56755a21e1361dbd7bf93c9e7ff4":[5,0,4,240], "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[5,0,4,17], -"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,191], -"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,228], +"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[5,0,4,192], +"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[5,0,4,229], "boot_8php.html#a9c80420e5a063a4a87ce4831f086134d":[5,0,4,45], "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[5,0,4,5], -"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,220], -"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,192], -"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[5,0,4,268], -"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,256], -"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,219], -"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,180], +"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[5,0,4,221], +"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[5,0,4,193], +"boot_8php.html#a9ea1290e00c6d40684892047f2c778a9":[5,0,4,269], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[5,0,4,257], +"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[5,0,4,220], +"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[5,0,4,181], "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[5,0,4,24], -"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,199], +"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[5,0,4,200], "boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[5,0,4,41], "boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[5,0,4,150], "boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[5,0,4,9], @@ -47,98 +56,99 @@ var NAVTREEINDEX1 = "boot_8php.html#aa589421267f0c2f0d643f727792cce35":[5,0,4,107], "boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[5,0,4,84], "boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[5,0,4,93], -"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,224], +"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[5,0,4,225], "boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[5,0,4,133], -"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[5,0,4,208], +"boot_8php.html#aae6c941bde5fd6fce07e51dba7326ead":[5,0,4,209], "boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[5,0,4,64], -"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[5,0,4,183], +"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[5,0,4,184], "boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[5,0,4,112], -"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,210], +"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[5,0,4,211], "boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[5,0,4,31], -"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[5,0,4,203], -"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,231], -"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[5,0,4,176], -"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,214], +"boot_8php.html#ab3920c2f3cd64802c0b7ff625c3b2ea8":[5,0,4,204], +"boot_8php.html#ab4bc9c50ecc927b92d519e36562b0df0":[5,0,4,232], +"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[5,0,4,177], +"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[5,0,4,215], "boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[5,0,4,106], "boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[5,0,4,135], "boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[5,0,4,52], -"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[5,0,4,194], +"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[5,0,4,195], "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[5,0,4,7], "boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[5,0,4,95], "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[5,0,4,36], -"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[5,0,4,235], +"boot_8php.html#abbf5ac24eb8aeedb862f618ee0d21e86":[5,0,4,236], "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[5,0,4,3], -"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,260], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[5,0,4,261], "boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[5,0,4,62], "boot_8php.html#abeb4d86e17cefa8584f1244e2183b0e1":[5,0,4,109], "boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[5,0,4,94], "boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[5,0,4,119], "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[5,0,4,23], -"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[5,0,4,162], -"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,233], +"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[5,0,4,163], +"boot_8php.html#ac43182e0d8bae7576a30b603774974f8":[5,0,4,234], "boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[5,0,4,92], "boot_8php.html#ac5e74f899f6e98d8e91b14ba1c08bc08":[5,0,4,25], "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[5,0,4,34], "boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[5,0,4,53], -"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,266], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[5,0,4,267], "boot_8php.html#ac890557fedc5b5a3b1d996249b1e1a20":[5,0,4,115], "boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[5,0,4,117], -"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,190], +"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[5,0,4,191], "boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[5,0,4,33], "boot_8php.html#aca5e42678e178c6b9034610d66666fd7":[5,0,4,13], "boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[5,0,4,8], -"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,165], -"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[5,0,4,267], -"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,221], -"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[5,0,4,197], +"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[5,0,4,166], +"boot_8php.html#accd6f36cc9f40225cbd720e4d12a7c6e":[5,0,4,268], +"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[5,0,4,222], +"boot_8php.html#ace83842dbeb84f7ed9ac59a9f57a7c32":[5,0,4,198], "boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[5,0,4,61], "boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[5,0,4,146], -"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[5,0,4,155], +"boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5":[5,0,4,156], "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[5,0,4,10], "boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[5,0,4,68], "boot_8php.html#ad34c1547020a305915bcc39707744690":[5,0,4,83], "boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[5,0,4,28], -"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,216], -"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,243], -"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[5,0,4,237], +"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[5,0,4,217], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[5,0,4,244], +"boot_8php.html#ad88a70ec62e08d590123d3697dfe64d5":[5,0,4,238], "boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[5,0,4,89], "boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[5,0,4,130], -"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,246], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[5,0,4,247], "boot_8php.html#add517a0958ac684792c62142a3877f81":[5,0,4,37], "boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[5,0,4,22], -"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,252], -"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,173], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[5,0,4,253], +"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[5,0,4,174], "boot_8php.html#ae4861de36017fe399c1839f778bad9f5":[5,0,4,149], -"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,181], -"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[5,0,4,264], +"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[5,0,4,182], +"boot_8php.html#aea392cb26ed617f3a8cde648385b5df0":[5,0,4,265], "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[5,0,4,26], -"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,257], +"boot_8php.html#aead84fa27d7516b855220fe004964a45":[5,0,4,258], "boot_8php.html#aeb1039302affcbe7e8872c01c08c88f8":[5,0,4,47], -"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,218], -"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[5,0,4,247], -"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[5,0,4,156], +"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[5,0,4,219], +"boot_8php.html#aecaa1b6945b317ba8f1daf4af2aed8e6":[5,0,4,248], +"boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53":[5,0,4,157], "boot_8php.html#aedfb9501ed408278667995524e0d15cf":[5,0,4,97], -"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[5,0,4,168], -"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[5,0,4,182], +"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[5,0,4,169], +"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[5,0,4,183], "boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[5,0,4,132], "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[5,0,4,29], -"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,249], -"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[5,0,4,175], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[5,0,4,250], +"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[5,0,4,176], "boot_8php.html#af3a4271630aabd8be592213f925d6a36":[5,0,4,56], "boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[5,0,4,48], "boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[5,0,4,137], -"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[5,0,4,195], +"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[5,0,4,196], +"boot_8php.html#af6b3de425e5849c73370a484c44607a3":[5,0,4,155], "boot_8php.html#af6f6f6f40139f12fc09ec47373b30919":[5,0,4,86], -"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,245], -"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[5,0,4,187], -"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[5,0,4,169], -"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,250], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[5,0,4,246], +"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[5,0,4,188], +"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[5,0,4,170], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[5,0,4,251], "boot_8php.html#afbb1fe1b2c8c730ec8e08da93b6512c4":[5,0,4,44], "boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[5,0,4,78], "boot_8php.html#afe63ae69ba55299f813766e54df06ede":[5,0,4,141], "boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[5,0,4,14], -"boot_8php.html#afef254290febac854c85fc698d9483a6":[5,0,4,273], -"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,212], +"boot_8php.html#afef254290febac854c85fc698d9483a6":[5,0,4,274], +"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[5,0,4,213], "cache_8php.html":[5,0,0,12], "channel_8php.html":[5,0,1,10], "channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[5,0,1,10,0], @@ -239,15 +249,5 @@ var NAVTREEINDEX1 = "classApp.html#aeb1fe1c8ad9aa639909bd183ce578536":[4,0,5,18], "classApp.html#aeca29fd4f7192ca07369b3c598c36e67":[4,0,5,84], "classApp.html#af17df107f2216ddf5ad2a7e0f2ba2166":[4,0,5,15], -"classApp.html#af5007c42a693afd9c4899c243b2e1363":[4,0,5,49], -"classApp.html#af58db526040829b1c8bd95561b329262":[4,0,5,34], -"classApp.html#af6d39f63fb7116bbeb04e51696f99474":[4,0,5,0], -"classBaseObject.html":[4,0,6], -"classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2":[4,0,6,0], -"classCache.html":[4,0,7], -"classConversation.html":[4,0,8], -"classConversation.html#a2a96b7a6573ae53db861624659e831cb":[4,0,8,6], -"classConversation.html#a2f12724ef0244e9049fe1bb9641b516d":[4,0,8,19], -"classConversation.html#a41f4a549e6a99f98935c4742addd22c8":[4,0,8,20], -"classConversation.html#a4aab60bb39fa6761b6cacdc8d9da2901":[4,0,8,2] +"classApp.html#af5007c42a693afd9c4899c243b2e1363":[4,0,5,49] }; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js index 99e602486..fd512a2fc 100644 --- a/doc/html/navtreeindex2.js +++ b/doc/html/navtreeindex2.js @@ -1,5 +1,15 @@ var NAVTREEINDEX2 = { +"classApp.html#af58db526040829b1c8bd95561b329262":[4,0,5,34], +"classApp.html#af6d39f63fb7116bbeb04e51696f99474":[4,0,5,0], +"classBaseObject.html":[4,0,6], +"classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2":[4,0,6,0], +"classCache.html":[4,0,7], +"classConversation.html":[4,0,8], +"classConversation.html#a2a96b7a6573ae53db861624659e831cb":[4,0,8,6], +"classConversation.html#a2f12724ef0244e9049fe1bb9641b516d":[4,0,8,19], +"classConversation.html#a41f4a549e6a99f98935c4742addd22c8":[4,0,8,20], +"classConversation.html#a4aab60bb39fa6761b6cacdc8d9da2901":[4,0,8,2], "classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8":[4,0,8,7], "classConversation.html#a5879199008b96bee7550b576d614e1c1":[4,0,8,10], "classConversation.html#a5b6adbb2fe24f0f53d6c22660dff91b2":[4,0,8,17], @@ -239,15 +249,5 @@ var NAVTREEINDEX2 = "classphoto__gd.html#a1c75304bd15f3b9986f0b315fb59271e":[4,0,20,8], "classphoto__gd.html#a2f2e5900e6d8b1667892ac631b1d4754":[4,0,20,2], "classphoto__gd.html#a33092b889875b68bfb1c97ff123012d9":[4,0,20,6], -"classphoto__gd.html#a44cedef376044018702d9355ddc813ce":[4,0,20,3], -"classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1":[4,0,20,1], -"classphoto__gd.html#a77f87730b11093b76980c541159df37d":[4,0,20,7], -"classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484":[4,0,20,4], -"classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c":[4,0,20,0], -"classphoto__imagick.html":[4,0,21], -"classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7":[4,0,21,10], -"classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8":[4,0,21,7], -"classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4":[4,0,21,0], -"classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66":[4,0,21,2], -"classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019":[4,0,21,6] +"classphoto__gd.html#a44cedef376044018702d9355ddc813ce":[4,0,20,3] }; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js index 9816afbf7..517ae9bab 100644 --- a/doc/html/navtreeindex3.js +++ b/doc/html/navtreeindex3.js @@ -1,5 +1,15 @@ var NAVTREEINDEX3 = { +"classphoto__gd.html#a724703ecf71b1f1d04a80e86c76db6b1":[4,0,20,1], +"classphoto__gd.html#a77f87730b11093b76980c541159df37d":[4,0,20,7], +"classphoto__gd.html#a86757ba021fd80d1a5cf8c2f766a8484":[4,0,20,4], +"classphoto__gd.html#ab2232d775c8bacf66773a03308105f0c":[4,0,20,0], +"classphoto__imagick.html":[4,0,21], +"classphoto__imagick.html#a27596faca6108d9d563674d1b654a0b7":[4,0,21,10], +"classphoto__imagick.html#a2c9168f110ccd6c264095d766615dfa8":[4,0,21,7], +"classphoto__imagick.html#a2f33a03a89497a2b2768e29736d4a8a4":[4,0,21,0], +"classphoto__imagick.html#a3047c68bb4de7f66c2893fe451db2b66":[4,0,21,2], +"classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019":[4,0,21,6], "classphoto__imagick.html#a9df5738a4a18e76dd304c440e96f045f":[4,0,21,8], "classphoto__imagick.html#ad07288e0eb3922cb08cc9d33a163decc":[4,0,21,5], "classphoto__imagick.html#aef020d929f66f4370e33fc158c8eebd4":[4,0,21,4], @@ -15,10 +25,10 @@ var NAVTREEINDEX3 = "comanche_8php.html":[5,0,0,17], "comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe":[5,0,0,17,4], "comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922":[5,0,0,17,2], -"comanche_8php.html#a1fe339e1454803aa502ac89379c17f5b":[5,0,0,17,1], "comanche_8php.html#a5718daeda40bf835345fe061e8808cdf":[5,0,0,17,3], "comanche_8php.html#a5a7ab801717d38e91ac910b933973887":[5,0,0,17,0], "comanche_8php.html#a6b0191c1a63db1696a2eb139d90d9e7f":[5,0,0,17,6], +"comanche_8php.html#ad5a44e42231759aba1dda49e0490501e":[5,0,0,17,1], "comanche_8php.html#ae9fe1ce574db3dd0931eada80234f82a":[5,0,0,17,5], "comanche_8php.html#af7150df735e5ff9d467994cd6f769c6e":[5,0,0,17,7], "common_8php.html":[5,0,1,15], @@ -93,9 +103,9 @@ var NAVTREEINDEX3 = "crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[5,0,0,25,3], "crypto_8php.html#ad5e51fd44cff93cfaa07a37e24a5edec":[5,0,0,25,7], "dark_8php.html":[5,0,3,2,2,1,0], -"darkness_8php.html":[5,0,3,2,0,1,0], -"darknessleftaside_8php.html":[5,0,3,2,0,1,1], -"darknessrightaside_8php.html":[5,0,3,2,0,1,2], +"darkness_8php.html":[5,0,3,2,0,2,0], +"darknessleftaside_8php.html":[5,0,3,2,0,2,1], +"darknessrightaside_8php.html":[5,0,3,2,0,2,2], "datetime_8php.html":[5,0,0,26], "datetime_8php.html#a03900dcf0f9e3c58793a031673a70326":[5,0,0,26,6], "datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1":[5,0,0,26,11], @@ -128,7 +138,7 @@ var NAVTREEINDEX3 = "deliver_8php.html":[5,0,0,27], "deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[5,0,0,27,0], "dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[5,0,3,2,2,0], -"dir_05f4fba29266e8fd7869afcd6cefb5cb.html":[5,0,3,2,0,1], +"dir_05f4fba29266e8fd7869afcd6cefb5cb.html":[5,0,3,2,0,2], "dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[5,0,2,0], "dir_21bc5169ff11430004758be31dcfc6c4.html":[5,0,0,0], "dir_23ec12649285f9fabf3a6b7380226c28.html":[5,0,2], @@ -153,10 +163,11 @@ var NAVTREEINDEX3 = "dir_aae29906d7bfc07d076125f669c8352e.html":[5,0,0,1], "dir_b2f003339c516cc00c8cadcafbe82f13.html":[5,0,3], "dir_c02447ad39a5307c81c64e880ec9e8d3.html":[5,0,3,2,1,0], -"dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html":[5,0,3,2,0,0], +"dir_cb8a8f75dcdd0b3fbfcc82e9eda410c5.html":[5,0,3,2,0,1], "dir_d41ce877eb409a4791b288730010abe2.html":[5,0,1], "dir_d44c64559bbebec7f509842c48db8b23.html":[5,0,0], "dir_d520c5cf583201d9437764f209363c22.html":[5,0,3,2,0], +"dir_f19da925ee886ec38f19b0e8c19779bc.html":[5,0,3,2,0,0], "dirprofile_8php.html":[5,0,1,23], "dirprofile_8php.html#a3e1d30d3d93863ff5615f2df4ac7f052":[5,0,1,23,0], "dirsearch_8php.html":[5,0,1,24], @@ -238,16 +249,5 @@ var NAVTREEINDEX3 = "friendica-to-smarty-tpl_8py.html#ad9ef87ccb2c9960501f5e02424a22d80":[5,0,2,5,9], "friendica-to-smarty-tpl_8py.html#ae74419b16516956c66f7db714a93a6ac":[5,0,2,5,7], "friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb":[5,0,2,5,4], -"friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[5,0,2,5,3], -"friendica__smarty_8php.html":[5,0,0,35], -"fsuggest_8php.html":[5,0,1,37], -"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[5,0,1,37,1], -"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[5,0,1,37,0], -"full_8php.html":[5,0,3,1,1], -"full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db":[5,0,3,1,1,0], -"functions.html":[4,3,0], -"functions.html":[4,3,0,0], -"functions_0x5f.html":[4,3,0,1], -"functions_0x61.html":[4,3,0,2], -"functions_0x62.html":[4,3,0,3] +"friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[5,0,2,5,3] }; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js index 4b882f43c..ed4267c51 100644 --- a/doc/html/navtreeindex4.js +++ b/doc/html/navtreeindex4.js @@ -1,5 +1,16 @@ var NAVTREEINDEX4 = { +"friendica__smarty_8php.html":[5,0,0,35], +"fsuggest_8php.html":[5,0,1,37], +"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[5,0,1,37,1], +"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[5,0,1,37,0], +"full_8php.html":[5,0,3,1,1], +"full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db":[5,0,3,1,1,0], +"functions.html":[4,3,0], +"functions.html":[4,3,0,0], +"functions_0x5f.html":[4,3,0,1], +"functions_0x61.html":[4,3,0,2], +"functions_0x62.html":[4,3,0,3], "functions_0x63.html":[4,3,0,4], "functions_0x64.html":[4,3,0,5], "functions_0x65.html":[4,3,0,6], @@ -16,6 +27,8 @@ var NAVTREEINDEX4 = "functions_0x73.html":[4,3,0,17], "functions_0x74.html":[4,3,0,18], "functions_0x76.html":[4,3,0,19], +"functions_8php.html":[5,0,3,2,0,1,1], +"functions_8php.html#adefe514c95680928b3aae250cbc3c663":[5,0,3,2,0,1,1,0], "functions_func.html":[4,3,1], "functions_func.html":[4,3,1,0], "functions_func_0x61.html":[4,3,1,1], @@ -65,8 +78,8 @@ var NAVTREEINDEX4 = "globals_0x77.html":[5,1,0,24], "globals_0x78.html":[5,1,0,25], "globals_0x7a.html":[5,1,0,26], -"globals_func.html":[5,1,1], "globals_func.html":[5,1,1,0], +"globals_func.html":[5,1,1], "globals_func_0x61.html":[5,1,1,1], "globals_func_0x62.html":[5,1,1,2], "globals_func_0x63.html":[5,1,1,3], @@ -117,7 +130,7 @@ var NAVTREEINDEX4 = "globals_vars_0x7a.html":[5,1,2,21], "gprobe_8php.html":[5,0,0,36], "gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[5,0,0,36,0], -"greenthumbnails_8php.html":[5,0,3,2,0,1,3], +"greenthumbnails_8php.html":[5,0,3,2,0,2,3], "help_8php.html":[5,0,1,39], "help_8php.html#a06b2a51aaabed99e53a9b639047c4ce4":[5,0,1,39,1], "help_8php.html#af055e15f600ffa6fbca9386fdf715224":[5,0,1,39,0], @@ -233,21 +246,8 @@ var NAVTREEINDEX4 = "include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932":[5,0,0,6,1], "include_2attach_8php.html#aeb07968990e66a88c95483ca09a7f909":[5,0,0,6,11], "include_2bookmarks_8php.html":[5,0,0,11], -"include_2bookmarks_8php.html#a88ce7dee6a3dc7465aa9b8eaa45b0087":[5,0,0,11,0], +"include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa":[5,0,0,11,1], +"include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323":[5,0,0,11,0], "include_2chanman_8php.html":[5,0,0,13], -"include_2chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b":[5,0,0,13,0], -"include_2chat_8php.html":[5,0,0,14], -"include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f":[5,0,0,14,3], -"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[5,0,0,14,1], -"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[5,0,0,14,2], -"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[5,0,0,14,0], -"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[5,0,0,14,4], -"include_2config_8php.html":[5,0,0,18], -"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[5,0,0,18,7], -"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[5,0,0,18,0], -"include_2config_8php.html#a55bbed9a014c9109c767486834f3ca33":[5,0,0,18,9], -"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[5,0,0,18,11], -"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[5,0,0,18,1], -"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[5,0,0,18,2], -"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[5,0,0,18,6] +"include_2chanman_8php.html#a21ba9a5c961e866ff27aee3ee67bf99b":[5,0,0,13,0] }; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js index 59be36460..de01d01f2 100644 --- a/doc/html/navtreeindex5.js +++ b/doc/html/navtreeindex5.js @@ -1,5 +1,19 @@ var NAVTREEINDEX5 = { +"include_2chat_8php.html":[5,0,0,14], +"include_2chat_8php.html#a1ee1360f7d2549c7549ae07cb5190f0f":[5,0,0,14,3], +"include_2chat_8php.html#a2ba3af6884ecdce95de69262fe599639":[5,0,0,14,1], +"include_2chat_8php.html#a2c95b545e46bfee64faa05ecf0afea91":[5,0,0,14,2], +"include_2chat_8php.html#acdc80dba4eb796c7472b21129b435422":[5,0,0,14,0], +"include_2chat_8php.html#aedcb532a0627b8644001a2fadab4e87a":[5,0,0,14,4], +"include_2config_8php.html":[5,0,0,18], +"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[5,0,0,18,7], +"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[5,0,0,18,0], +"include_2config_8php.html#a55bbed9a014c9109c767486834f3ca33":[5,0,0,18,9], +"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[5,0,0,18,11], +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[5,0,0,18,1], +"include_2config_8php.html#a9c171def547deee16738dc58fdeb4b72":[5,0,0,18,2], +"include_2config_8php.html#aa3dc1d3de2d091ac702e675acd3a085e":[5,0,0,18,6], "include_2config_8php.html#ac543813a980b3841cc5a277fcd4a24a6":[5,0,0,18,8], "include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[5,0,0,18,5], "include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[5,0,0,18,10], @@ -24,11 +38,11 @@ var NAVTREEINDEX5 = "include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[5,0,0,37,3], "include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[5,0,0,37,9], "include_2menu_8php.html":[5,0,0,45], +"include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a":[5,0,0,45,10], "include_2menu_8php.html#a08a800821721781a8dfffbe31481ff98":[5,0,0,45,1], "include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d":[5,0,0,45,9], "include_2menu_8php.html#a3884bda4d85d84ec99447db9403a68d8":[5,0,0,45,3], "include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7":[5,0,0,45,8], -"include_2menu_8php.html#a4d7123b0577fa994770199f9b831da11":[5,0,0,45,10], "include_2menu_8php.html#a68ebbf492470c930f652013656f9071d":[5,0,0,45,7], "include_2menu_8php.html#a6a33c6a3db2a7510b16cc656edaec571":[5,0,0,45,5], "include_2menu_8php.html#a9aa8e0052dd47c1a93f53a983bd4620a":[5,0,0,45,2], @@ -190,13 +204,13 @@ var NAVTREEINDEX5 = "md_config.html":[0], "md_fresh.html":[1], "minimal_8php.html":[5,0,3,1,2], -"minimalisticdarkness_8php.html":[5,0,3,2,0,1,4], -"minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f":[5,0,3,2,0,1,4,4], -"minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead":[5,0,3,2,0,1,4,3], -"minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57":[5,0,3,2,0,1,4,5], -"minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf":[5,0,3,2,0,1,4,0], -"minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb":[5,0,3,2,0,1,4,2], -"minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b":[5,0,3,2,0,1,4,1], +"minimalisticdarkness_8php.html":[5,0,3,2,0,2,4], +"minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f":[5,0,3,2,0,2,4,4], +"minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead":[5,0,3,2,0,2,4,3], +"minimalisticdarkness_8php.html#a5795120b4b324bc4ca83f1e6fdce7d57":[5,0,3,2,0,2,4,5], +"minimalisticdarkness_8php.html#a6e5d97615c6faef5dbffe04b8024ceaf":[5,0,3,2,0,2,4,0], +"minimalisticdarkness_8php.html#a70bb13be8f23ec47839da81e0796f1cb":[5,0,3,2,0,2,4,2], +"minimalisticdarkness_8php.html#a7e6c3d4efde4e9a2de32308081372c6b":[5,0,3,2,0,2,4,1], "mitem_8php.html":[5,0,1,56], "mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1":[5,0,1,56,2], "mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e":[5,0,1,56,0], @@ -235,19 +249,5 @@ var NAVTREEINDEX5 = "mod_2notify_8php.html":[5,0,1,63], "mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[5,0,1,63,1], "mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[5,0,1,63,0], -"mod_2oembed_8php.html":[5,0,1,64], -"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,64,0], -"mod_2photos_8php.html":[5,0,1,72], -"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,72,2], -"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,72,0], -"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,72,1], -"mod__filestorage_8php.html":[5,0,3,0,0], -"mod__import_8php.html":[5,0,3,1,3], -"mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,1,3,0], -"mood_8php.html":[5,0,1,57], -"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,57,0], -"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,57,1], -"msearch_8php.html":[5,0,1,58], -"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,58,0], -"namespaceFriendica.html":[4,0,1] +"mod_2oembed_8php.html":[5,0,1,64] }; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js index 1493d3b2c..d3cf885ff 100644 --- a/doc/html/navtreeindex6.js +++ b/doc/html/navtreeindex6.js @@ -1,5 +1,20 @@ var NAVTREEINDEX6 = { +"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[5,0,1,64,0], +"mod_2photos_8php.html":[5,0,1,72], +"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[5,0,1,72,2], +"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[5,0,1,72,0], +"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[5,0,1,72,1], +"mod__chanview_8php.html":[5,0,3,2,0,0,0], +"mod__filestorage_8php.html":[5,0,3,0,0], +"mod__import_8php.html":[5,0,3,1,3], +"mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[5,0,3,1,3,0], +"mood_8php.html":[5,0,1,57], +"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[5,0,1,57,0], +"mood_8php.html#a7ae136dd7476865b4828136175db5022":[5,0,1,57,1], +"msearch_8php.html":[5,0,1,58], +"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[5,0,1,58,0], +"namespaceFriendica.html":[4,0,1], "namespaceFriendica.html":[3,0,1], "namespaceacl__selectors.html":[4,0,0], "namespaceacl__selectors.html":[3,0,0], @@ -9,8 +24,8 @@ var NAVTREEINDEX6 = "namespacemembers_func.html":[3,1,1], "namespacemembers_vars.html":[3,1,2], "namespaces.html":[3,0], -"namespaceupdatetpl.html":[4,0,3], "namespaceupdatetpl.html":[3,0,3], +"namespaceupdatetpl.html":[4,0,3], "namespaceutil.html":[4,0,4], "namespaceutil.html":[3,0,4], "nav_8php.html":[5,0,0,47], @@ -35,7 +50,7 @@ var NAVTREEINDEX6 = "oexchange_8php.html":[5,0,1,65], "oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[5,0,1,65,0], "oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[5,0,1,65,1], -"olddefault_8php.html":[5,0,3,2,0,1,5], +"olddefault_8php.html":[5,0,3,2,0,2,5], "onedirsync_8php.html":[5,0,0,53], "onedirsync_8php.html#a411aedd47c57476099647961e6a86691":[5,0,0,53,0], "onepoll_8php.html":[5,0,0,54], @@ -58,8 +73,8 @@ var NAVTREEINDEX6 = "parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[5,0,1,70,3], "parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[5,0,1,70,1], "parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[5,0,1,70,0], -"passion_8php.html":[5,0,3,2,0,1,6], -"passionwide_8php.html":[5,0,3,2,0,1,7], +"passion_8php.html":[5,0,3,2,0,2,6], +"passionwide_8php.html":[5,0,3,2,0,2,7], "permissions_8php.html":[5,0,0,56], "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[5,0,0,56,2], "permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[5,0,0,56,0], @@ -90,7 +105,7 @@ var NAVTREEINDEX6 = "php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[5,0,3,1,5,0], "php_8php.html":[5,0,1,73], "php_8php.html#adb7164dfed9a4ecbe2e168e1e78f12f6":[5,0,1,73,0], -"pine_8php.html":[5,0,3,2,0,1,8], +"pine_8php.html":[5,0,3,2,0,2,8], "ping_8php.html":[5,0,1,74], "ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[5,0,1,74,0], "plugin_8php.html":[5,0,0,58], @@ -191,6 +206,9 @@ var NAVTREEINDEX6 = "queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[5,0,0,63,0], "randprof_8php.html":[5,0,1,85], "randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[5,0,1,85,0], +"rbmark_8php.html":[5,0,1,86], +"rbmark_8php.html#a43fec4960b50926251574762cc491f76":[5,0,1,86,0], +"rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c":[5,0,1,86,1], "redbasic_2php_2style_8php.html":[5,0,3,2,2,0,1], "redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c":[5,0,3,2,2,0,1,1], "redbasic_2php_2style_8php.html#a5bff5012c56e34da6b3b2ed475726b27":[5,0,3,2,2,0,1,0], @@ -200,54 +218,36 @@ var NAVTREEINDEX6 = "redbasic_2php_2style_8php.html#ac98bd8264411bd207a5740d08e81a158":[5,0,3,2,2,0,1,3], "redbasic_2php_2theme_8php.html":[5,0,3,2,2,0,2], "redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[5,0,3,2,2,0,2,0], -"redbasic_8php.html":[5,0,3,2,0,1,9], +"redbasic_8php.html":[5,0,3,2,0,2,9], "reddav_8php.html":[5,0,0,64], "reddav_8php.html#a5df0d09893f2e65dc5cf6bbab6cfb266":[5,0,0,64,5], "reddav_8php.html#a9f531641dfb4e43cd88ac1a9ae7e2088":[5,0,0,64,6], "reddav_8php.html#ae92ea0df1993f6a7bcd1b6efa6c1fb66":[5,0,0,64,4], -"register_8php.html":[5,0,1,86], -"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,86,0], -"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,86,2], -"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,86,1], -"regmod_8php.html":[5,0,1,87], -"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,87,0], -"removeme_8php.html":[5,0,1,88], -"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,88,0], -"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,88,1], -"rmagic_8php.html":[5,0,1,89], -"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,89,0], -"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,89,2], -"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,89,1], -"rpost_8php.html":[5,0,1,90], -"rpost_8php.html#a8190354d789000806d9879aea276728f":[5,0,1,90,0], -"rsd__xml_8php.html":[5,0,1,91], -"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,91,0], -"search_8php.html":[5,0,1,92], -"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,92,0], -"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,92,1], -"search__ac_8php.html":[5,0,1,93], -"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,93,0], +"register_8php.html":[5,0,1,87], +"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[5,0,1,87,0], +"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[5,0,1,87,2], +"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[5,0,1,87,1], +"regmod_8php.html":[5,0,1,88], +"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[5,0,1,88,0], +"removeme_8php.html":[5,0,1,89], +"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[5,0,1,89,0], +"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[5,0,1,89,1], +"rmagic_8php.html":[5,0,1,90], +"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[5,0,1,90,0], +"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[5,0,1,90,2], +"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[5,0,1,90,1], +"rpost_8php.html":[5,0,1,91], +"rpost_8php.html#a8190354d789000806d9879aea276728f":[5,0,1,91,0], +"rsd__xml_8php.html":[5,0,1,92], +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[5,0,1,92,0], +"search_8php.html":[5,0,1,93], +"search_8php.html#ab2568591359edde5b483a6cd9a24b2cc":[5,0,1,93,0], +"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[5,0,1,93,1], +"search__ac_8php.html":[5,0,1,94], +"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[5,0,1,94,0], "security_8php.html":[5,0,0,65], "security_8php.html#a15e0f8f511cc06192db63387f97238b3":[5,0,0,65,11], "security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[5,0,0,65,2], "security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[5,0,0,65,4], -"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,65,5], -"security_8php.html#a8d23d2597aae380a3341872fe9513380":[5,0,0,65,1], -"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[5,0,0,65,7], -"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[5,0,0,65,3], -"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[5,0,0,65,9], -"security_8php.html#acd06ef411116115c2f0a92633700db8a":[5,0,0,65,6], -"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[5,0,0,65,0], -"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[5,0,0,65,10], -"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[5,0,0,65,8], -"session_8php.html":[5,0,0,66], -"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[5,0,0,66,4], -"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[5,0,0,66,0], -"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[5,0,0,66,1], -"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[5,0,0,66,8], -"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[5,0,0,66,5], -"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[5,0,0,66,7], -"session_8php.html#ac4461c1984543d3553e73dba2771568f":[5,0,0,66,6], -"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,66,3], -"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,66,9] +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[5,0,0,65,5] }; diff --git a/doc/html/navtreeindex7.js b/doc/html/navtreeindex7.js index 9ca9e8985..84192f509 100644 --- a/doc/html/navtreeindex7.js +++ b/doc/html/navtreeindex7.js @@ -1,37 +1,55 @@ var NAVTREEINDEX7 = { +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[5,0,0,65,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[5,0,0,65,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[5,0,0,65,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[5,0,0,65,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[5,0,0,65,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[5,0,0,65,0], +"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[5,0,0,65,10], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[5,0,0,65,8], +"session_8php.html":[5,0,0,66], +"session_8php.html#a26fa1042356d555023cbf15ddd4f8507":[5,0,0,66,4], +"session_8php.html#a4c0ead624f95483e386bc80abf570a8f":[5,0,0,66,0], +"session_8php.html#a5e1c616e02b863d5450317d101366bb7":[5,0,0,66,1], +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[5,0,0,66,8], +"session_8php.html#a7f0f50576360d9ba52d29364e0b83a8e":[5,0,0,66,5], +"session_8php.html#a96b09cc763572f45280786a7b33feb7e":[5,0,0,66,7], +"session_8php.html#ac4461c1984543d3553e73dba2771568f":[5,0,0,66,6], +"session_8php.html#ac95373f4966862a028033dd2f94d4da1":[5,0,0,66,3], +"session_8php.html#af0100a2642a5268594bbd5742a03d885":[5,0,0,66,9], "session_8php.html#af230b86bfff7db66c3bdd7e0bbc24052":[5,0,0,66,2], -"settings_8php.html":[5,0,1,94], -"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,94,0], -"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,94,1], -"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,94,2], -"setup_8php.html":[5,0,1,95], -"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,95,2], -"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,95,14], -"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,95,5], -"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,95,13], -"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,95,10], -"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,95,3], -"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,95,1], -"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,95,8], -"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,95,12], -"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,95,4], -"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[5,0,1,95,7], -"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,95,11], -"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,95,9], -"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,95,16], -"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,95,0], -"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,95,15], -"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,95,6], -"share_8php.html":[5,0,1,96], -"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,96,0], -"siteinfo_8php.html":[5,0,1,97], -"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,97,1], -"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,97,0], -"sitelist_8php.html":[5,0,1,98], -"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,98,0], -"smilies_8php.html":[5,0,1,99], -"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,99,0], +"settings_8php.html":[5,0,1,95], +"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[5,0,1,95,0], +"settings_8php.html#a3a4cde287482fced008583f54ba2a722":[5,0,1,95,1], +"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[5,0,1,95,2], +"setup_8php.html":[5,0,1,96], +"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[5,0,1,96,2], +"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[5,0,1,96,14], +"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[5,0,1,96,5], +"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[5,0,1,96,13], +"setup_8php.html#a2b375ddc555140236fc500135de99371":[5,0,1,96,10], +"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[5,0,1,96,3], +"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[5,0,1,96,1], +"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[5,0,1,96,8], +"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[5,0,1,96,12], +"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[5,0,1,96,4], +"setup_8php.html#ab4b71369a25021d59247c917e98d8246":[5,0,1,96,7], +"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[5,0,1,96,11], +"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[5,0,1,96,9], +"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[5,0,1,96,16], +"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[5,0,1,96,0], +"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[5,0,1,96,15], +"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[5,0,1,96,6], +"share_8php.html":[5,0,1,97], +"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[5,0,1,97,0], +"siteinfo_8php.html":[5,0,1,98], +"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[5,0,1,98,1], +"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[5,0,1,98,0], +"sitelist_8php.html":[5,0,1,99], +"sitelist_8php.html#a665a59bf60f780b40f32c909f4a473b1":[5,0,1,99,0], +"smilies_8php.html":[5,0,1,100], +"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[5,0,1,100,0], "socgraph_8php.html":[5,0,0,67], "socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[5,0,0,67,0], "socgraph_8php.html#a5ef8bef37161df53718a21e93d02fbd6":[5,0,0,67,6], @@ -42,28 +60,28 @@ var NAVTREEINDEX7 = "socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[5,0,0,67,2], "socgraph_8php.html#af175807406d94407a5e11742a3287746":[5,0,0,67,5], "socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[5,0,0,67,3], -"sources_8php.html":[5,0,1,100], -"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[5,0,1,100,0], -"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[5,0,1,100,1], +"sources_8php.html":[5,0,1,101], +"sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7":[5,0,1,101,0], +"sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e":[5,0,1,101,1], "spam_8php.html":[5,0,0,68], "spam_8php.html#a05861201147b9a538d006f0269255cf9":[5,0,0,68,1], "spam_8php.html#ab8fd81a82c9622cbebb8ceab6b310ca6":[5,0,0,68,0], -"sslify_8php.html":[5,0,1,101], -"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[5,0,1,101,0], -"starred_8php.html":[5,0,1,102], -"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,102,0], -"subthread_8php.html":[5,0,1,103], -"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,103,0], -"suggest_8php.html":[5,0,1,104], -"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,104,0], -"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,104,1], +"sslify_8php.html":[5,0,1,102], +"sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316":[5,0,1,102,0], +"starred_8php.html":[5,0,1,103], +"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[5,0,1,103,0], +"subthread_8php.html":[5,0,1,104], +"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[5,0,1,104,0], +"suggest_8php.html":[5,0,1,105], +"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[5,0,1,105,0], +"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[5,0,1,105,1], "system__unavailable_8php.html":[5,0,0,69], "system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[5,0,0,69,0], -"tagger_8php.html":[5,0,1,105], -"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,105,0], -"tagrm_8php.html":[5,0,1,106], -"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,106,1], -"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,106,0], +"tagger_8php.html":[5,0,1,106], +"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[5,0,1,106,0], +"tagrm_8php.html":[5,0,1,107], +"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[5,0,1,107,1], +"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[5,0,1,107,0], "taxonomy_8php.html":[5,0,0,70], "taxonomy_8php.html#a03f55ee46c5f496e42f3d29db8d09cce":[5,0,0,70,9], "taxonomy_8php.html#a088371f4bc19155b2291508f5cd63332":[5,0,0,70,0], @@ -175,6 +193,8 @@ var NAVTREEINDEX7 = "text_8php.html#afe18627c4983ee5f7c940a0992818cd5":[5,0,0,72,12], "text_8php.html#afe54312607d92f7ce9593f5760831f80":[5,0,0,72,57], "text_8php.html#afe9f178d264d44a94dc1292aaf0fd585":[5,0,0,72,52], +"theme_2apw_2php_2theme__init_8php.html":[5,0,3,2,0,1,4], +"theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864":[5,0,3,2,0,1,4,0], "theme_2blogga_2php_2default_8php.html":[5,0,3,2,1,0,1], "theme_2blogga_2php_2default_8php.html#a1230ab83d4ec9785d8f3a966f33dc5f3":[5,0,3,2,1,0,1,2], "theme_2blogga_2php_2default_8php.html#a720581ae288aa09511670563e4205a4a":[5,0,3,2,1,0,1,0], @@ -185,13 +205,13 @@ var NAVTREEINDEX7 = "theme_2blogga_2view_2theme_2blog_2default_8php.html#a52d9dd070ed541729088395c22502539":[5,0,3,2,1,1,0,0,1,1], "theme_2blogga_2view_2theme_2blog_2default_8php.html#a720581ae288aa09511670563e4205a4a":[5,0,3,2,1,1,0,0,1,0], "theme_2redbasic_2php_2theme__init_8php.html":[5,0,3,2,2,0,3], -"thing_8php.html":[5,0,1,107], -"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,107,0], -"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,107,1], -"toggle__mobile_8php.html":[5,0,1,108], -"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,108,0], -"toggle__safesearch_8php.html":[5,0,1,109], -"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[5,0,1,109,0], +"thing_8php.html":[5,0,1,108], +"thing_8php.html#a24a35f1e64029a67fdbea94a776ae04b":[5,0,1,108,0], +"thing_8php.html#a8be23b1d475ec3d9291999221c674c80":[5,0,1,108,1], +"toggle__mobile_8php.html":[5,0,1,109], +"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[5,0,1,109,0], +"toggle__safesearch_8php.html":[5,0,1,110], +"toggle__safesearch_8php.html#a23d5cfb2727a266e44993ffbf5595a79":[5,0,1,110,0], "tpldebug_8php.html":[5,0,2,8], "tpldebug_8php.html#a44778457a6c02554812fbfad19d32ba3":[5,0,2,8,0], "tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149":[5,0,2,8,1], @@ -205,18 +225,18 @@ var NAVTREEINDEX7 = "typohelper_8php.html":[5,0,2,10], "typohelper_8php.html#a7542d95618011800c61773127fa625cf":[5,0,2,10,0], "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[5,0,2,10,1], -"uexport_8php.html":[5,0,1,110], -"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,110,0], -"update__channel_8php.html":[5,0,1,111], -"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,111,0], -"update__community_8php.html":[5,0,1,112], -"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[5,0,1,112,0], -"update__display_8php.html":[5,0,1,113], -"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,113,0], -"update__network_8php.html":[5,0,1,114], -"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,114,0], -"update__search_8php.html":[5,0,1,115], -"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,115,0], +"uexport_8php.html":[5,0,1,111], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[5,0,1,111,0], +"update__channel_8php.html":[5,0,1,112], +"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[5,0,1,112,0], +"update__community_8php.html":[5,0,1,113], +"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[5,0,1,113,0], +"update__display_8php.html":[5,0,1,114], +"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[5,0,1,114,0], +"update__network_8php.html":[5,0,1,115], +"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[5,0,1,115,0], +"update__search_8php.html":[5,0,1,116], +"update__search_8php.html#ace4c3a23fa7d6922399e27c297a6ba52":[5,0,1,116,0], "updatetpl_8py.html":[5,0,2,11], "updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[5,0,2,11,5], "updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[5,0,2,11,2], @@ -224,30 +244,10 @@ var NAVTREEINDEX7 = "updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6":[5,0,2,11,3], "updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f":[5,0,2,11,0], "updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6":[5,0,2,11,4], -"view_2theme_2apw_2php_2config_8php.html":[5,0,3,2,0,0,0], -"view_2theme_2apw_2php_2config_8php.html#a8b51951a70e1c1324be71345a61d70ec":[5,0,3,2,0,0,0,0], -"view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,2,0,0,0,1], -"view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,2,0,0,0,2], +"view_2theme_2apw_2php_2config_8php.html":[5,0,3,2,0,1,0], +"view_2theme_2apw_2php_2config_8php.html#a8b51951a70e1c1324be71345a61d70ec":[5,0,3,2,0,1,0,0], +"view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,2,0,1,0,1], +"view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,2,0,1,0,2], "view_2theme_2blogga_2php_2config_8php.html":[5,0,3,2,1,0,0], -"view_2theme_2blogga_2php_2config_8php.html#a09cd81013505f83aea0771243a1e4e53":[5,0,3,2,1,0,0,1], -"view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27":[5,0,3,2,1,0,0,0], -"view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,2,1,0,0,3], -"view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,2,1,0,0,4], -"view_2theme_2blogga_2php_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b":[5,0,3,2,1,0,0,2], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html":[5,0,3,2,1,1,0,0,0], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a09cd81013505f83aea0771243a1e4e53":[5,0,3,2,1,1,0,0,0,1], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27":[5,0,3,2,1,1,0,0,0,0], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,2,1,1,0,0,0,3], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,2,1,1,0,0,0,4], -"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b":[5,0,3,2,1,1,0,0,0,2], -"view_2theme_2redbasic_2php_2config_8php.html":[5,0,3,2,2,0,0], -"view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[5,0,3,2,2,0,0,0], -"view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,2,2,0,0,1], -"view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,2,2,0,0,2], -"view_8php.html":[5,0,1,116], -"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,116,0], -"viewconnections_8php.html":[5,0,1,117], -"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,117,1], -"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,117,0], -"viewsrc_8php.html":[5,0,1,118] +"view_2theme_2blogga_2php_2config_8php.html#a09cd81013505f83aea0771243a1e4e53":[5,0,3,2,1,0,0,1] }; diff --git a/doc/html/navtreeindex8.js b/doc/html/navtreeindex8.js index e3484b759..76b0fde00 100644 --- a/doc/html/navtreeindex8.js +++ b/doc/html/navtreeindex8.js @@ -1,54 +1,76 @@ var NAVTREEINDEX8 = { -"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,118,0], -"vote_8php.html":[5,0,1,119], -"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[5,0,1,119,2], -"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[5,0,1,119,0], -"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[5,0,1,119,1], -"wall__attach_8php.html":[5,0,1,120], -"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,120,0], -"wall__upload_8php.html":[5,0,1,121], -"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,121,0], -"webfinger_8php.html":[5,0,1,122], -"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,122,0], -"webpages_8php.html":[5,0,1,123], -"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,123,0], -"wfinger_8php.html":[5,0,1,124], -"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,124,0], -"widedarkness_8php.html":[5,0,3,2,0,1,10], +"view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27":[5,0,3,2,1,0,0,0], +"view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,2,1,0,0,3], +"view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,2,1,0,0,4], +"view_2theme_2blogga_2php_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b":[5,0,3,2,1,0,0,2], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html":[5,0,3,2,1,1,0,0,0], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a09cd81013505f83aea0771243a1e4e53":[5,0,3,2,1,1,0,0,0,1], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27":[5,0,3,2,1,1,0,0,0,0], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,2,1,1,0,0,0,3], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,2,1,1,0,0,0,4], +"view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aef2da5582b7cb6b5f63e5ca5d69fd30b":[5,0,3,2,1,1,0,0,0,2], +"view_2theme_2redbasic_2php_2config_8php.html":[5,0,3,2,2,0,0], +"view_2theme_2redbasic_2php_2config_8php.html#a8574a41fa9735ee391ba57ab24b93793":[5,0,3,2,2,0,0,0], +"view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[5,0,3,2,2,0,0,1], +"view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[5,0,3,2,2,0,0,2], +"view_8php.html":[5,0,1,117], +"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[5,0,1,117,0], +"viewconnections_8php.html":[5,0,1,118], +"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[5,0,1,118,1], +"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[5,0,1,118,0], +"viewsrc_8php.html":[5,0,1,119], +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[5,0,1,119,0], +"vote_8php.html":[5,0,1,120], +"vote_8php.html#a57a9516ee1b923b224e66dcc47377fb2":[5,0,1,120,2], +"vote_8php.html#a6aa67489bf458ca5e3206e46dac68596":[5,0,1,120,0], +"vote_8php.html#ae0c6610f40afbbc1f4fe6494c51fbab2":[5,0,1,120,1], +"wall__attach_8php.html":[5,0,1,121], +"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[5,0,1,121,0], +"wall__upload_8php.html":[5,0,1,122], +"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[5,0,1,122,0], +"webfinger_8php.html":[5,0,1,123], +"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[5,0,1,123,0], +"webpages_8php.html":[5,0,1,124], +"webpages_8php.html#af3b7397d4abc153e3d2147740ee1a41d":[5,0,1,124,0], +"wfinger_8php.html":[5,0,1,125], +"wfinger_8php.html#ae21e50c8d0a5f3c9be9f43a4e519acd3":[5,0,1,125,0], +"widedarkness_8php.html":[5,0,3,2,0,2,10], "widgets_8php.html":[5,0,0,73], -"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[5,0,0,73,8], -"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[5,0,0,73,20], -"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[5,0,0,73,5], -"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[5,0,0,73,6], -"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[5,0,0,73,14], -"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[5,0,0,73,15], -"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[5,0,0,73,3], -"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[5,0,0,73,9], -"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[5,0,0,73,21], -"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[5,0,0,73,16], -"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[5,0,0,73,12], +"widgets_8php.html#a08035db02ff6a23260146b4c64153422":[5,0,0,73,9], +"widgets_8php.html#a0d404276fedc59f5038cf5c085028326":[5,0,0,73,22], +"widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3":[5,0,0,73,2], +"widgets_8php.html#a145ff35319cfa47a9cc07f9425bd674b":[5,0,0,73,6], +"widgets_8php.html#a268b01ce1ab8fe2cb346cb769b9d1091":[5,0,0,73,7], +"widgets_8php.html#a3bdfb81bf9a8ddf219924fa7eaf22013":[5,0,0,73,15], +"widgets_8php.html#a45ea061dabe9a8372e4ca3b9e5714256":[5,0,0,73,16], +"widgets_8php.html#a47c72aac42058ea086c9ef8651c259da":[5,0,0,73,4], +"widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8":[5,0,0,73,21], +"widgets_8php.html#a5ab3b64496e02cab56429978ad55f1c0":[5,0,0,73,10], +"widgets_8php.html#a6dbc227aac750774284ee39c45f0a200":[5,0,0,73,23], +"widgets_8php.html#a702e2fc0adc9b615999eca18b7311b5e":[5,0,0,73,17], +"widgets_8php.html#a70442dfa079312d9d5e5ee01be51a165":[5,0,0,73,13], "widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65":[5,0,0,73,1], -"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[5,0,0,73,18], -"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[5,0,0,73,7], -"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[5,0,0,73,4], -"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[5,0,0,73,19], -"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[5,0,0,73,17], -"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[5,0,0,73,23], -"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[5,0,0,73,11], +"widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8":[5,0,0,73,19], +"widgets_8php.html#a95c06bc9be133e89768746302d2ac395":[5,0,0,73,8], +"widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f":[5,0,0,73,5], +"widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01":[5,0,0,73,20], +"widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923":[5,0,0,73,18], +"widgets_8php.html#abe03366fd22fd27d683518fa0765da50":[5,0,0,73,25], +"widgets_8php.html#ad1bf7aa69e8d100d95faba17c7bc91cd":[5,0,0,73,12], "widgets_8php.html#add9b24d3304e529a7975e96122315554":[5,0,0,73,0], -"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[5,0,0,73,10], -"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[5,0,0,73,22], -"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[5,0,0,73,2], -"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[5,0,0,73,13], -"xchan_8php.html":[5,0,1,125], -"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,125,0], -"xrd_8php.html":[5,0,1,126], -"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,126,0], -"xref_8php.html":[5,0,1,127], -"xref_8php.html#a9bee399213b8de8226b0d60834307473":[5,0,1,127,0], -"zfinger_8php.html":[5,0,1,128], -"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,128,0], +"widgets_8php.html#ade630b19fb4c622b7b2f6f8ef89eefa2":[5,0,0,73,11], +"widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653":[5,0,0,73,24], +"widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b":[5,0,0,73,3], +"widgets_8php.html#afa2e55a78f95667a6da082efac7fec74":[5,0,0,73,14], +"xchan_8php.html":[5,0,1,126], +"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[5,0,1,126,0], +"xrd_8php.html":[5,0,1,127], +"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[5,0,1,127,0], +"xref_8php.html":[5,0,1,128], +"xref_8php.html#a9bee399213b8de8226b0d60834307473":[5,0,1,128,0], +"zfinger_8php.html":[5,0,1,129], +"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[5,0,1,129,0], "zot_8php.html":[5,0,0,74], "zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[5,0,0,74,13], "zot_8php.html#a2657e141d62d5f67ad3c87651b585299":[5,0,0,74,7], @@ -78,8 +100,8 @@ var NAVTREEINDEX8 = "zot_8php.html#ae7cec2b417b5858fd4a41070f843d1d7":[5,0,0,74,20], "zot_8php.html#aeea071f17e306fe3d0c488551906bfab":[5,0,0,74,22], "zot_8php.html#aeec89da5b6ff090c63a79de4de884a35":[5,0,0,74,6], -"zotfeed_8php.html":[5,0,1,129], -"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,129,0], -"zping_8php.html":[5,0,1,130], -"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[5,0,1,130,0] +"zotfeed_8php.html":[5,0,1,130], +"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[5,0,1,130,0], +"zping_8php.html":[5,0,1,131], +"zping_8php.html#a4d3a6b0b8b04ed6469015823e615ee75":[5,0,1,131,0] }; diff --git a/doc/html/parse__url_8php.html b/doc/html/parse__url_8php.html index 6cf112ea3..69042e2d1 100644 --- a/doc/html/parse__url_8php.html +++ b/doc/html/parse__url_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('parse__url_8php.html','');}); - + @@ -153,7 +153,7 @@ Functions

    Functions

    if(!function_exists('deletenode')) completeurl ($url, $scheme)
    if(!function_exists('deletenode')) completeurl ($url, $scheme)
     
     parseurl_getsiteinfo ($url)
     
    - + diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html index 9b1a1a312..0a873aa5b 100644 --- a/doc/html/php2po_8php.html +++ b/doc/html/php2po_8php.html @@ -112,7 +112,7 @@ $(document).ready(function(){initNavTree('php2po_8php.html','');});
    if (!function_exists('deletenode')) completeurl if (!function_exists('deletenode')) completeurl (   $url,
    - + @@ -191,7 +191,7 @@ Variables

    Variables

    if(!class_exists('App')) if($argc!=2) $phpfile = $argv[1]
    if(!class_exists('App')) if($argc!=2) $phpfile = $argv[1]
     
     $pofile = dirname($phpfile)."/messages.po"
     
    - +
    if (!class_exists('App')) if ($argc!=2) $phpfile = $argv[1]if (!class_exists('App')) if ($argc!=2) $phpfile = $argv[1]
    diff --git a/doc/html/php_2theme__init_8php.html b/doc/html/php_2theme__init_8php.html index 2842fa0b7..f28c9e526 100644 --- a/doc/html/php_2theme__init_8php.html +++ b/doc/html/php_2theme__init_8php.html @@ -127,7 +127,7 @@ Variables

    Those who require this feature will know what to do with it. Those who don't, won't. Eventually this functionality needs to be provided by a module such that permissions can be enforced. At the moment it's more of a proof of concept; but sufficient for our immediate needs.

    -

    Referenced by api_call(), api_user(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), design_tools(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), feed_init(), filestorage_content(), fix_attached_file_permissions(), fix_system_urls(), get_feed_for(), get_public_feed(), handle_tag(), home_init(), RedBrowser\htmlActionsPanel(), import_post(), invite_content(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), post_to_red_delete_comment(), post_to_red_delete_post(), post_to_red_displayAdminContent(), post_to_red_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_post(), profperm_init(), rpost_content(), send_message(), settings_post(), sources_post(), tagger_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_settings_menu(), zot_build_packet(), zot_finger(), and zot_refresh().

    +

    Referenced by api_call(), api_user(), attach_mkdir(), attach_store(), bbcode(), blocks_content(), bookmark_add(), build_sync_packet(), channel_content(), channel_init(), channel_remove(), chat_content(), chat_init(), chat_post(), chatroom_create(), chatroom_destroy(), cloud_init(), connections_init(), connections_post(), connedit_content(), connedit_init(), connedit_post(), conversation(), design_tools(), directory_run(), display_content(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), events_content(), events_post(), feed_init(), filestorage_content(), fix_attached_file_permissions(), fix_system_urls(), get_feed_for(), get_public_feed(), handle_tag(), home_init(), RedBrowser\htmlActionsPanel(), import_post(), invite_content(), item_photo_menu(), item_post(), item_store(), item_store_update(), items_fetch(), layouts_content(), magic_init(), mail_content(), mail_post(), menu_add_item(), menu_edit_item(), message_content(), mitem_content(), mitem_post(), mood_init(), nav(), network_content(), network_init(), new_contact(), notifier_run(), photo_upload(), photos_albums_list(), photos_content(), photos_create_item(), photos_list_photos(), ping_init(), poke_init(), post_activity_item(), post_to_red_delete_comment(), post_to_red_delete_post(), post_to_red_displayAdminContent(), post_to_red_post(), probe_content(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), profile_init(), profile_photo_init(), profile_photo_post(), profiles_post(), profperm_init(), rbmark_content(), rbmark_post(), rpost_content(), send_message(), settings_post(), sources_post(), tagger_content(), thing_init(), uexport_init(), update_remote_id(), wall_attach_post(), wall_upload_post(), webpages_content(), wfinger_init(), widget_settings_menu(), zot_build_packet(), zot_finger(), and zot_refresh().

    diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html index 8f23cfee8..546d8d804 100644 --- a/doc/html/plugin_8php.html +++ b/doc/html/plugin_8php.html @@ -290,7 +290,7 @@ Functions
    -

    Referenced by admin_content(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_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(), 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(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), invite_content(), lang_selector(), layouts_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(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_archive(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    Referenced by admin_content(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_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(), 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(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), invite_content(), lang_selector(), layouts_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(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), setup_content(), siteinfo_content(), sources_content(), suggest_content(), theme_attachments(), thing_content(), vcard_from_xchan(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), 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/redbasic_2php_2style_8php.html b/doc/html/redbasic_2php_2style_8php.html index 7233c03f7..f3c85a9e8 100644 --- a/doc/html/redbasic_2php_2style_8php.html +++ b/doc/html/redbasic_2php_2style_8php.html @@ -120,7 +120,7 @@ Variables    $pmenu_reply = intval($reply_photo) - 16 . 'px'   -if($nav_min_opacity===false||$nav_min_opacity=== '') else +if($nav_min_opacity===false||$nav_min_opacity=== '') else    $nav_percent_min_opacity = (int) 100 * $nav_min_opacity   @@ -191,7 +191,7 @@ Variables
    - +
    if ($nav_min_opacity===false||$nav_min_opacity=== '') elseif ($nav_min_opacity===false||$nav_min_opacity=== '') else
    diff --git a/doc/html/search/all_24.js b/doc/html/search/all_24.js index d2a44072d..b40d9eb43 100644 --- a/doc/html/search/all_24.js +++ b/doc/html/search/all_24.js @@ -17,7 +17,7 @@ var searchData= ['_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']]], + ['_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']]], ['_24channel_5fhash',['$channel_hash',['../classRedBasicAuth.html#ad5a3ea4dc4783b242d9dc6e76478b6ef',1,'RedBasicAuth']]], ['_24channel_5fid',['$channel_id',['../classRedBasicAuth.html#a2dab393650d1573e3515969a153e8354',1,'RedBasicAuth']]], ['_24channel_5fname',['$channel_name',['../classRedBasicAuth.html#a438ab125b6ef46581947e35d49cdebac',1,'RedBasicAuth']]], @@ -47,9 +47,11 @@ var searchData= ['_24done',['$done',['../classTemplate.html#abda4c8d049f70553338eae7c905e9d5c',1,'Template']]], ['_24error',['$error',['../classApp.html#ac1a8b2cd40609b231a560201a08852ba',1,'App\$error()'],['../classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c',1,'dba_driver\$error()']]], ['_24ext_5fpath',['$ext_path',['../classRedDirectory.html#a0f113244cd85c17848df991001d024f4',1,'RedDirectory']]], + ['_24fext',['$fext',['../apw_2php_2style_8php.html#a404171b8f918c116e45a6421c92f0cc9',1,'style.php']]], ['_24filelist',['$filelist',['../docblox__errorchecker_8php.html#a648a570b0f9f6e0e51b7267647c4b09b',1,'docblox_errorchecker.php']]], ['_24filename',['$filename',['../classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690',1,'FriendicaSmarty']]], ['_24files',['$files',['../extract_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): extract.php'],['../tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149',1,'$files(): tpldebug.php'],['../typo_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): typo.php']]], + ['_24fname',['$fname',['../apw_2php_2style_8php.html#ab9e0f70d44ab67f4334f9883631777fc',1,'style.php']]], ['_24folder_5fhash',['$folder_hash',['../classRedDirectory.html#aa10254abf177bb2a0e4a88495725e09b',1,'RedDirectory']]], ['_24force_5fmax_5fitems',['$force_max_items',['../classApp.html#ae3f47830543d0d902f66913def8db66b',1,'App']]], ['_24gc_5fprobability',['$gc_probability',['../session_8php.html#a96b09cc763572f45280786a7b33feb7e',1,'session.php']]], @@ -60,6 +62,7 @@ var searchData= ['_24hooks',['$hooks',['../classApp.html#a3694aa1907aa103a2adbc71f926f0fa0',1,'App']]], ['_24hostname',['$hostname',['../classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3',1,'App']]], ['_24i',['$i',['../docblox__errorchecker_8php.html#a83018d9153d17d91fbcf3bc10158d34f',1,'docblox_errorchecker.php']]], + ['_24iconsize',['$iconsize',['../apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30',1,'style.php']]], ['_24identities',['$identities',['../classApp.html#a7954862f44f606b0ff83d4c74d15e792',1,'App']]], ['_24image',['$image',['../classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55',1,'photo_driver']]], ['_24infile',['$infile',['../php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214',1,'php2po.php']]], @@ -81,8 +84,10 @@ var searchData= ['_24name',['$name',['../classFriendicaSmartyEngine.html#aaba6a42101bc9ae32e36b7fa2e243f02',1,'FriendicaSmartyEngine\$name()'],['../classRedFile.html#acc48c05cd5a70951cb3c615ad84f03ba',1,'RedFile\$name()'],['../classTemplate.html#a6eb301a51cc94d8b94f4548fbad85eae',1,'Template\$name()']]], ['_24nav_5fpercent_5fmin_5fopacity',['$nav_percent_min_opacity',['../redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c',1,'style.php']]], ['_24nav_5fsel',['$nav_sel',['../classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c',1,'App']]], + ['_24navheight',['$navheight',['../apw_2php_2style_8php.html#a1c8a7c0db8c174239f3909cb931cb872',1,'style.php']]], ['_24needed',['$needed',['../docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73',1,'docblox_errorchecker.php']]], ['_24nodes',['$nodes',['../classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1',1,'Template']]], + ['_24obliquemacro',['$obliquemacro',['../apw_2php_2style_8php.html#a2cad82a3ecadbe58dbc4197de1c63da0',1,'style.php']]], ['_24observer',['$observer',['../classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f',1,'App\$observer()'],['../classConversation.html#a8748445aa26047ebed5141f3c3cbc244',1,'Conversation\$observer()'],['../classRedBasicAuth.html#aa75dc43b59adc98e38a98517d3fd35d1',1,'RedBasicAuth\$observer()']]], ['_24os_5fpath',['$os_path',['../classRedDirectory.html#a3c148c07ad909985125aa4926d8d0021',1,'RedDirectory']]], ['_24out',['$out',['../php2po_8php.html#a48cb304902320d173a4eaa41543327b9',1,'php2po.php']]], @@ -122,13 +127,16 @@ var searchData= ['_24scheme',['$scheme',['../classApp.html#ad082d63acc078e5bf23825a03bdd6a76',1,'App']]], ['_24search',['$search',['../classTemplate.html#a317d535946dc065c35dd5cd38380e6c6',1,'Template']]], ['_24sectionleft',['$sectionleft',['../minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead',1,'minimalisticdarkness.php']]], + ['_24sectiontop',['$sectiontop',['../apw_2php_2style_8php.html#acb0dedc3212a7c60ab2474768becd79a',1,'style.php']]], ['_24sectionwidth',['$sectionwidth',['../minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f',1,'minimalisticdarkness.php']]], ['_24session_5fexists',['$session_exists',['../session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb',1,'session.php']]], ['_24session_5fexpire',['$session_expire',['../session_8php.html#af0100a2642a5268594bbd5742a03d885',1,'session.php']]], + ['_24showlock',['$showlock',['../apw_2php_2style_8php.html#ad401ea1d1ba236f86863b4574f01e425',1,'style.php']]], ['_24sourcename',['$sourcename',['../classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11',1,'App']]], ['_24stack',['$stack',['../classTemplate.html#a6f0efc256688c36110180b501067ff11',1,'Template']]], ['_24str',['$str',['../typohelper_8php.html#a7542d95618011800c61773127fa625cf',1,'typohelper.php']]], ['_24strings',['$strings',['../classApp.html#a5f64620473a9727a48ebe9cf6f335a98',1,'App']]], + ['_24strongmacro',['$strongmacro',['../apw_2php_2style_8php.html#aa58104ba36588bbf082cecbb3910e2ea',1,'style.php']]], ['_24template',['$template',['../classItem.html#a7f7bc059de377319282cb4ef4a828480',1,'Item']]], ['_24template_5fengine_5finstance',['$template_engine_instance',['../classApp.html#a6844aedad10e201b8c3d80cfc9e876d3',1,'App']]], ['_24template_5fengines',['$template_engines',['../classApp.html#a6859a4848a5c0049b4134cc4b34228b6',1,'App']]], @@ -153,5 +161,6 @@ var searchData= ['_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']]], ['_24wwtop',['$wwtop',['../redbasic_2php_2style_8php.html#a61891d0d3e6894f52410d507b04e565d',1,'style.php']]], + ['_24x',['$x',['../apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7',1,'style.php']]], ['_24zones',['$zones',['../extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44',1,'extract.php']]] ]; diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js index e45a44444..30c96dec8 100644 --- a/doc/html/search/all_62.js +++ b/doc/html/search/all_62.js @@ -30,7 +30,7 @@ var searchData= ['blogtheme_5fdisplay_5fitem',['blogtheme_display_item',['../blogga_2view_2theme_2blog_2theme_8php.html#a028ae8e9f2824670dfa76a6651d817e5',1,'theme.php']]], ['blogtheme_5fform',['blogtheme_form',['../view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php']]], ['blogtheme_5fimgurl',['blogtheme_imgurl',['../blogga_2view_2theme_2blog_2theme_8php.html#af634a3f721c5e238530d0636d33230ec',1,'theme.php']]], - ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#a88ce7dee6a3dc7465aa9b8eaa45b0087',1,'bookmarks.php']]], + ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323',1,'bookmarks.php']]], ['bookmarks_2ephp',['bookmarks.php',['../mod_2bookmarks_8php.html',1,'']]], ['bookmarks_2ephp',['bookmarks.php',['../include_2bookmarks_8php.html',1,'']]], ['bookmarks_5fcontent',['bookmarks_content',['../mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a',1,'bookmarks.php']]], diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js index 85b76b594..4659dc6b6 100644 --- a/doc/html/search/all_63.js +++ b/doc/html/search/all_63.js @@ -79,7 +79,7 @@ var searchData= ['collecturls',['collecturls',['../html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201',1,'html2plain.php']]], ['comanche_2ephp',['comanche.php',['../comanche_8php.html',1,'']]], ['comanche_5fblock',['comanche_block',['../comanche_8php.html#a5a7ab801717d38e91ac910b933973887',1,'comanche.php']]], - ['comanche_5fmenu',['comanche_menu',['../comanche_8php.html#a1fe339e1454803aa502ac89379c17f5b',1,'comanche.php']]], + ['comanche_5fmenu',['comanche_menu',['../comanche_8php.html#ad5a44e42231759aba1dda49e0490501e',1,'comanche.php']]], ['comanche_5fparser',['comanche_parser',['../comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922',1,'comanche.php']]], ['comanche_5fregion',['comanche_region',['../comanche_8php.html#a5718daeda40bf835345fe061e8808cdf',1,'comanche.php']]], ['comanche_5freplace_5fregion',['comanche_replace_region',['../comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe',1,'comanche.php']]], diff --git a/doc/html/search/all_66.js b/doc/html/search/all_66.js index f9ff7aa3a..663aff8d5 100644 --- a/doc/html/search/all_66.js +++ b/doc/html/search/all_66.js @@ -70,5 +70,6 @@ var searchData= ['fsuggest_5fpost',['fsuggest_post',['../fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d',1,'fsuggest.php']]], ['ftosmarty',['fToSmarty',['../namespacefriendica-to-smarty-tpl.html#a89388ea9b2826e8218ed480e917d8105',1,'friendica-to-smarty-tpl']]], ['full_2ephp',['full.php',['../full_8php.html',1,'']]], + ['functions_2ephp',['functions.php',['../functions_8php.html',1,'']]], ['fresh_20_2d_20the_20freaking_20red_20shell',['Fresh - The Freaking REd Shell',['../md_fresh.html',1,'']]] ]; diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js index 8901bffa8..d0dd56fdb 100644 --- a/doc/html/search/all_67.js +++ b/doc/html/search/all_67.js @@ -14,6 +14,7 @@ var searchData= ['get_5fbb_5ftag_5fpos',['get_bb_tag_pos',['../bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2',1,'bb2diaspora.php']]], ['get_5fbest_5flanguage',['get_best_language',['../language_8php.html#a980dee1d8715a98ab02e36b59facf8ed',1,'language.php']]], ['get_5fbirthdays',['get_birthdays',['../identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51',1,'identity.php']]], + ['get_5fbookmark_5flink',['get_bookmark_link',['../include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa',1,'bookmarks.php']]], ['get_5fbrowser_5flanguage',['get_browser_language',['../language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e',1,'language.php']]], ['get_5fcapath',['get_capath',['../include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7',1,'network.php']]], ['get_5fchannel',['get_channel',['../classApp.html#a084e03c77686d8c13390fef3f7428a2b',1,'App']]], @@ -113,8 +114,8 @@ var searchData= ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]], ['greenthumbnails_2ephp',['greenthumbnails.php',['../greenthumbnails_8php.html',1,'']]], - ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], + ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], ['group_5fadd',['group_add',['../include_2group_8php.html#a06ec565d2b64e79044e7c1bf91a2a4ce',1,'group.php']]], ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], diff --git a/doc/html/search/all_69.js b/doc/html/search/all_69.js index 3ec2ac6ca..c8df66c16 100644 --- a/doc/html/search/all_69.js +++ b/doc/html/search/all_69.js @@ -4,7 +4,7 @@ var searchData= ['identity_5fbasic_5fexport',['identity_basic_export',['../identity_8php.html#a3570a4eb77332b292d394c4132cb8f03',1,'identity.php']]], ['identity_5fcheck_5fservice_5fclass',['identity_check_service_class',['../identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633',1,'identity.php']]], ['ids_5fto_5fquerystr',['ids_to_querystr',['../text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a',1,'text.php']]], - ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db',1,'if(): full.php'],['../apw_2php_2style_8php.html#a883f9f14e205f7aa7de02c14df67b40a',1,'if(): style.php']]], + ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db',1,'if(): full.php'],['../apw_2php_2style_8php.html#aea44f144ed341be483b334a7634c1aec',1,'if(): style.php']]], ['imagestring',['imageString',['../classphoto__driver.html#abc9f73ad90923772d52b9fcc4eb117dd',1,'photo_driver\imageString()'],['../classphoto__gd.html#a0795fc029be382557ae3f6e285f40e00',1,'photo_gd\imageString()'],['../classphoto__imagick.html#a70adbef31128c0ac8cbc5dcf34cdb019',1,'photo_imagick\imageString()']]], ['import_2ephp',['import.php',['../import_8php.html',1,'']]], ['import_5fauthor_5frss',['import_author_rss',['../items_8php.html#a6bee35961f2e32905f20367a9309d627',1,'items.php']]], diff --git a/doc/html/search/all_6d.js b/doc/html/search/all_6d.js index ec6e4bbe9..e57fa32aa 100644 --- a/doc/html/search/all_6d.js +++ b/doc/html/search/all_6d.js @@ -38,11 +38,12 @@ var searchData= ['menu_5fedit_5fitem',['menu_edit_item',['../include_2menu_8php.html#acb66f80ca895a6ccd562b3d9ae7b41aa',1,'menu.php']]], ['menu_5ffetch',['menu_fetch',['../include_2menu_8php.html#a68ebbf492470c930f652013656f9071d',1,'menu.php']]], ['menu_5ffetch_5fid',['menu_fetch_id',['../include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7',1,'menu.php']]], + ['menu_5fitem_5fchatroom',['MENU_ITEM_CHATROOM',['../boot_8php.html#af6b3de425e5849c73370a484c44607a3',1,'boot.php']]], ['menu_5fitem_5fnewwin',['MENU_ITEM_NEWWIN',['../boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5',1,'boot.php']]], ['menu_5fitem_5fzid',['MENU_ITEM_ZID',['../boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53',1,'boot.php']]], ['menu_5flist',['menu_list',['../include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d',1,'menu.php']]], ['menu_5fpost',['menu_post',['../mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393',1,'menu.php']]], - ['menu_5frender',['menu_render',['../include_2menu_8php.html#a4d7123b0577fa994770199f9b831da11',1,'menu.php']]], + ['menu_5frender',['menu_render',['../include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a',1,'menu.php']]], ['menu_5fsystem',['MENU_SYSTEM',['../boot_8php.html#a718a801b0be6cbaef5e519516da12721',1,'boot.php']]], ['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]], ['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]], @@ -56,6 +57,7 @@ var searchData= ['mitem_5fcontent',['mitem_content',['../mitem_8php.html#a7a31b702ecad18eeb6a38b243ff0037e',1,'mitem.php']]], ['mitem_5finit',['mitem_init',['../mitem_8php.html#a9627cd857cafdf04e4fc0ae48c8e8518',1,'mitem.php']]], ['mitem_5fpost',['mitem_post',['../mitem_8php.html#a6ee694cca4b551a20d7c7a94b5243ec1',1,'mitem.php']]], + ['mod_5fchanview_2ephp',['mod_chanview.php',['../mod__chanview_8php.html',1,'']]], ['mod_5ffilestorage_2ephp',['mod_filestorage.php',['../mod__filestorage_8php.html',1,'']]], ['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]], ['mood_2ephp',['mood.php',['../mood_8php.html',1,'']]], diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js index 376618126..f738d3be8 100644 --- a/doc/html/search/all_72.js +++ b/doc/html/search/all_72.js @@ -6,6 +6,9 @@ var searchData= ['random_5fstring_5ftext',['RANDOM_STRING_TEXT',['../text_8php.html#a2ffd79c60cc87cec24ef76447b905187',1,'text.php']]], ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], + ['rbmark_2ephp',['rbmark.php',['../rbmark_8php.html',1,'']]], + ['rbmark_5fcontent',['rbmark_content',['../rbmark_8php.html#a43fec4960b50926251574762cc491f76',1,'rbmark.php']]], + ['rbmark_5fpost',['rbmark_post',['../rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c',1,'rbmark.php']]], ['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]], ['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]], ['readme_2emd',['README.md',['../apw_2README_8md.html',1,'']]], diff --git a/doc/html/search/all_73.js b/doc/html/search/all_73.js index 4253ba835..762633b19 100644 --- a/doc/html/search/all_73.js +++ b/doc/html/search/all_73.js @@ -87,6 +87,7 @@ var searchData= ['sources_5fcontent',['sources_content',['../sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7',1,'sources.php']]], ['sources_5fpost',['sources_post',['../sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e',1,'sources.php']]], ['spam_2ephp',['spam.php',['../spam_8php.html',1,'']]], + ['splitfilename',['splitFilename',['../functions_8php.html#adefe514c95680928b3aae250cbc3c663',1,'functions.php']]], ['ssl_5fpolicy_5ffull',['SSL_POLICY_FULL',['../boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc',1,'boot.php']]], ['ssl_5fpolicy_5fnone',['SSL_POLICY_NONE',['../boot_8php.html#af86c651547aa8f9e549ee40a09455549',1,'boot.php']]], ['ssl_5fpolicy_5fselfsign',['SSL_POLICY_SELFSIGN',['../boot_8php.html#adca48aee78465ae3064ca4432c0d87b5',1,'boot.php']]], diff --git a/doc/html/search/all_74.js b/doc/html/search/all_74.js index c61b08f93..49f09c40e 100644 --- a/doc/html/search/all_74.js +++ b/doc/html/search/all_74.js @@ -45,9 +45,10 @@ var searchData= ['theme_5fattachments',['theme_attachments',['../text_8php.html#af9c9ac3f74c82dc60acfa404d0e9dc53',1,'text.php']]], ['theme_5fcontent',['theme_content',['../view_2theme_2apw_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2blogga_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'theme_content(&$a): config.php']]], ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2blogga_2php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], ['theme_5fpost',['theme_post',['../view_2theme_2apw_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2blogga_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php'],['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'theme_post(&$a): config.php']]], ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], ['thing_2ephp',['thing.php',['../thing_8php.html',1,'']]], diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js index 2f2a98361..1f1afe116 100644 --- a/doc/html/search/all_77.js +++ b/doc/html/search/all_77.js @@ -17,6 +17,7 @@ var searchData= ['widedarkness_2ephp',['widedarkness.php',['../widedarkness_8php.html',1,'']]], ['widget_5faffinity',['widget_affinity',['../widgets_8php.html#add9b24d3304e529a7975e96122315554',1,'widgets.php']]], ['widget_5farchive',['widget_archive',['../widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65',1,'widgets.php']]], + ['widget_5fbookmarkedchats',['widget_bookmarkedchats',['../widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3',1,'widgets.php']]], ['widget_5fcategories',['widget_categories',['../widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b',1,'widgets.php']]], ['widget_5fchatroom_5flist',['widget_chatroom_list',['../widgets_8php.html#a47c72aac42058ea086c9ef8651c259da',1,'widgets.php']]], ['widget_5fcollections',['widget_collections',['../widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f',1,'widgets.php']]], @@ -35,6 +36,7 @@ var searchData= ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], ['widget_5fsettings_5fmenu',['widget_settings_menu',['../widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01',1,'widgets.php']]], + ['widget_5fsuggestedchats',['widget_suggestedchats',['../widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8',1,'widgets.php']]], ['widget_5fsuggestions',['widget_suggestions',['../widgets_8php.html#a0d404276fedc59f5038cf5c085028326',1,'widgets.php']]], ['widget_5ftagcloud',['widget_tagcloud',['../widgets_8php.html#a6dbc227aac750774284ee39c45f0a200',1,'widgets.php']]], ['widget_5ftagcloud_5fwall',['widget_tagcloud_wall',['../widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653',1,'widgets.php']]], diff --git a/doc/html/search/files_66.js b/doc/html/search/files_66.js index aba1883e1..6def5fb77 100644 --- a/doc/html/search/files_66.js +++ b/doc/html/search/files_66.js @@ -13,5 +13,6 @@ var searchData= ['friendica_2dto_2dsmarty_2dtpl_2epy',['friendica-to-smarty-tpl.py',['../friendica-to-smarty-tpl_8py.html',1,'']]], ['friendica_5fsmarty_2ephp',['friendica_smarty.php',['../friendica__smarty_8php.html',1,'']]], ['fsuggest_2ephp',['fsuggest.php',['../fsuggest_8php.html',1,'']]], - ['full_2ephp',['full.php',['../full_8php.html',1,'']]] + ['full_2ephp',['full.php',['../full_8php.html',1,'']]], + ['functions_2ephp',['functions.php',['../functions_8php.html',1,'']]] ]; diff --git a/doc/html/search/files_6d.js b/doc/html/search/files_6d.js index 7176d95a6..38598f57a 100644 --- a/doc/html/search/files_6d.js +++ b/doc/html/search/files_6d.js @@ -11,6 +11,7 @@ var searchData= ['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]], ['minimalisticdarkness_2ephp',['minimalisticdarkness.php',['../minimalisticdarkness_8php.html',1,'']]], ['mitem_2ephp',['mitem.php',['../mitem_8php.html',1,'']]], + ['mod_5fchanview_2ephp',['mod_chanview.php',['../mod__chanview_8php.html',1,'']]], ['mod_5ffilestorage_2ephp',['mod_filestorage.php',['../mod__filestorage_8php.html',1,'']]], ['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]], ['mood_2ephp',['mood.php',['../mood_8php.html',1,'']]], diff --git a/doc/html/search/files_72.js b/doc/html/search/files_72.js index e6734d438..427670307 100644 --- a/doc/html/search/files_72.js +++ b/doc/html/search/files_72.js @@ -1,6 +1,7 @@ var searchData= [ ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], + ['rbmark_2ephp',['rbmark.php',['../rbmark_8php.html',1,'']]], ['readme_2emd',['README.md',['../apw_2README_8md.html',1,'']]], ['readme_2emd',['README.md',['../blogga_2php_2README_8md.html',1,'']]], ['redbasic_2ephp',['redbasic.php',['../redbasic_8php.html',1,'']]], diff --git a/doc/html/search/files_74.js b/doc/html/search/files_74.js index ae0686730..3a46faacf 100644 --- a/doc/html/search/files_74.js +++ b/doc/html/search/files_74.js @@ -5,13 +5,14 @@ var searchData= ['taxonomy_2ephp',['taxonomy.php',['../taxonomy_8php.html',1,'']]], ['template_5fprocessor_2ephp',['template_processor.php',['../template__processor_8php.html',1,'']]], ['text_2ephp',['text.php',['../text_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../blogga_2view_2theme_2blog_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../apw_2php_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../blogga_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../blogga_2view_2theme_2blog_2theme_8php.html',1,'']]], ['theme_2ephp',['theme.php',['../redbasic_2php_2theme_8php.html',1,'']]], - ['theme_2ephp',['theme.php',['../apw_2php_2theme_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../theme_2blogga_2php_2theme__init_8php.html',1,'']]], - ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], ['theme_5finit_2ephp',['theme_init.php',['../theme_2redbasic_2php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2apw_2php_2theme__init_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme_2blogga_2php_2theme__init_8php.html',1,'']]], ['thing_2ephp',['thing.php',['../thing_8php.html',1,'']]], ['toggle_5fmobile_2ephp',['toggle_mobile.php',['../toggle__mobile_8php.html',1,'']]], ['toggle_5fsafesearch_2ephp',['toggle_safesearch.php',['../toggle__safesearch_8php.html',1,'']]], diff --git a/doc/html/search/functions_62.js b/doc/html/search/functions_62.js index ffdeffab1..4331bc195 100644 --- a/doc/html/search/functions_62.js +++ b/doc/html/search/functions_62.js @@ -25,7 +25,7 @@ var searchData= ['blogtheme_5fdisplay_5fitem',['blogtheme_display_item',['../blogga_2view_2theme_2blog_2theme_8php.html#a028ae8e9f2824670dfa76a6651d817e5',1,'theme.php']]], ['blogtheme_5fform',['blogtheme_form',['../view_2theme_2blogga_2php_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php'],['../view_2theme_2blogga_2view_2theme_2blog_2config_8php.html#a8a311a402d3e746ce53fadc38e4b2d27',1,'blogtheme_form(&$a, $headimg, $headimghome): config.php']]], ['blogtheme_5fimgurl',['blogtheme_imgurl',['../blogga_2view_2theme_2blog_2theme_8php.html#af634a3f721c5e238530d0636d33230ec',1,'theme.php']]], - ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#a88ce7dee6a3dc7465aa9b8eaa45b0087',1,'bookmarks.php']]], + ['bookmark_5fadd',['bookmark_add',['../include_2bookmarks_8php.html#aef1cb2968c41c759f2d106e1088ca323',1,'bookmarks.php']]], ['bookmarks_5fcontent',['bookmarks_content',['../mod_2bookmarks_8php.html#a774364b1c8404529581083631703527a',1,'bookmarks.php']]], ['bookmarks_5finit',['bookmarks_init',['../mod_2bookmarks_8php.html#a6b7942f3d27e40f0f47c88704127b9b3',1,'bookmarks.php']]], ['breaklines',['breaklines',['../html2plain_8php.html#a3214912e3d00cf0a948072daccf16740',1,'html2plain.php']]], diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js index 4feee718e..5d88fb38c 100644 --- a/doc/html/search/functions_63.js +++ b/doc/html/search/functions_63.js @@ -63,7 +63,7 @@ var searchData= ['collect_5frecipients',['collect_recipients',['../items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70',1,'items.php']]], ['collecturls',['collecturls',['../html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201',1,'html2plain.php']]], ['comanche_5fblock',['comanche_block',['../comanche_8php.html#a5a7ab801717d38e91ac910b933973887',1,'comanche.php']]], - ['comanche_5fmenu',['comanche_menu',['../comanche_8php.html#a1fe339e1454803aa502ac89379c17f5b',1,'comanche.php']]], + ['comanche_5fmenu',['comanche_menu',['../comanche_8php.html#ad5a44e42231759aba1dda49e0490501e',1,'comanche.php']]], ['comanche_5fparser',['comanche_parser',['../comanche_8php.html#a1a208fdb40dd83d6298caec4290ee922',1,'comanche.php']]], ['comanche_5fregion',['comanche_region',['../comanche_8php.html#a5718daeda40bf835345fe061e8808cdf',1,'comanche.php']]], ['comanche_5freplace_5fregion',['comanche_replace_region',['../comanche_8php.html#a028f004d5b8c23d6367816d899e17cfe',1,'comanche.php']]], diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js index 7d13c746a..8257daf9c 100644 --- a/doc/html/search/functions_67.js +++ b/doc/html/search/functions_67.js @@ -14,6 +14,7 @@ var searchData= ['get_5fbb_5ftag_5fpos',['get_bb_tag_pos',['../bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2',1,'bb2diaspora.php']]], ['get_5fbest_5flanguage',['get_best_language',['../language_8php.html#a980dee1d8715a98ab02e36b59facf8ed',1,'language.php']]], ['get_5fbirthdays',['get_birthdays',['../identity_8php.html#ad2c97627a313d53df1a1c7b4215ddb51',1,'identity.php']]], + ['get_5fbookmark_5flink',['get_bookmark_link',['../include_2bookmarks_8php.html#a743763b0ce83af0bbc8a2f7ac16033aa',1,'bookmarks.php']]], ['get_5fbrowser_5flanguage',['get_browser_language',['../language_8php.html#ace67d6cad57da08d030ad9dc9b8c836e',1,'language.php']]], ['get_5fcapath',['get_capath',['../include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7',1,'network.php']]], ['get_5fchannel',['get_channel',['../classApp.html#a084e03c77686d8c13390fef3f7428a2b',1,'App']]], diff --git a/doc/html/search/functions_6d.js b/doc/html/search/functions_6d.js index 1b238fec5..8ad85e543 100644 --- a/doc/html/search/functions_6d.js +++ b/doc/html/search/functions_6d.js @@ -25,7 +25,7 @@ var searchData= ['menu_5ffetch_5fid',['menu_fetch_id',['../include_2menu_8php.html#a47447c01ba8ea04cd74af1d4c5b68fc7',1,'menu.php']]], ['menu_5flist',['menu_list',['../include_2menu_8php.html#a32701c4245e78ba9106eef52c08bf33d',1,'menu.php']]], ['menu_5fpost',['menu_post',['../mod_2menu_8php.html#aaa491ef173868fe002aece4632bcf393',1,'menu.php']]], - ['menu_5frender',['menu_render',['../include_2menu_8php.html#a4d7123b0577fa994770199f9b831da11',1,'menu.php']]], + ['menu_5frender',['menu_render',['../include_2menu_8php.html#a03a5deed3908543581c074ce333e9d6a',1,'menu.php']]], ['message_5fcontent',['message_content',['../mod_2message_8php.html#ac72dfed3ce08fcb331d66b37edc6e15f',1,'message.php']]], ['micropro',['micropro',['../text_8php.html#a2a902f5fdba8646333e997898ac45ea3',1,'text.php']]], ['mimetype_5fselect',['mimetype_select',['../text_8php.html#a1633412120f52bdce5f43e0a127d9293',1,'text.php']]], diff --git a/doc/html/search/functions_72.js b/doc/html/search/functions_72.js index 96cc1c6c3..0dbf26e94 100644 --- a/doc/html/search/functions_72.js +++ b/doc/html/search/functions_72.js @@ -3,6 +3,8 @@ var searchData= ['random_5fprofile',['random_profile',['../Contact_8php.html#a852fa476f0c70bde10a4f2533aec5f71',1,'Contact.php']]], ['random_5fstring',['random_string',['../text_8php.html#a9d6a5ee1290de7a8b483fe78585daade',1,'text.php']]], ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], + ['rbmark_5fcontent',['rbmark_content',['../rbmark_8php.html#a43fec4960b50926251574762cc491f76',1,'rbmark.php']]], + ['rbmark_5fpost',['rbmark_post',['../rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c',1,'rbmark.php']]], ['rconnect_5furl',['rconnect_url',['../Contact_8php.html#a2f4f495d53f2a334ab75292af79d3c91',1,'Contact.php']]], ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], ['red_5fcomment',['red_comment',['../post__to__red_8php.html#a085c250d4ceff5e4f10052f3d2039823',1,'post_to_red.php']]], diff --git a/doc/html/search/functions_73.js b/doc/html/search/functions_73.js index 1448351cc..9c4468e50 100644 --- a/doc/html/search/functions_73.js +++ b/doc/html/search/functions_73.js @@ -74,6 +74,7 @@ var searchData= ['sort_5fthr_5fcreated_5frev',['sort_thr_created_rev',['../conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0',1,'conversation.php']]], ['sources_5fcontent',['sources_content',['../sources_8php.html#ac442ccef080ab95772d8929fcafcb4b7',1,'sources.php']]], ['sources_5fpost',['sources_post',['../sources_8php.html#ac73298ff162ce7b2de8dcaf3d3305b1e',1,'sources.php']]], + ['splitfilename',['splitFilename',['../functions_8php.html#adefe514c95680928b3aae250cbc3c663',1,'functions.php']]], ['sslify',['sslify',['../text_8php.html#a33bdb5d4bfff2ede7caf61a98ac0a2e9',1,'text.php']]], ['sslify_5finit',['sslify_init',['../sslify_8php.html#a75b11e54a3d1fc83e7d4c0e8b4dab316',1,'sslify.php']]], ['starred_5finit',['starred_init',['../starred_8php.html#a63024fb418c678e49fd535e3752d349a',1,'starred.php']]], diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js index b7d1c9ca2..8c51d1a69 100644 --- a/doc/html/search/functions_77.js +++ b/doc/html/search/functions_77.js @@ -10,6 +10,7 @@ var searchData= ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], ['widget_5faffinity',['widget_affinity',['../widgets_8php.html#add9b24d3304e529a7975e96122315554',1,'widgets.php']]], ['widget_5farchive',['widget_archive',['../widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65',1,'widgets.php']]], + ['widget_5fbookmarkedchats',['widget_bookmarkedchats',['../widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3',1,'widgets.php']]], ['widget_5fcategories',['widget_categories',['../widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b',1,'widgets.php']]], ['widget_5fchatroom_5flist',['widget_chatroom_list',['../widgets_8php.html#a47c72aac42058ea086c9ef8651c259da',1,'widgets.php']]], ['widget_5fcollections',['widget_collections',['../widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f',1,'widgets.php']]], @@ -28,6 +29,7 @@ var searchData= ['widget_5fprofile',['widget_profile',['../widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923',1,'widgets.php']]], ['widget_5fsavedsearch',['widget_savedsearch',['../widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8',1,'widgets.php']]], ['widget_5fsettings_5fmenu',['widget_settings_menu',['../widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01',1,'widgets.php']]], + ['widget_5fsuggestedchats',['widget_suggestedchats',['../widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8',1,'widgets.php']]], ['widget_5fsuggestions',['widget_suggestions',['../widgets_8php.html#a0d404276fedc59f5038cf5c085028326',1,'widgets.php']]], ['widget_5ftagcloud',['widget_tagcloud',['../widgets_8php.html#a6dbc227aac750774284ee39c45f0a200',1,'widgets.php']]], ['widget_5ftagcloud_5fwall',['widget_tagcloud_wall',['../widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653',1,'widgets.php']]], diff --git a/doc/html/search/variables_24.js b/doc/html/search/variables_24.js index d2a44072d..b40d9eb43 100644 --- a/doc/html/search/variables_24.js +++ b/doc/html/search/variables_24.js @@ -17,7 +17,7 @@ var searchData= ['_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']]], + ['_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']]], ['_24channel_5fhash',['$channel_hash',['../classRedBasicAuth.html#ad5a3ea4dc4783b242d9dc6e76478b6ef',1,'RedBasicAuth']]], ['_24channel_5fid',['$channel_id',['../classRedBasicAuth.html#a2dab393650d1573e3515969a153e8354',1,'RedBasicAuth']]], ['_24channel_5fname',['$channel_name',['../classRedBasicAuth.html#a438ab125b6ef46581947e35d49cdebac',1,'RedBasicAuth']]], @@ -47,9 +47,11 @@ var searchData= ['_24done',['$done',['../classTemplate.html#abda4c8d049f70553338eae7c905e9d5c',1,'Template']]], ['_24error',['$error',['../classApp.html#ac1a8b2cd40609b231a560201a08852ba',1,'App\$error()'],['../classdba__driver.html#a84675d28c7bd9b7290dd37e66dbd216c',1,'dba_driver\$error()']]], ['_24ext_5fpath',['$ext_path',['../classRedDirectory.html#a0f113244cd85c17848df991001d024f4',1,'RedDirectory']]], + ['_24fext',['$fext',['../apw_2php_2style_8php.html#a404171b8f918c116e45a6421c92f0cc9',1,'style.php']]], ['_24filelist',['$filelist',['../docblox__errorchecker_8php.html#a648a570b0f9f6e0e51b7267647c4b09b',1,'docblox_errorchecker.php']]], ['_24filename',['$filename',['../classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690',1,'FriendicaSmarty']]], ['_24files',['$files',['../extract_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): extract.php'],['../tpldebug_8php.html#a5358407d65f2ca826f96356a6642d149',1,'$files(): tpldebug.php'],['../typo_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): typo.php']]], + ['_24fname',['$fname',['../apw_2php_2style_8php.html#ab9e0f70d44ab67f4334f9883631777fc',1,'style.php']]], ['_24folder_5fhash',['$folder_hash',['../classRedDirectory.html#aa10254abf177bb2a0e4a88495725e09b',1,'RedDirectory']]], ['_24force_5fmax_5fitems',['$force_max_items',['../classApp.html#ae3f47830543d0d902f66913def8db66b',1,'App']]], ['_24gc_5fprobability',['$gc_probability',['../session_8php.html#a96b09cc763572f45280786a7b33feb7e',1,'session.php']]], @@ -60,6 +62,7 @@ var searchData= ['_24hooks',['$hooks',['../classApp.html#a3694aa1907aa103a2adbc71f926f0fa0',1,'App']]], ['_24hostname',['$hostname',['../classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3',1,'App']]], ['_24i',['$i',['../docblox__errorchecker_8php.html#a83018d9153d17d91fbcf3bc10158d34f',1,'docblox_errorchecker.php']]], + ['_24iconsize',['$iconsize',['../apw_2php_2style_8php.html#a07adb491994deb72a00a975b431d3e30',1,'style.php']]], ['_24identities',['$identities',['../classApp.html#a7954862f44f606b0ff83d4c74d15e792',1,'App']]], ['_24image',['$image',['../classphoto__driver.html#a7c78b5a01afe61ba3895ac07f4869b55',1,'photo_driver']]], ['_24infile',['$infile',['../php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214',1,'php2po.php']]], @@ -81,8 +84,10 @@ var searchData= ['_24name',['$name',['../classFriendicaSmartyEngine.html#aaba6a42101bc9ae32e36b7fa2e243f02',1,'FriendicaSmartyEngine\$name()'],['../classRedFile.html#acc48c05cd5a70951cb3c615ad84f03ba',1,'RedFile\$name()'],['../classTemplate.html#a6eb301a51cc94d8b94f4548fbad85eae',1,'Template\$name()']]], ['_24nav_5fpercent_5fmin_5fopacity',['$nav_percent_min_opacity',['../redbasic_2php_2style_8php.html#a01c151bf47f7da2b979aaa4cb868da4c',1,'style.php']]], ['_24nav_5fsel',['$nav_sel',['../classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c',1,'App']]], + ['_24navheight',['$navheight',['../apw_2php_2style_8php.html#a1c8a7c0db8c174239f3909cb931cb872',1,'style.php']]], ['_24needed',['$needed',['../docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73',1,'docblox_errorchecker.php']]], ['_24nodes',['$nodes',['../classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1',1,'Template']]], + ['_24obliquemacro',['$obliquemacro',['../apw_2php_2style_8php.html#a2cad82a3ecadbe58dbc4197de1c63da0',1,'style.php']]], ['_24observer',['$observer',['../classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f',1,'App\$observer()'],['../classConversation.html#a8748445aa26047ebed5141f3c3cbc244',1,'Conversation\$observer()'],['../classRedBasicAuth.html#aa75dc43b59adc98e38a98517d3fd35d1',1,'RedBasicAuth\$observer()']]], ['_24os_5fpath',['$os_path',['../classRedDirectory.html#a3c148c07ad909985125aa4926d8d0021',1,'RedDirectory']]], ['_24out',['$out',['../php2po_8php.html#a48cb304902320d173a4eaa41543327b9',1,'php2po.php']]], @@ -122,13 +127,16 @@ var searchData= ['_24scheme',['$scheme',['../classApp.html#ad082d63acc078e5bf23825a03bdd6a76',1,'App']]], ['_24search',['$search',['../classTemplate.html#a317d535946dc065c35dd5cd38380e6c6',1,'Template']]], ['_24sectionleft',['$sectionleft',['../minimalisticdarkness_8php.html#a0ac3f5b52212b0af87d513273da03ead',1,'minimalisticdarkness.php']]], + ['_24sectiontop',['$sectiontop',['../apw_2php_2style_8php.html#acb0dedc3212a7c60ab2474768becd79a',1,'style.php']]], ['_24sectionwidth',['$sectionwidth',['../minimalisticdarkness_8php.html#a04de7b747e4f0a353e0e38cf77c3404f',1,'minimalisticdarkness.php']]], ['_24session_5fexists',['$session_exists',['../session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb',1,'session.php']]], ['_24session_5fexpire',['$session_expire',['../session_8php.html#af0100a2642a5268594bbd5742a03d885',1,'session.php']]], + ['_24showlock',['$showlock',['../apw_2php_2style_8php.html#ad401ea1d1ba236f86863b4574f01e425',1,'style.php']]], ['_24sourcename',['$sourcename',['../classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11',1,'App']]], ['_24stack',['$stack',['../classTemplate.html#a6f0efc256688c36110180b501067ff11',1,'Template']]], ['_24str',['$str',['../typohelper_8php.html#a7542d95618011800c61773127fa625cf',1,'typohelper.php']]], ['_24strings',['$strings',['../classApp.html#a5f64620473a9727a48ebe9cf6f335a98',1,'App']]], + ['_24strongmacro',['$strongmacro',['../apw_2php_2style_8php.html#aa58104ba36588bbf082cecbb3910e2ea',1,'style.php']]], ['_24template',['$template',['../classItem.html#a7f7bc059de377319282cb4ef4a828480',1,'Item']]], ['_24template_5fengine_5finstance',['$template_engine_instance',['../classApp.html#a6844aedad10e201b8c3d80cfc9e876d3',1,'App']]], ['_24template_5fengines',['$template_engines',['../classApp.html#a6859a4848a5c0049b4134cc4b34228b6',1,'App']]], @@ -153,5 +161,6 @@ var searchData= ['_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']]], ['_24wwtop',['$wwtop',['../redbasic_2php_2style_8php.html#a61891d0d3e6894f52410d507b04e565d',1,'style.php']]], + ['_24x',['$x',['../apw_2php_2style_8php.html#af3a16c5f0dd7a74cf9acf6a49fff73a7',1,'style.php']]], ['_24zones',['$zones',['../extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44',1,'extract.php']]] ]; diff --git a/doc/html/search/variables_69.js b/doc/html/search/variables_69.js index 5aa9e0fe6..bcf531cce 100644 --- a/doc/html/search/variables_69.js +++ b/doc/html/search/variables_69.js @@ -1,6 +1,6 @@ var searchData= [ - ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db',1,'if(): full.php'],['../apw_2php_2style_8php.html#a883f9f14e205f7aa7de02c14df67b40a',1,'if(): style.php']]], + ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db',1,'if(): full.php'],['../apw_2php_2style_8php.html#aea44f144ed341be483b334a7634c1aec',1,'if(): style.php']]], ['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_6d.js b/doc/html/search/variables_6d.js index 68833d773..6453e2e5c 100644 --- a/doc/html/search/variables_6d.js +++ b/doc/html/search/variables_6d.js @@ -9,6 +9,7 @@ var searchData= ['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]], ['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]], ['menu_5fbookmark',['MENU_BOOKMARK',['../boot_8php.html#a458e19af801bc4b0d1f1ce1a6d9e857e',1,'boot.php']]], + ['menu_5fitem_5fchatroom',['MENU_ITEM_CHATROOM',['../boot_8php.html#af6b3de425e5849c73370a484c44607a3',1,'boot.php']]], ['menu_5fitem_5fnewwin',['MENU_ITEM_NEWWIN',['../boot_8php.html#ad11f30a6590d3d77f0c5e1e3909af8f5',1,'boot.php']]], ['menu_5fitem_5fzid',['MENU_ITEM_ZID',['../boot_8php.html#aed0dfb35f7dd00dc9e4f868ea7f7ff53',1,'boot.php']]], ['menu_5fsystem',['MENU_SYSTEM',['../boot_8php.html#a718a801b0be6cbaef5e519516da12721',1,'boot.php']]] diff --git a/doc/html/security_8php.html b/doc/html/security_8php.html index d9f31f484..7940bd75d 100644 --- a/doc/html/security_8php.html +++ b/doc/html/security_8php.html @@ -132,7 +132,7 @@ Functions    check_form_security_token_ForbiddenOnErr ($typename= '', $formname= 'form_security_token')   -if(!function_exists('init_groups_visitor')) stream_perms_api_uids ($perms_min=PERMS_SITE) +if(!function_exists('init_groups_visitor')) stream_perms_api_uids ($perms_min=PERMS_SITE)    stream_perms_xchans ($perms_min=PERMS_SITE)   @@ -426,7 +426,7 @@ Functions
    - + diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html index a26cbae9f..e009b49df 100644 --- a/doc/html/text_8php.html +++ b/doc/html/text_8php.html @@ -131,7 +131,7 @@ Functions - + @@ -688,7 +688,7 @@ Variables
    Returns
    string
    -

    Referenced by admin_page_logs(), 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(), printable(), profiles_post(), thing_init(), and z_input_filter().

    +

    Referenced by admin_page_logs(), 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(), poco_load(), printable(), profiles_post(), rbmark_content(), rbmark_post(), thing_init(), and z_input_filter().

    @@ -1274,7 +1274,7 @@ Variables
    if (!function_exists('init_groups_visitor')) stream_perms_api_uids if (!function_exists('init_groups_visitor')) stream_perms_api_uids (   $perms_min = PERMS_SITE)
     
     unxmlify ($s)
     
    if(!function_exists('hex2bin')) paginate (&$a)
    if(!function_exists('hex2bin')) paginate (&$a)
     
     alt_pager (&$a, $i, $more= '', $less= '')
     
    -

    Referenced by RedDirectory\__construct(), RedFile\__construct(), account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), advanced_profile(), 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(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), channel_remove(), chanview_content(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), RedDirectory\childExists(), cloud_init(), consume_feed(), conversation(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), directory_content(), directory_run(), dirprofile_init(), downgrade_accounts(), email_send(), encode_item(), expire_run(), feed_init(), fetch_lrdd_template(), filer_content(), filerm_content(), fix_private_photos(), fix_system_urls(), RedFile\get(), get_atom_elements(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedDirectory\getChild(), RedDirectory\getChildren(), RedDirectory\getDir(), RedDirectory\getName(), RedFile\getName(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_rss(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_expire(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedDirectory\log(), 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(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_sidebar(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_queue_item(), scale_external_images(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedFile\setName(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_imported_item(), update_queue_time(), RedBasicAuth\validateUserPass(), webfinger(), webfinger_dfrn(), 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_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    +

    Referenced by RedDirectory\__construct(), RedFile\__construct(), account_remove(), account_verify_password(), Item\add_child(), Conversation\add_thread(), admin_content(), admin_page_hubloc_post(), admin_post(), advanced_profile(), 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(), blog_install(), blog_uninstall(), bookmark_add(), bookmarks_init(), build_sync_packet(), chanman_remove_everything_from_network(), channel_remove(), chanview_content(), check_config(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), RedDirectory\childExists(), cloud_init(), consume_feed(), conversation(), create_account(), create_identity(), RedDirectory\createDirectory(), RedDirectory\createFile(), cronhooks_run(), datetime_convert(), delete_imported_item(), deliver_run(), detect_language(), directory_content(), directory_run(), dirprofile_init(), downgrade_accounts(), email_send(), encode_item(), expire_run(), feed_init(), fetch_lrdd_template(), filer_content(), filerm_content(), fix_private_photos(), fix_system_urls(), RedFile\get(), get_atom_elements(), get_item_elements(), get_language_name(), Conversation\get_template_data(), RedDirectory\getChild(), RedDirectory\getChildren(), RedDirectory\getDir(), RedDirectory\getName(), RedFile\getName(), group_content(), guess_image_type(), head_set_icon(), http_status_exit(), import_author_rss(), import_author_zot(), import_channel_photo(), import_directory_profile(), import_post(), import_profile_photo(), import_site(), import_xchan(), install_plugin(), item_expire(), item_post(), item_store(), item_store_update(), like_content(), limit_body_size(), load_plugin(), local_dir_update(), localize_item(), RedDirectory\log(), 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(), onedirsync_run(), onepoll_run(), openid_content(), parse_url_content(), parse_xml_string(), photo_init(), photo_upload(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_activity_item(), post_init(), post_post(), private_messages_list(), process_channel_sync_delivery(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_load(), profile_sidebar(), public_recips(), RedFile\put(), dba_mysql\q(), dba_mysqli\q(), q(), queue_run(), rbmark_post(), RedChannelList(), RedCollectionData(), RedFileData(), register_content(), reload_plugins(), Item\remove_child(), remove_community_tag(), remove_queue_item(), scale_external_images(), search_ac_init(), enotify\send(), send_reg_approval_email(), Conversation\set_mode(), RedFile\setName(), stream_perms_api_uids(), stream_perms_xchans(), subthread_content(), sync_directories(), tag_deliver(), tagger_content(), tgroup_check(), uninstall_plugin(), unload_plugin(), update_directory_entry(), update_imported_item(), update_queue_time(), RedBasicAuth\validateUserPass(), webfinger(), webfinger_dfrn(), 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_response(), zot_refresh(), zot_register_hub(), and zotfeed_init().

    @@ -1466,7 +1466,7 @@ Variables
    - + @@ -1761,7 +1761,7 @@ Variables
    Returns
    string substituted string
    -

    Referenced by admin_content(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_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(), 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(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), invite_content(), lang_selector(), layouts_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(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), 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(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), widget_archive(), widget_chatroom_list(), widget_filer(), widget_follow(), widget_mailmenu(), widget_notes(), widget_savedsearch(), widget_settings_menu(), widget_suggestions(), writepages_widget(), and xrd_init().

    +

    Referenced by admin_content(), admin_page_dbsync(), admin_page_hubloc(), admin_page_logs(), admin_page_plugins(), admin_page_site(), admin_page_summary(), admin_page_themes(), admin_page_users(), advanced_profile(), alt_pager(), api_apply_template(), api_content(), apps_content(), apw_form(), blocks_content(), blogtheme_form(), App\build_pagehead(), categories_widget(), channel_content(), chanview_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(), 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(), get_birthdays(), Item\get_comment_box(), get_events(), get_feed_for(), group_content(), group_side(), help_content(), hostxrd_init(), import_content(), invite_content(), lang_selector(), layouts_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(), pagelist_widget(), photos_album_widget(), photos_content(), poco_init(), poke_content(), populate_acl(), profile_sidebar(), profiles_content(), rbmark_content(), redbasic_form(), register_content(), removeme_content(), rmagic_content(), rpost_content(), search_content(), 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(), viewconnections_content(), vote_content(), webpages_content(), widget_affinity(), 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_2blogga_2php_2default_8php.html b/doc/html/theme_2blogga_2php_2default_8php.html index 20528d9fe..91094b71f 100644 --- a/doc/html/theme_2blogga_2php_2default_8php.html +++ b/doc/html/theme_2blogga_2php_2default_8php.html @@ -116,7 +116,7 @@ Variables - +
    if (!function_exists('hex2bin')) paginate if (!function_exists('hex2bin')) paginate ( $a)
     
     $headimghome = get_config('blogtheme', 'headimghome')
     
    if($a->module=='display') $bodyclass =""
    if($a->module=='display') $bodyclass =""
     

    Variable Documentation

    @@ -125,7 +125,7 @@ Variables
    - +
    if ($a->module=='display') $bodyclass =""if ($a->module=='display') $bodyclass =""
    diff --git a/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.html b/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.html index 6efad8c6e..9e4f4c901 100644 --- a/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.html +++ b/doc/html/theme_2blogga_2view_2theme_2blog_2default_8php.html @@ -116,7 +116,7 @@ Variables    $headimghome = get_config('blogtheme', 'headimghome')   -if($a->module=='display') $bodyclass ="" +if($a->module=='display') $bodyclass =""  

    Variable Documentation

    @@ -125,7 +125,7 @@ Variables
    - +
    if ($a->module=='display') $bodyclass =""if ($a->module=='display') $bodyclass =""
    @@ -137,7 +137,7 @@ Variables
    - +
    if (local_user()) $headimg = get_config('blogtheme', 'headimg')if (local_user()) $headimg = get_config('blogtheme', 'headimg')
    diff --git a/doc/html/tpldebug_8php.html b/doc/html/tpldebug_8php.html index b9aeb5405..2045f14e1 100644 --- a/doc/html/tpldebug_8php.html +++ b/doc/html/tpldebug_8php.html @@ -118,7 +118,7 @@ Functions - + @@ -158,7 +158,7 @@ Variables

    Variables

    if($argc > 1) else
    if($argc > 1) else
     
     $files = glob('include/*.php')
     
    - +
    if ($argc > 1) elseif ($argc > 1) else
    diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html index 24a480775..394c77b80 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_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(), apps_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), blocks_content(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), 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_menu(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), 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(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), 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(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), home_content(), home_init(), hostxrd_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_site_admin(), item_content(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), like_puller(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_translation_table(), load_xconfig(), 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(), 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(), oembed_iframe(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_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(), redbasic_form(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), 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(), subthread_content(), suggest_content(), t(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tryzrlvideo(), tt(), uexport_init(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), 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_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), 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_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(), apps_content(), apw_form(), atom_entry(), attribute_contains(), authenticate_success(), avatar_img(), bb_sanitize_style(), bbcode(), best_link_url(), blocks_content(), blog_init(), blogtheme_display_item(), blogtheme_form(), blogtheme_imgurl(), 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_menu(), comanche_parser(), comanche_replace_region(), comanche_widget(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), 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(), directory_content(), directory_init(), dirsearch_init(), display_content(), dlogger(), drop_item(), editblock_content(), editlayout_content(), editpost_content(), editwebpage_content(), ev_compare(), event_store(), events_content(), events_post(), expand_acl(), expand_groups(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), filestorage_content(), 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(), head_get_icon(), head_remove_css(), head_remove_js(), head_set_icon(), help_content(), home_content(), home_init(), hostxrd_init(), import_channel_photo(), import_post(), import_profile_photo(), info(), insert_hook(), invite_content(), invite_post(), is_site_admin(), item_content(), item_photo_menu(), item_post(), items_fetch(), lang_selector(), layouts_content(), like_content(), like_puller(), link_compare(), load_config(), load_contact_links(), load_database(), load_hooks(), load_pconfig(), load_translation_table(), load_xconfig(), 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(), 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(), oembed_iframe(), oexchange_content(), oexchange_init(), onedirsync_run(), onepoll_run(), openid_content(), opensearch_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(), redbasic_form(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), replace_macros(), rmagic_post(), rpost_content(), scale_external_images(), search(), search_ac_init(), search_content(), search_init(), searchbox(), send_message(), service_class_allows(), service_class_fetch(), 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(), subthread_content(), suggest_content(), t(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), tags_sort(), terminate_friendship(), tgroup_check(), theme_admin(), theme_content(), theme_include(), thing_init(), timezone_cmp(), toggle_mobile_init(), tryzrlvideo(), tt(), uexport_init(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_search_content(), update_suggestions(), user_allow(), 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_categories(), widget_chatroom_list(), widget_design_tools(), widget_filer(), widget_follow(), widget_fullprofile(), 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/widgets_8php.html b/doc/html/widgets_8php.html index 50582fe01..bb2008bcf 100644 --- a/doc/html/widgets_8php.html +++ b/doc/html/widgets_8php.html @@ -160,6 +160,10 @@ Functions    widget_chatroom_list ($arr)   + widget_bookmarkedchats ($arr) +  + widget_suggestedchats ($arr) + 

    Function Documentation

    @@ -192,6 +196,22 @@ Functions
    +
    +
    + +
    +
    + + + + + + + + +
    widget_bookmarkedchats ( $arr)
    +
    +
    @@ -483,6 +503,22 @@ Functions
    +
    + + +
    +
    + + + + + + + + +
    widget_suggestedchats ( $arr)
    +
    +
    diff --git a/doc/html/widgets_8php.js b/doc/html/widgets_8php.js index 30270e8c7..7e391a078 100644 --- a/doc/html/widgets_8php.js +++ b/doc/html/widgets_8php.js @@ -2,6 +2,7 @@ var widgets_8php = [ [ "widget_affinity", "widgets_8php.html#add9b24d3304e529a7975e96122315554", null ], [ "widget_archive", "widgets_8php.html#a7b1e357b5a2027718470b77ec921fc65", null ], + [ "widget_bookmarkedchats", "widgets_8php.html#a0e2f5179ed1a73b282dfda7270fcabb3", null ], [ "widget_categories", "widgets_8php.html#af37fdad3b2e861d860a4a8c4d8a76c0b", null ], [ "widget_chatroom_list", "widgets_8php.html#a47c72aac42058ea086c9ef8651c259da", null ], [ "widget_collections", "widgets_8php.html#aa189a07241246d97efbee29f1c6a6f7f", null ], @@ -20,6 +21,7 @@ var widgets_8php = [ "widget_profile", "widgets_8php.html#abd2e508a2a0b911c4a838e3cb7599923", null ], [ "widget_savedsearch", "widgets_8php.html#a94203eb9bcd63cbdecbbcb15163598d8", null ], [ "widget_settings_menu", "widgets_8php.html#aaa73bcf1702eaadd9dcd253502f55e01", null ], + [ "widget_suggestedchats", "widgets_8php.html#a50b1410238100c8a94c06b0aa63ee3b8", null ], [ "widget_suggestions", "widgets_8php.html#a0d404276fedc59f5038cf5c085028326", null ], [ "widget_tagcloud", "widgets_8php.html#a6dbc227aac750774284ee39c45f0a200", null ], [ "widget_tagcloud_wall", "widgets_8php.html#ae4ced69d83dbdd9e6b51660d9eba8653", null ], diff --git a/include/oembed.php b/include/oembed.php index d8671a752..f9e9012d0 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -99,6 +99,8 @@ function oembed_format_object($j){ $th=120; $tw = $th*$tr; $tpl=get_markup_template('oembed_video.tpl'); + if(strstr($embedurl,'youtu')) + $embedurl = str_replace('http:','https:',$embedurl); $ret.=replace_macros($tpl, array( '$baseurl' => $a->get_baseurl(), '$embedurl'=>$embedurl, diff --git a/util/messages.po b/util/messages.po index 11820f853..88ef6cdeb 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-02-21.595\n" +"Project-Id-Version: 2014-02-28.602\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-02-21 00:03-0800\n" +"POT-Creation-Date: 2014-02-28 00:02-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,7 +22,7 @@ msgid "Categories" msgstr "" #: ../../include/widgets.php:115 ../../include/widgets.php:155 -#: ../../include/Contact.php:107 ../../include/identity.php:632 +#: ../../include/Contact.php:107 ../../include/identity.php:643 #: ../../mod/directory.php:184 ../../mod/match.php:62 #: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51 msgid "Connect" @@ -62,7 +62,8 @@ msgid "Notes" msgstr "" #: ../../include/widgets.php:173 ../../include/text.php:759 -#: ../../include/text.php:773 ../../mod/filer.php:36 +#: ../../include/text.php:773 ../../mod/filer.php:36 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 msgid "Save" msgstr "" @@ -183,6 +184,14 @@ msgstr "" msgid "Chat Rooms" msgstr "" +#: ../../include/widgets.php:603 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:621 +msgid "Suggested Chatrooms" +msgstr "" + #: ../../include/acl_selectors.php:235 msgid "Visible to everybody" msgstr "" @@ -331,7 +340,7 @@ msgstr "" msgid "Create an account" msgstr "" -#: ../../include/nav.php:134 ../../mod/help.php:60 ../../mod/help.php:64 +#: ../../include/nav.php:134 ../../mod/help.php:60 ../../mod/help.php:65 msgid "Help" msgstr "" @@ -1238,7 +1247,7 @@ msgstr "" msgid "Finishes:" msgstr "" -#: ../../include/event.php:40 ../../include/identity.php:683 +#: ../../include/event.php:40 ../../include/identity.php:694 #: ../../include/bb2diaspora.php:455 ../../mod/events.php:462 #: ../../mod/directory.php:157 ../../mod/dirprofile.php:111 msgid "Location:" @@ -1298,95 +1307,103 @@ msgid "show fewer" msgstr "" #: ../../include/js_strings.php:9 -msgid "Password too short" +msgid "+ Show More" msgstr "" #: ../../include/js_strings.php:10 +msgid "- Show Less" +msgstr "" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "" + +#: ../../include/js_strings.php:12 msgid "Passwords do not match" msgstr "" -#: ../../include/js_strings.php:11 ../../mod/photos.php:39 +#: ../../include/js_strings.php:13 ../../mod/photos.php:39 msgid "everybody" msgstr "" -#: ../../include/js_strings.php:12 +#: ../../include/js_strings.php:14 msgid "Secret Passphrase" msgstr "" -#: ../../include/js_strings.php:13 +#: ../../include/js_strings.php:15 msgid "Passphrase hint" msgstr "" -#: ../../include/js_strings.php:15 +#: ../../include/js_strings.php:17 msgid "timeago.prefixAgo" msgstr "" -#: ../../include/js_strings.php:16 -msgid "timeago.suffixAgo" +#: ../../include/js_strings.php:18 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/js_strings.php:17 +#: ../../include/js_strings.php:19 msgid "ago" msgstr "" -#: ../../include/js_strings.php:18 +#: ../../include/js_strings.php:20 msgid "from now" msgstr "" -#: ../../include/js_strings.php:19 +#: ../../include/js_strings.php:21 msgid "less than a minute" msgstr "" -#: ../../include/js_strings.php:20 +#: ../../include/js_strings.php:22 msgid "about a minute" msgstr "" -#: ../../include/js_strings.php:21 +#: ../../include/js_strings.php:23 #, php-format msgid "%d minutes" msgstr "" -#: ../../include/js_strings.php:22 +#: ../../include/js_strings.php:24 msgid "about an hour" msgstr "" -#: ../../include/js_strings.php:23 +#: ../../include/js_strings.php:25 #, php-format msgid "about %d hours" msgstr "" -#: ../../include/js_strings.php:24 +#: ../../include/js_strings.php:26 msgid "a day" msgstr "" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:27 #, php-format msgid "%d days" msgstr "" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:28 msgid "about a month" msgstr "" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:29 #, php-format msgid "%d months" msgstr "" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:30 msgid "about a year" msgstr "" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:31 #, php-format msgid "%d years" msgstr "" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:32 msgid " " msgstr "" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:33 msgid "timeago.numbers" msgstr "" @@ -1421,15 +1438,15 @@ msgstr "" #: ../../include/photos.php:15 ../../include/items.php:3575 #: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247 #: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/settings.php:493 ../../mod/menu.php:44 +#: ../../mod/invite.php:104 ../../mod/settings.php:492 ../../mod/menu.php:44 #: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/bookmarks.php:46 ../../mod/item.php:182 ../../mod/item.php:190 -#: ../../mod/chat.php:87 ../../mod/chat.php:92 +#: ../../mod/chat.php:89 ../../mod/chat.php:94 #: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 #: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9 #: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13 #: ../../mod/connedit.php:182 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/layouts.php:39 ../../mod/page.php:30 ../../mod/page.php:80 #: ../../mod/network.php:12 ../../mod/profiles.php:152 #: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200 #: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 @@ -1508,7 +1525,7 @@ msgstr "" msgid "database storage failed." msgstr "" -#: ../../include/bookmarks.php:31 +#: ../../include/bookmarks.php:42 #, php-format msgid "%1$s's bookmarks" msgstr "" @@ -1547,7 +1564,7 @@ msgid "Select" msgstr "" #: ../../include/conversation.php:632 ../../include/ItemObject.php:108 -#: ../../mod/thing.php:236 ../../mod/settings.php:579 ../../mod/group.php:176 +#: ../../mod/thing.php:236 ../../mod/settings.php:578 ../../mod/group.php:176 #: ../../mod/admin.php:746 ../../mod/connedit.php:359 #: ../../mod/filestorage.php:171 ../../mod/photos.php:1044 msgid "Delete" @@ -1850,8 +1867,8 @@ msgstr "" msgid "OK" msgstr "" -#: ../../include/conversation.php:1150 ../../mod/settings.php:517 -#: ../../mod/settings.php:543 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../include/conversation.php:1150 ../../mod/settings.php:516 +#: ../../mod/settings.php:542 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 #: ../../mod/editpost.php:152 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 msgid "Cancel" @@ -1983,10 +2000,6 @@ msgstr "" msgid "Requested channel is not available." msgstr "" -#: ../../include/identity.php:493 -msgid " Sorry, you don't have the permission to view this profile. " -msgstr "" - #: ../../include/identity.php:528 ../../mod/webpages.php:8 #: ../../mod/connect.php:13 ../../mod/layouts.php:8 #: ../../mod/achievements.php:8 ../../mod/blocks.php:10 @@ -1994,190 +2007,194 @@ msgstr "" msgid "Requested profile is not available." msgstr "" -#: ../../include/identity.php:646 ../../mod/profiles.php:603 +#: ../../include/identity.php:580 +msgid " Sorry, you don't have the permission to view this profile. " +msgstr "" + +#: ../../include/identity.php:657 ../../mod/profiles.php:603 msgid "Change profile photo" msgstr "" -#: ../../include/identity.php:652 +#: ../../include/identity.php:663 msgid "Profiles" msgstr "" -#: ../../include/identity.php:652 +#: ../../include/identity.php:663 msgid "Manage/edit profiles" msgstr "" -#: ../../include/identity.php:653 ../../mod/profiles.php:604 +#: ../../include/identity.php:664 ../../mod/profiles.php:604 msgid "Create New Profile" msgstr "" -#: ../../include/identity.php:656 +#: ../../include/identity.php:667 msgid "Edit Profile" msgstr "" -#: ../../include/identity.php:667 ../../mod/profiles.php:615 +#: ../../include/identity.php:678 ../../mod/profiles.php:615 msgid "Profile Image" msgstr "" -#: ../../include/identity.php:670 ../../mod/profiles.php:618 +#: ../../include/identity.php:681 ../../mod/profiles.php:618 msgid "visible to everybody" msgstr "" -#: ../../include/identity.php:671 ../../mod/profiles.php:619 +#: ../../include/identity.php:682 ../../mod/profiles.php:619 msgid "Edit visibility" msgstr "" -#: ../../include/identity.php:685 ../../include/identity.php:912 +#: ../../include/identity.php:696 ../../include/identity.php:923 #: ../../mod/directory.php:159 msgid "Gender:" msgstr "" -#: ../../include/identity.php:686 ../../include/identity.php:932 +#: ../../include/identity.php:697 ../../include/identity.php:943 #: ../../mod/directory.php:161 msgid "Status:" msgstr "" -#: ../../include/identity.php:687 ../../include/identity.php:943 +#: ../../include/identity.php:698 ../../include/identity.php:954 #: ../../mod/directory.php:163 msgid "Homepage:" msgstr "" -#: ../../include/identity.php:688 ../../mod/dirprofile.php:157 +#: ../../include/identity.php:699 ../../mod/dirprofile.php:157 msgid "Online Now" msgstr "" -#: ../../include/identity.php:756 ../../include/identity.php:836 +#: ../../include/identity.php:767 ../../include/identity.php:847 #: ../../mod/ping.php:262 msgid "g A l F d" msgstr "" -#: ../../include/identity.php:757 ../../include/identity.php:837 +#: ../../include/identity.php:768 ../../include/identity.php:848 msgid "F d" msgstr "" -#: ../../include/identity.php:802 ../../include/identity.php:877 +#: ../../include/identity.php:813 ../../include/identity.php:888 #: ../../mod/ping.php:284 msgid "[today]" msgstr "" -#: ../../include/identity.php:814 +#: ../../include/identity.php:825 msgid "Birthday Reminders" msgstr "" -#: ../../include/identity.php:815 +#: ../../include/identity.php:826 msgid "Birthdays this week:" msgstr "" -#: ../../include/identity.php:870 +#: ../../include/identity.php:881 msgid "[No description]" msgstr "" -#: ../../include/identity.php:888 +#: ../../include/identity.php:899 msgid "Event Reminders" msgstr "" -#: ../../include/identity.php:889 +#: ../../include/identity.php:900 msgid "Events this week:" msgstr "" -#: ../../include/identity.php:902 ../../include/identity.php:986 +#: ../../include/identity.php:913 ../../include/identity.php:997 #: ../../mod/profperm.php:107 msgid "Profile" msgstr "" -#: ../../include/identity.php:910 ../../mod/settings.php:937 +#: ../../include/identity.php:921 ../../mod/settings.php:936 msgid "Full Name:" msgstr "" -#: ../../include/identity.php:917 +#: ../../include/identity.php:928 msgid "j F, Y" msgstr "" -#: ../../include/identity.php:918 +#: ../../include/identity.php:929 msgid "j F" msgstr "" -#: ../../include/identity.php:925 +#: ../../include/identity.php:936 msgid "Birthday:" msgstr "" -#: ../../include/identity.php:929 +#: ../../include/identity.php:940 msgid "Age:" msgstr "" -#: ../../include/identity.php:938 +#: ../../include/identity.php:949 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/identity.php:941 ../../mod/profiles.php:526 +#: ../../include/identity.php:952 ../../mod/profiles.php:526 msgid "Sexual Preference:" msgstr "" -#: ../../include/identity.php:945 ../../mod/profiles.php:528 +#: ../../include/identity.php:956 ../../mod/profiles.php:528 msgid "Hometown:" msgstr "" -#: ../../include/identity.php:947 +#: ../../include/identity.php:958 msgid "Tags:" msgstr "" -#: ../../include/identity.php:949 ../../mod/profiles.php:529 +#: ../../include/identity.php:960 ../../mod/profiles.php:529 msgid "Political Views:" msgstr "" -#: ../../include/identity.php:951 +#: ../../include/identity.php:962 msgid "Religion:" msgstr "" -#: ../../include/identity.php:953 ../../mod/directory.php:165 +#: ../../include/identity.php:964 ../../mod/directory.php:165 msgid "About:" msgstr "" -#: ../../include/identity.php:955 +#: ../../include/identity.php:966 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/identity.php:957 ../../mod/profiles.php:532 +#: ../../include/identity.php:968 ../../mod/profiles.php:532 msgid "Likes:" msgstr "" -#: ../../include/identity.php:959 ../../mod/profiles.php:533 +#: ../../include/identity.php:970 ../../mod/profiles.php:533 msgid "Dislikes:" msgstr "" -#: ../../include/identity.php:962 +#: ../../include/identity.php:973 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/identity.php:964 +#: ../../include/identity.php:975 msgid "My other channels:" msgstr "" -#: ../../include/identity.php:966 +#: ../../include/identity.php:977 msgid "Musical interests:" msgstr "" -#: ../../include/identity.php:968 +#: ../../include/identity.php:979 msgid "Books, literature:" msgstr "" -#: ../../include/identity.php:970 +#: ../../include/identity.php:981 msgid "Television:" msgstr "" -#: ../../include/identity.php:972 +#: ../../include/identity.php:983 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/identity.php:974 +#: ../../include/identity.php:985 msgid "Love/Romance:" msgstr "" -#: ../../include/identity.php:976 +#: ../../include/identity.php:987 msgid "Work/employment:" msgstr "" -#: ../../include/identity.php:978 +#: ../../include/identity.php:989 msgid "School/education:" msgstr "" @@ -2186,9 +2203,9 @@ msgid "Private Message" msgstr "" #: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8 -#: ../../include/menu.php:41 ../../mod/thing.php:235 -#: ../../mod/settings.php:578 ../../mod/menu.php:59 ../../mod/webpages.php:118 -#: ../../mod/editpost.php:112 ../../mod/layouts.php:102 +#: ../../include/menu.php:42 ../../mod/thing.php:235 +#: ../../mod/settings.php:577 ../../mod/menu.php:59 ../../mod/webpages.php:118 +#: ../../mod/editpost.php:112 ../../mod/layouts.php:97 #: ../../mod/editlayout.php:106 ../../mod/blocks.php:93 #: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120 #: ../../mod/filestorage.php:170 @@ -2282,10 +2299,10 @@ msgstr "" #: ../../include/ItemObject.php:548 ../../mod/events.php:469 #: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156 -#: ../../mod/settings.php:516 ../../mod/settings.php:628 -#: ../../mod/settings.php:656 ../../mod/settings.php:680 -#: ../../mod/settings.php:752 ../../mod/settings.php:929 -#: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92 +#: ../../mod/settings.php:515 ../../mod/settings.php:627 +#: ../../mod/settings.php:655 ../../mod/settings.php:679 +#: ../../mod/settings.php:751 ../../mod/settings.php:928 +#: ../../mod/chat.php:174 ../../mod/chat.php:206 ../../mod/connect.php:92 #: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:739 #: ../../mod/admin.php:879 ../../mod/admin.php:1078 ../../mod/admin.php:1165 #: ../../mod/connedit.php:437 ../../mod/profiles.php:506 @@ -2295,8 +2312,8 @@ msgstr "" #: ../../mod/filestorage.php:131 ../../mod/photos.php:566 #: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994 #: ../../mod/photos.php:1081 ../../mod/mood.php:142 -#: ../../view/theme/redbasic/php/config.php:95 -#: ../../view/theme/apw/php/config.php:231 +#: ../../view/theme/redbasic/php/config.php:97 +#: ../../view/theme/apw/php/config.php:247 #: ../../view/theme/blogga/view/theme/blog/config.php:67 #: ../../view/theme/blogga/php/config.php:67 msgid "Submit" @@ -2631,15 +2648,15 @@ msgstr "" msgid "dislikes" msgstr "" -#: ../../include/auth.php:76 +#: ../../include/auth.php:79 msgid "Logged out." msgstr "" -#: ../../include/auth.php:188 +#: ../../include/auth.php:197 msgid "Failed authentication" msgstr "" -#: ../../include/auth.php:203 ../../mod/openid.php:185 +#: ../../include/auth.php:212 ../../mod/openid.php:186 msgid "Login failed." msgstr "" @@ -2939,7 +2956,7 @@ msgstr "" msgid "Upload New Photos" msgstr "" -#: ../../include/reddav.php:1061 +#: ../../include/reddav.php:1063 msgid "Edit File properties" msgstr "" @@ -3030,13 +3047,13 @@ msgstr "" msgid "Cannot connect to yourself." msgstr "" -#: ../../include/security.php:291 +#: ../../include/security.php:294 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/comanche.php:35 ../../view/theme/redbasic/php/config.php:64 +#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:66 #: ../../view/theme/apw/php/config.php:176 msgid "Default" msgstr "" @@ -3138,8 +3155,8 @@ msgstr "" msgid "Permission denied" msgstr "" -#: ../../include/items.php:756 ../../mod/connedit.php:395 -msgid "Unknown" +#: ../../include/items.php:756 +msgid "(Unknown)" msgstr "" #: ../../include/items.php:3513 ../../mod/thing.php:78 ../../mod/admin.php:151 @@ -3410,7 +3427,7 @@ msgstr "" msgid "Key and Secret are required" msgstr "" -#: ../../mod/settings.php:79 ../../mod/settings.php:542 +#: ../../mod/settings.php:79 ../../mod/settings.php:541 msgid "Update" msgstr "" @@ -3442,403 +3459,403 @@ msgstr "" msgid "System failure storing new email. Please try again." msgstr "" -#: ../../mod/settings.php:444 +#: ../../mod/settings.php:443 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:515 ../../mod/settings.php:541 -#: ../../mod/settings.php:577 +#: ../../mod/settings.php:514 ../../mod/settings.php:540 +#: ../../mod/settings.php:576 msgid "Add application" msgstr "" -#: ../../mod/settings.php:518 ../../mod/settings.php:544 +#: ../../mod/settings.php:517 ../../mod/settings.php:543 msgid "Name" msgstr "" -#: ../../mod/settings.php:518 +#: ../../mod/settings.php:517 msgid "Name of application" msgstr "" -#: ../../mod/settings.php:519 ../../mod/settings.php:545 +#: ../../mod/settings.php:518 ../../mod/settings.php:544 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:519 ../../mod/settings.php:520 +#: ../../mod/settings.php:518 ../../mod/settings.php:519 msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../mod/settings.php:520 ../../mod/settings.php:546 +#: ../../mod/settings.php:519 ../../mod/settings.php:545 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:521 ../../mod/settings.php:547 +#: ../../mod/settings.php:520 ../../mod/settings.php:546 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:521 +#: ../../mod/settings.php:520 msgid "" "Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../mod/settings.php:522 ../../mod/settings.php:548 +#: ../../mod/settings.php:521 ../../mod/settings.php:547 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:522 +#: ../../mod/settings.php:521 msgid "Optional" msgstr "" -#: ../../mod/settings.php:533 +#: ../../mod/settings.php:532 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:576 +#: ../../mod/settings.php:575 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:580 +#: ../../mod/settings.php:579 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:581 +#: ../../mod/settings.php:580 msgid "No name" msgstr "" -#: ../../mod/settings.php:582 +#: ../../mod/settings.php:581 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:593 +#: ../../mod/settings.php:592 msgid "No feature settings configured" msgstr "" -#: ../../mod/settings.php:601 +#: ../../mod/settings.php:600 msgid "Feature Settings" msgstr "" -#: ../../mod/settings.php:624 +#: ../../mod/settings.php:623 msgid "Account Settings" msgstr "" -#: ../../mod/settings.php:625 +#: ../../mod/settings.php:624 msgid "Password Settings" msgstr "" -#: ../../mod/settings.php:626 +#: ../../mod/settings.php:625 msgid "New Password:" msgstr "" -#: ../../mod/settings.php:627 +#: ../../mod/settings.php:626 msgid "Confirm:" msgstr "" -#: ../../mod/settings.php:627 +#: ../../mod/settings.php:626 msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/settings.php:629 ../../mod/settings.php:938 +#: ../../mod/settings.php:628 ../../mod/settings.php:937 msgid "Email Address:" msgstr "" -#: ../../mod/settings.php:630 +#: ../../mod/settings.php:629 msgid "Remove Account" msgstr "" -#: ../../mod/settings.php:631 +#: ../../mod/settings.php:630 msgid "Warning: This action is permanent and cannot be reversed." msgstr "" -#: ../../mod/settings.php:647 +#: ../../mod/settings.php:646 msgid "Off" msgstr "" -#: ../../mod/settings.php:647 +#: ../../mod/settings.php:646 msgid "On" msgstr "" -#: ../../mod/settings.php:654 +#: ../../mod/settings.php:653 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:679 +#: ../../mod/settings.php:678 msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:709 ../../mod/admin.php:379 +#: ../../mod/settings.php:708 ../../mod/admin.php:379 msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/settings.php:750 +#: ../../mod/settings.php:749 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:756 +#: ../../mod/settings.php:755 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:757 +#: ../../mod/settings.php:756 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:758 +#: ../../mod/settings.php:757 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:758 +#: ../../mod/settings.php:757 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:759 +#: ../../mod/settings.php:758 msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../mod/settings.php:759 +#: ../../mod/settings.php:758 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:760 +#: ../../mod/settings.php:759 msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:761 +#: ../../mod/settings.php:760 msgid "Do not view remote profiles in frames" msgstr "" -#: ../../mod/settings.php:761 +#: ../../mod/settings.php:760 msgid "By default open in a sub-window of your own site" msgstr "" -#: ../../mod/settings.php:796 +#: ../../mod/settings.php:795 msgid "Nobody except yourself" msgstr "" -#: ../../mod/settings.php:797 +#: ../../mod/settings.php:796 msgid "Only those you specifically allow" msgstr "" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:797 msgid "Anybody in your address book" msgstr "" -#: ../../mod/settings.php:799 +#: ../../mod/settings.php:798 msgid "Anybody on this website" msgstr "" -#: ../../mod/settings.php:800 +#: ../../mod/settings.php:799 msgid "Anybody in this network" msgstr "" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:800 msgid "Anybody authenticated" msgstr "" -#: ../../mod/settings.php:802 +#: ../../mod/settings.php:801 msgid "Anybody on the internet" msgstr "" -#: ../../mod/settings.php:879 +#: ../../mod/settings.php:878 msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 ../../mod/api.php:106 ../../mod/profiles.php:484 +#: ../../mod/settings.php:878 ../../mod/settings.php:883 +#: ../../mod/settings.php:954 ../../mod/api.php:106 ../../mod/profiles.php:484 msgid "No" msgstr "" -#: ../../mod/settings.php:879 ../../mod/settings.php:884 -#: ../../mod/settings.php:955 ../../mod/api.php:105 ../../mod/profiles.php:483 +#: ../../mod/settings.php:878 ../../mod/settings.php:883 +#: ../../mod/settings.php:954 ../../mod/api.php:105 ../../mod/profiles.php:483 msgid "Yes" msgstr "" -#: ../../mod/settings.php:884 +#: ../../mod/settings.php:883 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:888 ../../mod/profile_photo.php:288 +#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288 msgid "or" msgstr "" -#: ../../mod/settings.php:893 +#: ../../mod/settings.php:892 msgid "Your channel address is" msgstr "" -#: ../../mod/settings.php:927 +#: ../../mod/settings.php:926 msgid "Channel Settings" msgstr "" -#: ../../mod/settings.php:936 +#: ../../mod/settings.php:935 msgid "Basic Settings" msgstr "" -#: ../../mod/settings.php:939 +#: ../../mod/settings.php:938 msgid "Your Timezone:" msgstr "" -#: ../../mod/settings.php:940 +#: ../../mod/settings.php:939 msgid "Default Post Location:" msgstr "" -#: ../../mod/settings.php:941 +#: ../../mod/settings.php:940 msgid "Use Browser Location:" msgstr "" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:942 msgid "Adult Content" msgstr "" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:942 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/settings.php:945 +#: ../../mod/settings.php:944 msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:946 msgid "Hide my online presence" msgstr "" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:946 msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../mod/settings.php:949 +#: ../../mod/settings.php:948 msgid "Simple Privacy Settings:" msgstr "" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:949 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:950 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "" -#: ../../mod/settings.php:952 +#: ../../mod/settings.php:951 msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/settings.php:953 +#: ../../mod/settings.php:952 msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:954 msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:954 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/settings.php:957 +#: ../../mod/settings.php:956 msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:958 msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:958 msgid "May reduce spam activity" msgstr "" -#: ../../mod/settings.php:960 +#: ../../mod/settings.php:959 msgid "Default Post Permissions" msgstr "" -#: ../../mod/settings.php:961 ../../mod/mitem.php:134 ../../mod/mitem.php:177 +#: ../../mod/settings.php:960 ../../mod/mitem.php:134 ../../mod/mitem.php:177 msgid "(click to open/close)" msgstr "" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:971 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:971 msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:974 msgid "Notification Settings" msgstr "" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:975 msgid "By default post a status message when:" msgstr "" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:976 msgid "accepting a friend request" msgstr "" -#: ../../mod/settings.php:978 +#: ../../mod/settings.php:977 msgid "joining a forum/community" msgstr "" -#: ../../mod/settings.php:979 +#: ../../mod/settings.php:978 msgid "making an interesting profile change" msgstr "" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:979 msgid "Send a notification email when:" msgstr "" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:980 msgid "You receive an introduction" msgstr "" -#: ../../mod/settings.php:982 +#: ../../mod/settings.php:981 msgid "Your introductions are confirmed" msgstr "" -#: ../../mod/settings.php:983 +#: ../../mod/settings.php:982 msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:983 msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:984 msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:986 +#: ../../mod/settings.php:985 msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:987 +#: ../../mod/settings.php:986 msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:987 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:990 msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:992 +#: ../../mod/settings.php:991 msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:994 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "" -#: ../../mod/settings.php:996 +#: ../../mod/settings.php:995 msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/settings.php:998 +#: ../../mod/settings.php:997 msgid "Personal menu to display in your channel pages" msgstr "" @@ -3943,7 +3960,7 @@ msgstr "" msgid "Not found." msgstr "" -#: ../../mod/webpages.php:121 ../../mod/layouts.php:105 +#: ../../mod/webpages.php:121 ../../mod/layouts.php:100 #: ../../mod/blocks.php:96 msgid "View" msgstr "" @@ -4049,31 +4066,39 @@ msgstr "" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/chat.php:18 ../../mod/channel.php:25 +#: ../../mod/chat.php:19 ../../mod/channel.php:25 msgid "You must be logged in to see this page." msgstr "" -#: ../../mod/chat.php:163 +#: ../../mod/chat.php:165 +msgid "Room not found" +msgstr "" + +#: ../../mod/chat.php:175 msgid "Leave Room" msgstr "" -#: ../../mod/chat.php:164 +#: ../../mod/chat.php:176 msgid "I am away right now" msgstr "" -#: ../../mod/chat.php:165 +#: ../../mod/chat.php:177 msgid "I am online" msgstr "" -#: ../../mod/chat.php:189 ../../mod/chat.php:209 +#: ../../mod/chat.php:179 +msgid "Bookmark this room" +msgstr "" + +#: ../../mod/chat.php:203 ../../mod/chat.php:223 msgid "New Chatroom" msgstr "" -#: ../../mod/chat.php:190 +#: ../../mod/chat.php:204 msgid "Chatroom Name" msgstr "" -#: ../../mod/chat.php:205 +#: ../../mod/chat.php:219 #, php-format msgid "%1$s's Chatrooms" msgstr "" @@ -4192,14 +4217,6 @@ msgstr "" msgid "No entries." msgstr "" -#: ../../mod/chatsvc.php:102 -msgid "Away" -msgstr "" - -#: ../../mod/chatsvc.php:106 -msgid "Online" -msgstr "" - #: ../../mod/attach.php:9 msgid "Item not available." msgstr "" @@ -5112,6 +5129,10 @@ msgstr "" msgid "Delete this connection" msgstr "" +#: ../../mod/connedit.php:395 +msgid "Unknown" +msgstr "" + #: ../../mod/connedit.php:405 ../../mod/connedit.php:434 msgid "Approve this connection" msgstr "" @@ -5282,15 +5303,15 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/layouts.php:52 +#: ../../mod/layouts.php:45 msgid "Layout Help" msgstr "" -#: ../../mod/layouts.php:55 +#: ../../mod/layouts.php:48 msgid "Help with this feature" msgstr "" -#: ../../mod/layouts.php:74 +#: ../../mod/layouts.php:69 msgid "Layout Name" msgstr "" @@ -5298,11 +5319,11 @@ msgstr "" msgid "Help:" msgstr "" -#: ../../mod/help.php:68 ../../index.php:223 +#: ../../mod/help.php:69 ../../index.php:223 msgid "Not Found" msgstr "" -#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100 +#: ../../mod/help.php:72 ../../mod/page.php:83 ../../mod/display.php:100 #: ../../index.php:226 msgid "Page not found." msgstr "" @@ -5619,7 +5640,7 @@ msgid "" "logout and retry." msgstr "" -#: ../../mod/post.php:256 ../../mod/openid.php:70 ../../mod/openid.php:175 +#: ../../mod/post.php:256 ../../mod/openid.php:71 ../../mod/openid.php:176 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "" @@ -6219,6 +6240,26 @@ msgstr "" msgid "Reset" 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 +msgid "Description" +msgstr "" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "" + #: ../../mod/import.php:36 msgid "Nothing to import." msgstr "" @@ -6353,6 +6394,14 @@ msgstr "" msgid "invalid target signature" msgstr "" +#: ../../mod/chatsvc.php:102 +msgid "Away" +msgstr "" + +#: ../../mod/chatsvc.php:106 +msgid "Online" +msgstr "" + #: ../../mod/mail.php:33 msgid "Unable to lookup recipient." msgstr "" @@ -7070,109 +7119,113 @@ msgstr "" msgid "posted an event" msgstr "" -#: ../../view/theme/redbasic/php/config.php:76 +#: ../../view/theme/redbasic/php/config.php:78 msgid "Scheme Default" msgstr "" -#: ../../view/theme/redbasic/php/config.php:87 +#: ../../view/theme/redbasic/php/config.php:89 msgid "silver" msgstr "" -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../view/theme/apw/php/config.php:234 +#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/apw/php/config.php:250 #: ../../view/theme/blogga/view/theme/blog/config.php:69 #: ../../view/theme/blogga/php/config.php:69 msgid "Theme settings" msgstr "" -#: ../../view/theme/redbasic/php/config.php:99 -#: ../../view/theme/apw/php/config.php:235 +#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/apw/php/config.php:251 msgid "Set scheme" msgstr "" -#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Narrow navbar" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:103 msgid "Navigation bar colour" msgstr "" -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:104 msgid "link colour" msgstr "" -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Set font-colour for banner" msgstr "" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Set the background colour" msgstr "" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Set the background image" msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Set the background colour of items" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Set the opacity of items" msgstr "" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Set the basic colour for item icons" msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Set the hover colour for item icons" msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Set font-size for the entire application" msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 -#: ../../view/theme/apw/php/config.php:236 +#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/apw/php/config.php:252 msgid "Set font-size for posts and comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set font-colour for posts and comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Set radius of corners" msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Set shadow depth of photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Set maximum width of conversation regions" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Set minimum opacity of nav bar - to hide it" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Set size of conversation author photo" msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:120 msgid "Set size of followup author photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Sloppy photo albums" msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Are you a clean desk or a messy desk person?" msgstr "" #: ../../view/theme/apw/php/config.php:193 -#: ../../view/theme/apw/php/config.php:211 +#: ../../view/theme/apw/php/config.php:227 msgid "Schema Default" msgstr "" @@ -7184,115 +7237,115 @@ msgstr "" msgid "Monospace" msgstr "" -#: ../../view/theme/apw/php/config.php:237 +#: ../../view/theme/apw/php/config.php:253 msgid "Set font face" msgstr "" -#: ../../view/theme/apw/php/config.php:238 +#: ../../view/theme/apw/php/config.php:254 msgid "Set iconset" msgstr "" -#: ../../view/theme/apw/php/config.php:239 +#: ../../view/theme/apw/php/config.php:255 msgid "Set big shadow size, default 15px 15px 15px" msgstr "" -#: ../../view/theme/apw/php/config.php:240 +#: ../../view/theme/apw/php/config.php:256 msgid "Set small shadow size, default 5px 5px 5px" msgstr "" -#: ../../view/theme/apw/php/config.php:241 +#: ../../view/theme/apw/php/config.php:257 msgid "Set shadow colour, default #000" msgstr "" -#: ../../view/theme/apw/php/config.php:242 +#: ../../view/theme/apw/php/config.php:258 msgid "Set radius size, default 5px" msgstr "" -#: ../../view/theme/apw/php/config.php:243 +#: ../../view/theme/apw/php/config.php:259 msgid "Set line-height for posts and comments" msgstr "" -#: ../../view/theme/apw/php/config.php:244 +#: ../../view/theme/apw/php/config.php:260 msgid "Set background image" msgstr "" -#: ../../view/theme/apw/php/config.php:245 +#: ../../view/theme/apw/php/config.php:261 msgid "Set background colour" msgstr "" -#: ../../view/theme/apw/php/config.php:246 +#: ../../view/theme/apw/php/config.php:262 msgid "Set section background image" msgstr "" -#: ../../view/theme/apw/php/config.php:247 +#: ../../view/theme/apw/php/config.php:263 msgid "Set section background colour" msgstr "" -#: ../../view/theme/apw/php/config.php:248 +#: ../../view/theme/apw/php/config.php:264 msgid "Set colour of items - use hex" msgstr "" -#: ../../view/theme/apw/php/config.php:249 +#: ../../view/theme/apw/php/config.php:265 msgid "Set colour of links - use hex" msgstr "" -#: ../../view/theme/apw/php/config.php:250 +#: ../../view/theme/apw/php/config.php:266 msgid "Set max-width for items. Default 400px" msgstr "" -#: ../../view/theme/apw/php/config.php:251 +#: ../../view/theme/apw/php/config.php:267 msgid "Set min-width for items. Default 240px" msgstr "" -#: ../../view/theme/apw/php/config.php:252 +#: ../../view/theme/apw/php/config.php:268 msgid "Set the generic content wrapper width. Default 48%" msgstr "" -#: ../../view/theme/apw/php/config.php:253 +#: ../../view/theme/apw/php/config.php:269 msgid "Set colour of fonts - use hex" msgstr "" -#: ../../view/theme/apw/php/config.php:254 +#: ../../view/theme/apw/php/config.php:270 msgid "Set background-size element" msgstr "" -#: ../../view/theme/apw/php/config.php:255 +#: ../../view/theme/apw/php/config.php:271 msgid "Item opacity" msgstr "" -#: ../../view/theme/apw/php/config.php:256 +#: ../../view/theme/apw/php/config.php:272 msgid "Display post previews only" msgstr "" -#: ../../view/theme/apw/php/config.php:257 +#: ../../view/theme/apw/php/config.php:273 msgid "Display side bar on channel page" msgstr "" -#: ../../view/theme/apw/php/config.php:258 +#: ../../view/theme/apw/php/config.php:274 msgid "Colour of the navigation bar" msgstr "" -#: ../../view/theme/apw/php/config.php:259 +#: ../../view/theme/apw/php/config.php:275 msgid "Item float" msgstr "" -#: ../../view/theme/apw/php/config.php:260 +#: ../../view/theme/apw/php/config.php:276 msgid "Left offset of the section element" msgstr "" -#: ../../view/theme/apw/php/config.php:261 +#: ../../view/theme/apw/php/config.php:277 msgid "Right offset of the section element" msgstr "" -#: ../../view/theme/apw/php/config.php:262 +#: ../../view/theme/apw/php/config.php:278 msgid "Section width" msgstr "" -#: ../../view/theme/apw/php/config.php:263 +#: ../../view/theme/apw/php/config.php:279 msgid "Left offset of the aside" msgstr "" -#: ../../view/theme/apw/php/config.php:264 +#: ../../view/theme/apw/php/config.php:280 msgid "Right offset of the aside element" msgstr "" @@ -7346,6 +7399,6 @@ msgstr "" msgid "Got Zot?" msgstr "" -#: ../../boot.php:1906 +#: ../../boot.php:1920 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index cc429ef06..e1a04d750 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-02-27.601 +2014-02-28.602 -- cgit v1.2.3 From 096cc726b73bc9b41cb0353a3144f7992e787863 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 28 Feb 2014 01:30:05 -0800 Subject: dang - you really have to bludgeon this thing to get youtube to use https --- include/oembed.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/include/oembed.php b/include/oembed.php index f9e9012d0..57631b051 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -14,6 +14,10 @@ function oembed_fetch_url($embedurl){ $txt = Cache::get($a->videowidth . $embedurl); + if(strstr($txt,'youtu')) { + $txt = str_replace('http:','https:',$txt); + } + // These media files should now be caught in bbcode.php // left here as a fallback in case this is called from another source @@ -99,8 +103,13 @@ function oembed_format_object($j){ $th=120; $tw = $th*$tr; $tpl=get_markup_template('oembed_video.tpl'); - if(strstr($embedurl,'youtu')) + if(strstr($embedurl,'youtu')) { $embedurl = str_replace('http:','https:',$embedurl); + $j->thumbnail_url = str_replace('http:','https:', $j->thumbnail_url); + $jhtml = str_replace('http:','https:', $jhtml); + $j->html = str_replace('http:','https:', $j->html); + + } $ret.=replace_macros($tpl, array( '$baseurl' => $a->get_baseurl(), '$embedurl'=>$embedurl, -- cgit v1.2.3 From 2d487f306dde34651d42e2b73f3ca9962a5dfb1f Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 28 Feb 2014 01:31:08 -0800 Subject: more doc --- doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html | 112 +++++++++++++++ doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js | 4 + doc/html/functions_8php.html | 137 ++++++++++++++++++ doc/html/functions_8php.js | 4 + doc/html/mod__chanview_8php.html | 112 +++++++++++++++ doc/html/rbmark_8php.html | 159 +++++++++++++++++++++ doc/html/rbmark_8php.js | 5 + doc/html/theme_2apw_2php_2theme__init_8php.html | 134 +++++++++++++++++ doc/html/theme_2apw_2php_2theme__init_8php.js | 4 + 9 files changed, 671 insertions(+) create mode 100644 doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html create mode 100644 doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js create mode 100644 doc/html/functions_8php.html create mode 100644 doc/html/functions_8php.js create mode 100644 doc/html/mod__chanview_8php.html create mode 100644 doc/html/rbmark_8php.html create mode 100644 doc/html/rbmark_8php.js create mode 100644 doc/html/theme_2apw_2php_2theme__init_8php.html create mode 100644 doc/html/theme_2apw_2php_2theme__init_8php.js diff --git a/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html b/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html new file mode 100644 index 000000000..9f4fc228c --- /dev/null +++ b/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/apw/css Directory Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    css Directory Reference
    +
    +
    + + + + +

    +Files

    file  mod_chanview.php
     
    +
    +
    + diff --git a/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js b/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js new file mode 100644 index 000000000..b453d057e --- /dev/null +++ b/doc/html/dir_f19da925ee886ec38f19b0e8c19779bc.js @@ -0,0 +1,4 @@ +var dir_f19da925ee886ec38f19b0e8c19779bc = +[ + [ "mod_chanview.php", "mod__chanview_8php.html", null ] +]; \ No newline at end of file diff --git a/doc/html/functions_8php.html b/doc/html/functions_8php.html new file mode 100644 index 000000000..38152d89b --- /dev/null +++ b/doc/html/functions_8php.html @@ -0,0 +1,137 @@ + + + + + + +The Red Matrix: view/theme/apw/php/functions.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    functions.php File Reference
    +
    +
    + + + + +

    +Functions

     splitFilename ($filename)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    splitFilename ( $filename)
    +
    + +
    +
    +
    +
    + diff --git a/doc/html/functions_8php.js b/doc/html/functions_8php.js new file mode 100644 index 000000000..d8761014d --- /dev/null +++ b/doc/html/functions_8php.js @@ -0,0 +1,4 @@ +var functions_8php = +[ + [ "splitFilename", "functions_8php.html#adefe514c95680928b3aae250cbc3c663", null ] +]; \ No newline at end of file diff --git a/doc/html/mod__chanview_8php.html b/doc/html/mod__chanview_8php.html new file mode 100644 index 000000000..112b8b61b --- /dev/null +++ b/doc/html/mod__chanview_8php.html @@ -0,0 +1,112 @@ + + + + + + +The Red Matrix: view/theme/apw/css/mod_chanview.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    +
    +
    mod_chanview.php File Reference
    +
    +
    +
    +
    + diff --git a/doc/html/rbmark_8php.html b/doc/html/rbmark_8php.html new file mode 100644 index 000000000..a0fd5d3da --- /dev/null +++ b/doc/html/rbmark_8php.html @@ -0,0 +1,159 @@ + + + + + + +The Red Matrix: mod/rbmark.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    rbmark.php File Reference
    +
    +
    + + + + + + +

    +Functions

     rbmark_post (&$a)
     
     rbmark_content (&$a)
     
    +

    Function Documentation

    + +
    +
    + + + + + + + + +
    rbmark_content ($a)
    +
    + +
    +
    + +
    +
    + + + + + + + + +
    rbmark_post ($a)
    +
    +

    remote bookmark

    +

    https://yoursite/rbmark?f=&title=&url=&private=&remote_return=

    +

    This can be called via either GET or POST, use POST for long body content as suhosin often limits GET parameter length

    +

    f= placeholder, often required title= link text url= URL to bookmark ischat=1 if this bookmark is a chatroom private= Don't share this link remote_return= absolute URL to return after posting is finished

    + +
    +
    +
    +
    + diff --git a/doc/html/rbmark_8php.js b/doc/html/rbmark_8php.js new file mode 100644 index 000000000..6e2671ea5 --- /dev/null +++ b/doc/html/rbmark_8php.js @@ -0,0 +1,5 @@ +var rbmark_8php = +[ + [ "rbmark_content", "rbmark_8php.html#a43fec4960b50926251574762cc491f76", null ], + [ "rbmark_post", "rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c", null ] +]; \ No newline at end of file diff --git a/doc/html/theme_2apw_2php_2theme__init_8php.html b/doc/html/theme_2apw_2php_2theme__init_8php.html new file mode 100644 index 000000000..9bfbbacb8 --- /dev/null +++ b/doc/html/theme_2apw_2php_2theme__init_8php.html @@ -0,0 +1,134 @@ + + + + + + +The Red Matrix: view/theme/apw/php/theme_init.php File Reference + + + + + + + + + + + + + +
    +
    + + + + + + + +
    +
    The Red Matrix +
    +
    +
    + + + + + +
    +
    + +
    +
    +
    + +
    + + + + +
    + +
    + +
    + +
    +
    theme_init.php File Reference
    +
    +
    + + + + +

    +Variables

     $channel = get_app()->get_channel()
     
    +

    Variable Documentation

    + +
    +
    + + + + +
    $channel = get_app()->get_channel()
    +
    +

    Those who require this feature will know what to do with it. Those who don't, won't. Eventually this functionality needs to be provided by a module such that permissions can be enforced. At the moment it's more of a proof of concept; but sufficient for our immediate needs.

    + +
    +
    +
    +
    + diff --git a/doc/html/theme_2apw_2php_2theme__init_8php.js b/doc/html/theme_2apw_2php_2theme__init_8php.js new file mode 100644 index 000000000..b15dd05db --- /dev/null +++ b/doc/html/theme_2apw_2php_2theme__init_8php.js @@ -0,0 +1,4 @@ +var theme_2apw_2php_2theme__init_8php = +[ + [ "$channel", "theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864", null ] +]; \ No newline at end of file -- cgit v1.2.3 From ed1e975fafb165f8914ad75c46546fb6697882b1 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 28 Feb 2014 01:53:39 -0800 Subject: It's no longer simply "Red" and the jury is still out on whether or not it's a "project". Most of the time it doesn't seem like one or act like one. It doesn't seem to be anything cohesive that you can put your finger on and everybody involved is mostly doing their own thing and marching to their own drummer. It is however the RedMatrix, whatever that means to you. --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index c9156d67e..f85b21913 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2010-2014 the Red Project +Copyright (c) 2010-2014 RedMatrix All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy -- cgit v1.2.3 From 8ae986b9c6104778efb05ce400a89e64300c8b3e Mon Sep 17 00:00:00 2001 From: zottel Date: Fri, 28 Feb 2014 14:00:50 +0100 Subject: correct bbcode link in German docs --- doc/de/main.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/de/main.bb b/doc/de/main.bb index e94b2b781..e6fa0eee0 100644 --- a/doc/de/main.bb +++ b/doc/de/main.bb @@ -20,7 +20,7 @@ [zrl=[baseurl]/help/tags_and_mentions]Tags and Mentions[/zrl] [zrl=[baseurl]/help/webpages]Web Pages[/zrl] [zrl=[baseurl]/help/remove_account]Remove Account[/zrl] -[zrl=[baseurl]/help/extra_features]BBcode reference for posts and comments[/zrl] +[zrl=[baseurl]/help/bbcode]BBcode reference for posts and comments[/zrl] [zrl=[baseurl]/help/checking_account_quota_usage]Checking Account Quota Usage[/zrl] [zrl=[baseurl]/help/cloud_desktop_clients]Cloud Desktop Clients[/zrl] -- cgit v1.2.3 From b390336016cb7b0d60251efd719bbecf635c1945 Mon Sep 17 00:00:00 2001 From: marijus Date: Fri, 28 Feb 2014 23:04:38 +0100 Subject: add hover effect to usermenu caret --- view/css/bootstrap-red.css | 6 ++++++ view/css/conversation.css | 1 - view/theme/redbasic/css/style.css | 11 ++++++++--- view/tpl/nav.tpl | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 45cf76fb6..606e47838 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -110,3 +110,9 @@ nav .navbar-collapse { } /* nav overrides end */ + +.dropdown-menu img { + width: 32px; + height: 32px; + margin-right: 5px; +} diff --git a/view/css/conversation.css b/view/css/conversation.css index 3396863e7..325303559 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -306,7 +306,6 @@ .like-rotator { float: left; margin: 8px; - color: $toolicon_colour; } .wall-item-delete-wrapper { diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 2efe79dcc..c410c61bc 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2210,6 +2210,14 @@ nav .dropdown-menu { border-bottom-left-radius: $radiuspx; } +#usermenu-caret { + color: #999; +} + +#avatar:hover + #usermenu-caret { + color: #fff; +} + /* bootstrap overrides */ blockquote { font-size: $body_font_size; @@ -2221,8 +2229,5 @@ blockquote { } .dropdown-menu img { - width: 32px; - height: 32px; - margin-right: 5px; border-radius: $radiuspx; } diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index 20600ccd7..7d2ce1b7a 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -12,7 +12,7 @@ {{if $userinfo}} - {{$userinfo.name}} + {{$userinfo.name}} {{if $localuser}}