diff --git a/boot.php b/boot.php index ddbca2fb2..567242d90 100644 --- a/boot.php +++ b/boot.php @@ -455,455 +455,450 @@ function startup() { */ - class App { +class App { - public $account = null; // account record - public $channel = null; // channel record - public $observer = null; // xchan record + public $account = null; // account record + public $channel = null; // channel record + public $observer = null; // xchan record - private $perms = null; // observer permissions - private $widgets = array(); // widgets for this page - private $widgetlist = null; // widget ordering and inclusion directives + private $perms = null; // observer permissions + private $widgets = array(); // widgets for this page + private $widgetlist = null; // widget ordering and inclusion directives - public $groups; - public $language; - public $module_loaded = false; - public $query_string; - public $config; // config cache - public $page; - public $profile; - public $user; - public $cid; - public $contact; - public $contacts; - public $content; - public $data = array(); - public $error = false; - public $cmd; - public $argv; - public $argc; - public $module; - public $pager; - public $strings; - public $hooks; - public $timezone; - public $interactive = true; - public $plugins; - private $apps = array(); - public $identities; - public $css_sources = array(); - public $js_sources = array(); - public $theme_info = array(); + public $groups; + public $language; + public $module_loaded = false; + public $query_string; + public $config; // config cache + public $page; + public $profile; + public $user; + public $cid; + public $contact; + public $contacts; + public $content; + public $data = array(); + public $error = false; + public $cmd; + public $argv; + public $argc; + public $module; + public $pager; + public $strings; + public $hooks; + public $timezone; + public $interactive = true; + public $plugins; + private $apps = array(); + public $identities; + public $css_sources = array(); + public $js_sources = array(); + public $theme_info = array(); - public $nav_sel; + public $nav_sel; - public $category; + public $category; - // Allow themes to control internal parameters - // by changing App values in theme.php + // Allow themes to control internal parameters + // by changing App values in theme.php - public $sourcename = ''; - public $videowidth = 425; - public $videoheight = 350; - public $force_max_items = 0; - public $theme_thread_allow = true; + public $sourcename = ''; + public $videowidth = 425; + public $videoheight = 350; + public $force_max_items = 0; + public $theme_thread_allow = true; - // An array for all theme-controllable parameters - // Mostly unimplemented yet. Only options 'template_engine' and - // beyond are used. + // An array for all theme-controllable parameters + // Mostly unimplemented yet. Only options 'template_engine' and + // beyond are used. - private $theme = array( - 'sourcename' => '', - 'videowidth' => 425, - 'videoheight' => 350, - 'force_max_items' => 0, - 'thread_allow' => true, - 'stylesheet' => '', - 'template_engine' => 'internal', - ); + private $theme = array( + 'sourcename' => '', + 'videowidth' => 425, + 'videoheight' => 350, + 'force_max_items' => 0, + 'thread_allow' => true, + 'stylesheet' => '', + 'template_engine' => 'internal', + ); - private $ldelim = array( - 'internal' => '', - 'smarty3' => '{{' - ); - private $rdelim = array( - 'internal' => '', - 'smarty3' => '}}' - ); + private $ldelim = array( + 'internal' => '', + 'smarty3' => '{{' + ); + private $rdelim = array( + 'internal' => '', + 'smarty3' => '}}' + ); - private $scheme; - private $hostname; - private $baseurl; - private $path; + private $scheme; + private $hostname; + private $baseurl; + private $path; + private $db; - private $db; + private $curl_code; + private $curl_headers; - private $curl_code; - private $curl_headers; - - private $cached_profile_image; - private $cached_profile_picdate; + private $cached_profile_image; + private $cached_profile_picdate; - function __construct() { + function __construct() { - global $default_timezone; + global $default_timezone; + $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC'); - $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC'); + date_default_timezone_set($this->timezone); - date_default_timezone_set($this->timezone); + $this->config = array(); + $this->page = array(); + $this->pager= array(); - $this->config = array(); - $this->page = array(); - $this->pager= array(); + $this->query_string = ''; - $this->query_string = ''; - - startup(); + startup(); - $this->scheme = 'http'; - if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS']) - $this->scheme = 'https'; - elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443)) - $this->scheme = 'https'; - - if(x($_SERVER,'SERVER_NAME')) { - $this->hostname = $_SERVER['SERVER_NAME']; - - if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443) - $this->hostname .= ':' . $_SERVER['SERVER_PORT']; - /** - * Figure out if we are running at the top of a domain - * or in a sub-directory and adjust accordingly - */ - - $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\'); - if(isset($path) && strlen($path) && ($path != $this->path)) - $this->path = $path; - } - - set_include_path( - "include/$this->hostname" . PATH_SEPARATOR - . 'include' . PATH_SEPARATOR - . 'library' . PATH_SEPARATOR - . 'library/phpsec' . PATH_SEPARATOR - . 'library/langdet' . PATH_SEPARATOR - . '.' ); - - if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") { - $this->query_string = substr($_SERVER['QUERY_STRING'],2); - // removing trailing / - maybe a nginx problem - if (substr($this->query_string, 0, 1) == "/") - $this->query_string = substr($this->query_string, 1); - } - if(x($_GET,'q')) - $this->cmd = trim($_GET['q'],'/\\'); - - // unix style "homedir" - - if(substr($this->cmd,0,1) === '~') - $this->cmd = 'channel/' . substr($this->cmd,1); - + $this->scheme = 'http'; + if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS']) + $this->scheme = 'https'; + elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443)) + $this->scheme = 'https'; + if(x($_SERVER,'SERVER_NAME')) { + $this->hostname = $_SERVER['SERVER_NAME']; + if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443) + $this->hostname .= ':' . $_SERVER['SERVER_PORT']; /** - * - * Break the URL path into C style argc/argv style arguments for our - * modules. Given "http://example.com/module/arg1/arg2", $this->argc - * will be 3 (integer) and $this->argv will contain: - * [0] => 'module' - * [1] => 'arg1' - * [2] => 'arg2' - * - * - * There will always be one argument. If provided a naked domain - * URL, $this->argv[0] is set to "home". - * + * Figure out if we are running at the top of a domain + * or in a sub-directory and adjust accordingly */ - $this->argv = explode('/',$this->cmd); - $this->argc = count($this->argv); - if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) { - $this->module = str_replace(".", "_", $this->argv[0]); - $this->module = str_replace("-", "_", $this->module); - } - else { - $this->argc = 1; - $this->argv = array('home'); - $this->module = 'home'; - } - - - /** - * See if there is any page number information, and initialise - * pagination - */ - - $this->pager['page'] = ((x($_GET,'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1); - $this->pager['itemspage'] = 50; - $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage']; - if($this->pager['start'] < 0) - $this->pager['start'] = 0; - $this->pager['total'] = 0; - - /** - * Detect mobile devices - */ - - $mobile_detect = new Mobile_Detect(); - $this->is_mobile = $mobile_detect->isMobile(); - $this->is_tablet = $mobile_detect->isTablet(); - - BaseObject::set_app($this); + $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\'); + if(isset($path) && strlen($path) && ($path != $this->path)) + $this->path = $path; } - function get_baseurl($ssl = false) { - $scheme = $this->scheme; + set_include_path( + "include/$this->hostname" . PATH_SEPARATOR + . 'include' . PATH_SEPARATOR + . 'library' . PATH_SEPARATOR + . 'library/phpsec' . PATH_SEPARATOR + . 'library/langdet' . PATH_SEPARATOR + . '.' ); - if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) { - if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL)) - $scheme = 'https'; - - // Basically, we have $ssl = true on any links which can only be seen by a logged in user - // (and also the login link). Anything seen by an outsider will have it turned off. - - if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) { - if($ssl) - $scheme = 'https'; - else - $scheme = 'http'; - } - } - - $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' ); - return $this->baseurl; + if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") { + $this->query_string = substr($_SERVER['QUERY_STRING'],2); + // removing trailing / - maybe a nginx problem + if (substr($this->query_string, 0, 1) == "/") + $this->query_string = substr($this->query_string, 1); } + if(x($_GET,'q')) + $this->cmd = trim($_GET['q'],'/\\'); - function set_baseurl($url) { + // unix style "homedir" - if(is_array($this->config) && array_key_exists('system',$this->config) && - array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) { - $url = $this->config['system']['baseurl']; - } - - $parsed = @parse_url($url); - - $this->baseurl = $url; - - if($parsed) { - $this->scheme = $parsed['scheme']; - - $this->hostname = $parsed['host']; - if(x($parsed,'port')) - $this->hostname .= ':' . $parsed['port']; - if(x($parsed,'path')) - $this->path = trim($parsed['path'],'\\/'); - } - - } - - function get_hostname() { - return $this->hostname; - } - - function set_hostname($h) { - $this->hostname = $h; - } - - function set_path($p) { - $this->path = trim(trim($p),'/'); - } - - function get_path() { - return $this->path; - } - - function set_account($aid) { - $this->account = $aid; - } - - function get_account() { - return $this->account; - } - - function set_channel($channel) { - $this->channel = $channel; - } - - function get_channel() { - return $this->channel; - } + if(substr($this->cmd,0,1) === '~') + $this->cmd = 'channel/' . substr($this->cmd,1); - function set_observer($xchan) { - $this->observer = $xchan; - } - function get_observer() { - return $this->observer; - } - - function set_perms($perms) { - $this->perms = $perms; - } - - function get_perms() { - return $this->perms; - } - - function get_apps() { - return $this->apps; - } - - function set_apps($arr) { - $this->apps = $arr; - } - - function set_groups($g) { - $this->groups = $g; - } - - function get_groups() { - return $this->groups; - } - - /* - * Use a theme or app specific widget ordering list to determine what widgets should be included - * for each module and in what order and optionally what region of the page to place them. - * For example: - * view/wgl/mod_connections.wgl: - * ----------------------------- - * vcard aside - * follow aside - * findpeople rightside - * collections aside + /** * - * If your widgetlist does not include a widget that is destined for the page, it will not be rendered. - * You can also use this to change the order of presentation, as they will be presented in the order you specify. + * Break the URL path into C style argc/argv style arguments for our + * modules. Given "http://example.com/module/arg1/arg2", $this->argc + * will be 3 (integer) and $this->argv will contain: + * [0] => 'module' + * [1] => 'arg1' + * [2] => 'arg2' + * + * + * There will always be one argument. If provided a naked domain + * URL, $this->argv[0] is set to "home". * */ - function set_widget($title,$html, $location = 'aside') { - $widgetlist_file = 'mod_' . $this->module . '.wgl'; - if(! $this->widgetlist) { - if($this->module && (($f = theme_include($widgetlist_file)) !== '')) { - $s = file($f, FILE_IGNORE_NEW_LINES|FILE_SKIP_EMPTY_LINES); - if(is_array($s)) { - foreach($s as $x) { - $this->widgetlist[] = explode(' ', $x); - } - } - } - else { - $this->widgets[] = array('title' => $title, 'html' => $html, 'location' => $location); - } - } - if($this->widgetlist) { - foreach($this->widgetlist as $k => $v) { - if($v[0] && $v[0] === $title) { - $this->widgets[$k] = array('title' => $title, 'html' => $html, 'location' => (($v[1]) ? $v[1] : $location)); - } - } + $this->argv = explode('/',$this->cmd); + $this->argc = count($this->argv); + if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) { + $this->module = str_replace(".", "_", $this->argv[0]); + $this->module = str_replace("-", "_", $this->module); + } + else { + $this->argc = 1; + $this->argv = array('home'); + $this->module = 'home'; + } + + + /** + * See if there is any page number information, and initialise + * pagination + */ + + $this->pager['page'] = ((x($_GET,'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1); + $this->pager['itemspage'] = 50; + $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage']; + if($this->pager['start'] < 0) + $this->pager['start'] = 0; + $this->pager['total'] = 0; + + /** + * Detect mobile devices + */ + + $mobile_detect = new Mobile_Detect(); + $this->is_mobile = $mobile_detect->isMobile(); + $this->is_tablet = $mobile_detect->isTablet(); + + BaseObject::set_app($this); + } + + function get_baseurl($ssl = false) { + $scheme = $this->scheme; + + if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) { + if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL)) + $scheme = 'https'; + + // Basically, we have $ssl = true on any links which can only be seen by a logged in user + // (and also the login link). Anything seen by an outsider will have it turned off. + + if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) { + if($ssl) + $scheme = 'https'; + else + $scheme = 'http'; } } + + $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' ); + return $this->baseurl; + } - function get_widgets($location = '') { - if($location && count($this->widgets)) { - $ret = array(); - foreach($widgets as $w) - if($w['location'] == $location) - $ret[] = $w; - $arr = array('location' => $location, 'widgets' => $ret); - call_hooks('get_widgets', $arr); - return $arr['widgets']; - } + function set_baseurl($url) { - $arr = array('location' => $location, 'widgets' => $this->widgets); - call_hooks('get_widgets', $arr); - return $arr['widgets']; - } - - function set_pager_total($n) { - $this->pager['total'] = intval($n); + if(is_array($this->config) && array_key_exists('system',$this->config) && + array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) { + $url = $this->config['system']['baseurl']; } - function set_pager_itemspage($n) { - $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0); - $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage']; + $parsed = @parse_url($url); + $this->baseurl = $url; + + if($parsed) { + $this->scheme = $parsed['scheme']; + + $this->hostname = $parsed['host']; + if(x($parsed,'port')) + $this->hostname .= ':' . $parsed['port']; + if(x($parsed,'path')) + $this->path = trim($parsed['path'],'\\/'); } - function build_pagehead() { - - $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000); - if($interval < 10000) - $interval = 40000; - - $this->page['title'] = $this->config['system']['sitename']; - - - /* put the head template at the beginning of page['htmlhead'] - * since the code added by the modules frequently depends on it - * being first - */ - $tpl = get_markup_template('head.tpl'); - $this->page['htmlhead'] = replace_macros($tpl, array( - '$baseurl' => $this->get_baseurl(), - '$local_user' => local_user(), - '$generator' => FRIENDICA_PLATFORM . ' ' . FRIENDICA_VERSION, - '$update_interval' => $interval, - '$head_css' => head_get_css(), - '$head_js' => head_get_js(), - '$js_strings' => js_strings() - )) . $this->page['htmlhead']; - } - - function set_curl_code($code) { - $this->curl_code = $code; - } - - function get_curl_code() { - return $this->curl_code; - } - - function set_curl_headers($headers) { - $this->curl_headers = $headers; - } - - function get_curl_headers() { - return $this->curl_headers; - } - - function get_template_engine() { - return $this->theme['template_engine']; - } - - function set_template_engine($engine = 'internal') { - - $this->theme['template_engine'] = 'internal'; - - switch($engine) { - case 'smarty3': - if(is_writable('view/tpl/smarty3/')) - $this->theme['template_engine'] = 'smarty3'; - break; - default: - break; - } - } - - function get_template_ldelim($engine = 'internal') { - return $this->ldelim[$engine]; - } - - function get_template_rdelim($engine = 'internal') { - return $this->rdelim[$engine]; - } - - } + function get_hostname() { + return $this->hostname; + } + + function set_hostname($h) { + $this->hostname = $h; + } + + function set_path($p) { + $this->path = trim(trim($p),'/'); + } + + function get_path() { + return $this->path; + } + + function set_account($aid) { + $this->account = $aid; + } + + function get_account() { + return $this->account; + } + + function set_channel($channel) { + $this->channel = $channel; + } + + function get_channel() { + return $this->channel; + } + + + function set_observer($xchan) { + $this->observer = $xchan; + } + + function get_observer() { + return $this->observer; + } + + function set_perms($perms) { + $this->perms = $perms; + } + + function get_perms() { + return $this->perms; + } + + function get_apps() { + return $this->apps; + } + + function set_apps($arr) { + $this->apps = $arr; + } + + function set_groups($g) { + $this->groups = $g; + } + + function get_groups() { + return $this->groups; + } + + /* + * Use a theme or app specific widget ordering list to determine what widgets should be included + * for each module and in what order and optionally what region of the page to place them. + * For example: + * view/wgl/mod_connections.wgl: + * ----------------------------- + * vcard aside + * follow aside + * findpeople rightside + * collections aside + * + * If your widgetlist does not include a widget that is destined for the page, it will not be rendered. + * You can also use this to change the order of presentation, as they will be presented in the order you specify. + * + */ + + function set_widget($title,$html, $location = 'aside') { + $widgetlist_file = 'mod_' . $this->module . '.wgl'; + if(! $this->widgetlist) { + if($this->module && (($f = theme_include($widgetlist_file)) !== '')) { + $s = file($f, FILE_IGNORE_NEW_LINES|FILE_SKIP_EMPTY_LINES); + if(is_array($s)) { + foreach($s as $x) { + $this->widgetlist[] = explode(' ', $x); + } + } + } + else { + $this->widgets[] = array('title' => $title, 'html' => $html, 'location' => $location); + } + } + if($this->widgetlist) { + foreach($this->widgetlist as $k => $v) { + if($v[0] && $v[0] === $title) { + $this->widgets[$k] = array('title' => $title, 'html' => $html, 'location' => (($v[1]) ?$v[1] : $location)); + } + } + } + } + + function get_widgets($location = '') { + if($location && count($this->widgets)) { + $ret = array(); + foreach($widgets as $w) + if($w['location'] == $location) + $ret[] = $w; + $arr = array('location' => $location, 'widgets' => $ret); + call_hooks('get_widgets', $arr); + return $arr['widgets']; + } + $arr = array('location' => $location, 'widgets' => $this->widgets); + call_hooks('get_widgets', $arr); + return $arr['widgets']; + } + + function set_pager_total($n) { + $this->pager['total'] = intval($n); + } + + function set_pager_itemspage($n) { + $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0); + $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage']; + } + + function build_pagehead() { + + $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000); + if($interval < 10000) + $interval = 40000; + + $this->page['title'] = $this->config['system']['sitename']; + + + /* put the head template at the beginning of page['htmlhead'] + * since the code added by the modules frequently depends on it + * being first + */ + $tpl = get_markup_template('head.tpl'); + $this->page['htmlhead'] = replace_macros($tpl, array( + '$baseurl' => $this->get_baseurl(), + '$local_user' => local_user(), + '$generator' => FRIENDICA_PLATFORM . ' ' . FRIENDICA_VERSION, + '$update_interval' => $interval, + '$head_css' => head_get_css(), + '$head_js' => head_get_js(), + '$js_strings' => js_strings() + )) . $this->page['htmlhead']; + } + + function set_curl_code($code) { + $this->curl_code = $code; + } + + function get_curl_code() { + return $this->curl_code; + } + + function set_curl_headers($headers) { + $this->curl_headers = $headers; + } + + function get_curl_headers() { + return $this->curl_headers; + } + + function get_template_engine() { + return $this->theme['template_engine']; + } + + function set_template_engine($engine = 'internal') { + + $this->theme['template_engine'] = 'internal'; + + switch($engine) { + case 'smarty3': + if(is_writable('view/tpl/smarty3/')) + $this->theme['template_engine'] = 'smarty3'; + break; + default: + break; + } + } + function get_template_ldelim($engine = 'internal') { + return $this->ldelim[$engine]; + } + + function get_template_rdelim($engine = 'internal') { + return $this->rdelim[$engine]; + } + + +} + // retrieve the App structure // useful in functions which require it but don't get it passed to them @@ -953,8 +948,6 @@ function system_unavailable() { } - - function clean_urls() { global $a; // if($a->config['system']['clean_urls']) @@ -994,17 +987,17 @@ function is_ajax() { function check_config(&$a) { - $build = get_config('system','db_version'); - if(! x($build)) - $build = set_config('system','db_version',DB_UPDATE_VERSION); + $build = get_config('system','db_version'); + if(! x($build)) + $build = set_config('system','db_version',DB_UPDATE_VERSION); // $url = get_config('system','baseurl'); - // if the url isn't set or the stored url is radically different - // than the currently visited url, store the current value accordingly. - // "Radically different" ignores common variations such as http vs https - // and www.example.com vs example.com. - // We will only change the url to an ip address if there is no existing setting + // if the url isn't set or the stored url is radically different + // than the currently visited url, store the current value accordingly. + // "Radically different" ignores common variations such as http vs https + // and www.example.com vs example.com. + // We will only change the url to an ip address if there is no existing setting // if(! x($url)) // $url = set_config('system','baseurl',$a->get_baseurl()); @@ -1013,128 +1006,127 @@ function check_config(&$a) { - if($build != DB_UPDATE_VERSION) { - $stored = intval($build); - $current = intval(DB_UPDATE_VERSION); - if(($stored < $current) && file_exists('install/update.php')) { + if($build != DB_UPDATE_VERSION) { + $stored = intval($build); + $current = intval(DB_UPDATE_VERSION); + if(($stored < $current) && file_exists('install/update.php')) { - load_config('database'); + load_config('database'); - // We're reporting a different version than what is currently installed. - // Run any existing update scripts to bring the database up to current. + // We're reporting a different version than what is currently installed. + // Run any existing update scripts to bring the database up to current. - require_once('install/update.php'); + require_once('install/update.php'); - // make sure that boot.php and update.php are the same release, we might be - // updating right this very second and the correct version of the update.php - // file may not be here yet. This can happen on a very busy site. + // make sure that boot.php and update.php are the same release, we might be + // updating right this very second and the correct version of the update.php + // file may not be here yet. This can happen on a very busy site. - if(DB_UPDATE_VERSION == UPDATE_VERSION) { + if(DB_UPDATE_VERSION == UPDATE_VERSION) { - for($x = $stored; $x < $current; $x ++) { - if(function_exists('update_r' . $x)) { + for($x = $stored; $x < $current; $x ++) { + if(function_exists('update_r' . $x)) { - // There could be a lot of processes running or about to run. - // We want exactly one process to run the update command. - // So store the fact that we're taking responsibility - // after first checking to see if somebody else already has. + // There could be a lot of processes running or about to run. + // We want exactly one process to run the update command. + // So store the fact that we're taking responsibility + // after first checking to see if somebody else already has. - // If the update fails or times-out completely you may need to - // delete the config entry to try again. + // If the update fails or times-out completely you may need to + // delete the config entry to try again. - if(get_config('database','update_r' . $x)) - break; - set_config('database','update_r' . $x, '1'); + if(get_config('database','update_r' . $x)) + break; + set_config('database','update_r' . $x, '1'); - // call the specific update + // call the specific update - $func = 'update_r' . $x; - $retval = $func(); - if($retval) { - //send the administrator an e-mail + $func = 'update_r' . $x; + $retval = $func(); + if($retval) { + //send the administrator an e-mail - $email_tpl = get_intltext_template("update_fail_eml.tpl"); - $email_msg = replace_macros($email_tpl, array( - '$sitename' => $a->config['sitename'], - '$siteurl' => $a->get_baseurl(), - '$update' => $x, - '$error' => sprintf( t('Update %s failed. See error logs.'), $x) - )); + $email_tpl = get_intltext_template("update_fail_eml.tpl"); + $email_msg = replace_macros($email_tpl, array( + '$sitename' => $a->config['sitename'], + '$siteurl' => $a->get_baseurl(), + '$update' => $x, + '$error' => sprintf( t('Update %s failed. See error logs.'), $x) + )); - $subject=sprintf(t('Update Error at %s'), $a->get_baseurl()); + $subject=sprintf(t('Update Error at %s'), $a->get_baseurl()); - mail($a->config['admin_email'], $subject, $email_msg, - 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n" - . 'Content-type: text/plain; charset=UTF-8' . "\n" - . 'Content-transfer-encoding: 8bit' ); - //try the logger - logger('CRITICAL: Update Failed: '. $x); - } - else - set_config('database','update_r' . $x, 'success'); - + mail($a->config['admin_email'], $subject, $email_msg, + 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n" + . 'Content-type: text/plain; charset=UTF-8' . "\n" + . 'Content-transfer-encoding: 8bit' ); + //try the logger + logger('CRITICAL: Update Failed: '. $x); } + else + set_config('database','update_r' . $x, 'success'); + } - set_config('system','db_version', DB_UPDATE_VERSION); } + set_config('system','db_version', DB_UPDATE_VERSION); } } - - /** - * - * Synchronise plugins: - * - * $a->config['system']['addon'] contains a comma-separated list of names - * of plugins/addons which are used on this system. - * Go through the database list of already installed addons, and if we have - * an entry, but it isn't in the config list, call the uninstall procedure - * and mark it uninstalled in the database (for now we'll remove it). - * Then go through the config list and if we have a plugin that isn't installed, - * call the install procedure and add it to the database. - * - */ - - $r = q("SELECT * FROM `addon` WHERE `installed` = 1"); - if(count($r)) - $installed = $r; - else - $installed = array(); - - $plugins = get_config('system','addon'); - $plugins_arr = array(); - - if($plugins) - $plugins_arr = explode(',',str_replace(' ', '',$plugins)); - - $a->plugins = $plugins_arr; - - $installed_arr = array(); - - if(count($installed)) { - foreach($installed as $i) { - if(! in_array($i['name'],$plugins_arr)) { - uninstall_plugin($i['name']); - } - else { - $installed_arr[] = $i['name']; - } - } - } - - if(count($plugins_arr)) { - foreach($plugins_arr as $p) { - if(! in_array($p,$installed_arr)) { - install_plugin($p); - } - } - } - - - load_hooks(); - - return; } + /** + * + * Synchronise plugins: + * + * $a->config['system']['addon'] contains a comma-separated list of names + * of plugins/addons which are used on this system. + * Go through the database list of already installed addons, and if we have + * an entry, but it isn't in the config list, call the uninstall procedure + * and mark it uninstalled in the database (for now we'll remove it). + * Then go through the config list and if we have a plugin that isn't installed, + * call the install procedure and add it to the database. + * + */ + + $r = q("SELECT * FROM `addon` WHERE `installed` = 1"); + if(count($r)) + $installed = $r; + else + $installed = array(); + + $plugins = get_config('system','addon'); + $plugins_arr = array(); + + if($plugins) + $plugins_arr = explode(',',str_replace(' ', '',$plugins)); + + $a->plugins = $plugins_arr; + + $installed_arr = array(); + + if(count($installed)) { + foreach($installed as $i) { + if(! in_array($i['name'],$plugins_arr)) { + uninstall_plugin($i['name']); + } + else { + $installed_arr[] = $i['name']; + } + } + } + + if(count($plugins_arr)) { + foreach($plugins_arr as $p) { + if(! in_array($p,$installed_arr)) { + install_plugin($p); + } + } + } + + + load_hooks(); + return; +} + // wrapper for adding a login box. If $register == true provide a registration @@ -1142,77 +1134,77 @@ function check_config(&$a) { // returns the complete html for inserting into the page - function login($register = false, $form_id = 'main-login', $hiddens=false) { - $a = get_app(); - $o = ""; - $reg = false; - $reglink = get_config('system','register_link'); - if(! strlen($reglink)) - $reglink = 'register'; +function login($register = false, $form_id = 'main-login', $hiddens=false) { + $a = get_app(); + $o = ""; + $reg = false; + $reglink = get_config('system','register_link'); + if(! strlen($reglink)) + $reglink = 'register'; - if ($register) { - $reg = array( - 'title' => t('Create a New Account'), - 'desc' => t('Register'), - 'link' => $reglink - ); - } + if ($register) { + $reg = array( + 'title' => t('Create a New Account'), + 'desc' => t('Register'), + 'link' => $reglink + ); + } - $dest_url = $a->get_baseurl(true) . '/' . $a->query_string; + $dest_url = $a->get_baseurl(true) . '/' . $a->query_string; - if(local_user()) { - $tpl = get_markup_template("logout.tpl"); - } - else { - $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"),array( - '$baseurl' => $a->get_baseurl(true) - )); - - $tpl = get_markup_template("login.tpl"); - if(strlen($a->query_string)) - $_SESSION['login_return_url'] = $a->query_string; - } - - - $o .= replace_macros($tpl,array( - - '$dest_url' => $dest_url, - '$logout' => t('Logout'), - '$login' => t('Login'), - '$form_id' => $form_id, - '$lname' => array('username', t('Email') , '', ''), - '$lpassword' => array('password', t('Password'), '', ''), - '$remember' => array('remember', t('Remember me'), '', ''), - '$hiddens' => $hiddens, - - '$register' => $reg, - - '$lostpass' => t('Forgot your password?'), - '$lostlink' => t('Password Reset'), + if(local_user()) { + $tpl = get_markup_template("logout.tpl"); + } + else { + $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"),array( + '$baseurl' => $a->get_baseurl(true) )); - call_hooks('login_hook',$o); - - return $o; + $tpl = get_markup_template("login.tpl"); + if(strlen($a->query_string)) + $_SESSION['login_return_url'] = $a->query_string; } + $o .= replace_macros($tpl,array( + + '$dest_url' => $dest_url, + '$logout' => t('Logout'), + '$login' => t('Login'), + '$form_id' => $form_id, + '$lname' => array('username', t('Email') , '', ''), + '$lpassword' => array('password', t('Password'), '', ''), + '$remember' => array('remember', t('Remember me'), '', ''), + '$hiddens' => $hiddens, + + '$register' => $reg, + + '$lostpass' => t('Forgot your password?'), + '$lostlink' => t('Password Reset'), + )); + + call_hooks('login_hook',$o); + + return $o; +} + + // Used to end the current process, after saving session state. - function killme() { - session_write_close(); - exit; - } +function killme() { + session_write_close(); + exit; +} // redirect to another URL and terminate this process. - function goaway($s) { - header("Location: $s"); - killme(); - } +function goaway($s) { + header("Location: $s"); + killme(); +} function get_account_id() { @@ -1225,51 +1217,51 @@ function get_account_id() { // Returns the entity id of locally logged in user or false. - function local_user() { - if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid'))) - return intval($_SESSION['uid']); - return false; - } +function local_user() { + if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid'))) + return intval($_SESSION['uid']); + return false; +} // Returns contact id of authenticated site visitor or false - function remote_user() { - if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id'))) - return $_SESSION['visitor_id']; - return false; - } +function remote_user() { + if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id'))) + return $_SESSION['visitor_id']; + return false; +} // contents of $s are displayed prominently on the page the next time // a page is loaded. Usually used for errors or alerts. - function notice($s) { - $a = get_app(); - if(! x($_SESSION,'sysmsg')) $_SESSION['sysmsg'] = array(); - if($a->interactive) - $_SESSION['sysmsg'][] = $s; - } +function notice($s) { + $a = get_app(); + if(! x($_SESSION,'sysmsg')) $_SESSION['sysmsg'] = array(); + if($a->interactive) + $_SESSION['sysmsg'][] = $s; +} - function info($s) { - $a = get_app(); - if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array(); - if($a->interactive) - $_SESSION['sysmsg_info'][] = $s; - } +function info($s) { + $a = get_app(); + if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array(); + if($a->interactive) + $_SESSION['sysmsg_info'][] = $s; +} // wrapper around config to limit the text length of an incoming message - function get_max_import_size() { - global $a; - return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 ); - } +function get_max_import_size() { + global $a; + return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 ); +} @@ -1413,123 +1405,123 @@ function profile_create_sidebar(&$a) { - function profile_sidebar($profile, $block = 0) { +function profile_sidebar($profile, $block = 0) { - $a = get_app(); + $a = get_app(); - $observer = $a->get_observer(); + $observer = $a->get_observer(); - $o = ''; - $location = false; - $address = false; - $pdesc = true; - - if((! is_array($profile)) && (! count($profile))) - return $o; - - - $is_owner = (($profile['uid'] == local_user()) ? true : false); - - $profile['picdate'] = urlencode($profile['picdate']); - - call_hooks('profile_sidebar_enter', $profile); - - // don't show connect link to yourself - $connect = (($profile['uid'] != local_user()) ? t('Connect') : False); - - // don't show connect link to authenticated visitors either - - if(remote_user() && count($_SESSION['remote'])) { - foreach($_SESSION['remote'] as $visitor) { - if($visitor['uid'] == $profile['uid']) { - $connect = false; - break; - } - } - } - - - // show edit profile to yourself - if($is_owner) { - - $profile['menu'] = array( - 'chg_photo' => t('Change profile photo'), - 'entries' => array(), - ); - - - if(feature_enabled(local_user(),'multi_profiles')) { - $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles')); - $profile['menu']['cr_new'] = t('Create New Profile'); - } - else - $profile['edit'] = array($a->get_baseurl() . '/profiles/' . $profile['id'], t('Edit Profile'),'',t('Edit Profile')); - - $r = q("SELECT * FROM `profile` WHERE `uid` = %d", - local_user()); - - - if($r) { - foreach($r as $rr) { - $profile['menu']['entries'][] = array( - 'photo' => $rr['thumb'], - 'id' => $rr['id'], - 'alt' => t('Profile Image'), - 'profile_name' => $rr['profile_name'], - 'isdefault' => $rr['is_default'], - 'visible_to_everybody' => t('visible to everybody'), - 'edit_visibility' => t('Edit visibility'), - ); - } - } - } - - if((x($profile,'address') == 1) - || (x($profile,'locality') == 1) - || (x($profile,'region') == 1) - || (x($profile,'postal_code') == 1) - || (x($profile,'country_name') == 1)) - $location = t('Location:'); - - $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False); - $marital = ((x($profile,'marital') == 1) ? t('Status:') : False); - $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False); - - if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) { - $location = $pdesc = $gender = $marital = $homepage = False; - } - - $firstname = ((strpos($profile['name'],' ')) - ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']); - $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname)))); - - if(is_array($observer) - && perm_is_allowed($profile['uid'],$observer['xchan_hash'],'view_contacts')) { - $contact_block = contact_block(); - } - - $tpl = get_markup_template('profile_vcard.tpl'); - - $o .= replace_macros($tpl, array( - '$profile' => $profile, - '$connect' => $connect, - '$location' => $location, - '$gender' => $gender, - '$pdesc' => $pdesc, - '$marital' => $marital, - '$homepage' => $homepage, - '$contact_block' => $contact_block, - )); - - $arr = array('profile' => &$profile, 'entry' => &$o); - - call_hooks('profile_sidebar', $arr); + $o = ''; + $location = false; + $address = false; + $pdesc = true; + if((! is_array($profile)) && (! count($profile))) return $o; + + + $is_owner = (($profile['uid'] == local_user()) ? true : false); + + $profile['picdate'] = urlencode($profile['picdate']); + + call_hooks('profile_sidebar_enter', $profile); + + // don't show connect link to yourself + $connect = (($profile['uid'] != local_user()) ? t('Connect') : False); + + // don't show connect link to authenticated visitors either + + if(remote_user() && count($_SESSION['remote'])) { + foreach($_SESSION['remote'] as $visitor) { + if($visitor['uid'] == $profile['uid']) { + $connect = false; + break; + } + } } -// FIXME + // show edit profile to yourself + if($is_owner) { + + $profile['menu'] = array( + 'chg_photo' => t('Change profile photo'), + 'entries' => array(), + ); + + + if(feature_enabled(local_user(),'multi_profiles')) { + $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles')); + $profile['menu']['cr_new'] = t('Create New Profile'); + } + else + $profile['edit'] = array($a->get_baseurl() . '/profiles/' . $profile['id'], t('Edit Profile'),'',t('Edit Profile')); + + $r = q("SELECT * FROM `profile` WHERE `uid` = %d", + local_user()); + + + if($r) { + foreach($r as $rr) { + $profile['menu']['entries'][] = array( + 'photo' => $rr['thumb'], + 'id' => $rr['id'], + 'alt' => t('Profile Image'), + 'profile_name' => $rr['profile_name'], + 'isdefault' => $rr['is_default'], + 'visible_to_everybody' => t('visible to everybody'), + 'edit_visibility' => t('Edit visibility'), + ); + } + } + } + + if((x($profile,'address') == 1) + || (x($profile,'locality') == 1) + || (x($profile,'region') == 1) + || (x($profile,'postal_code') == 1) + || (x($profile,'country_name') == 1)) + $location = t('Location:'); + + $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False); + $marital = ((x($profile,'marital') == 1) ? t('Status:') : False); + $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False); + + if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) { + $location = $pdesc = $gender = $marital = $homepage = False; + } + + $firstname = ((strpos($profile['name'],' ')) + ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']); + $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname)))); + + if(is_array($observer) + && perm_is_allowed($profile['uid'],$observer['xchan_hash'],'view_contacts')) { + $contact_block = contact_block(); + } + + $tpl = get_markup_template('profile_vcard.tpl'); + + $o .= replace_macros($tpl, array( + '$profile' => $profile, + '$connect' => $connect, + '$location' => $location, + '$gender' => $gender, + '$pdesc' => $pdesc, + '$marital' => $marital, + '$homepage' => $homepage, + '$contact_block' => $contact_block, + )); + + $arr = array('profile' => &$profile, 'entry' => &$o); + + call_hooks('profile_sidebar', $arr); + + return $o; +} + + +// FIXME or remove function get_birthdays() { @@ -1695,104 +1687,104 @@ function profile_create_sidebar(&$a) { */ - function proc_run($cmd){ +function proc_run($cmd){ - $a = get_app(); + $a = get_app(); - $args = func_get_args(); + $args = func_get_args(); - $newargs = array(); - if(! count($args)) - return; + $newargs = array(); + if(! count($args)) + return; - // expand any arrays + // expand any arrays - foreach($args as $arg) { - if(is_array($arg)) { - foreach($arg as $n) { - $newargs[] = $n; - } + foreach($args as $arg) { + if(is_array($arg)) { + foreach($arg as $n) { + $newargs[] = $n; } - else - $newargs[] = $arg; } - - $args = $newargs; - - $arr = array('args' => $args, 'run_cmd' => true); - - call_hooks("proc_run", $arr); - if(! $arr['run_cmd']) - return; - - if(count($args) && $args[0] === 'php') - $args[0] = ((x($a->config,'system')) && (x($a->config['system'],'php_path')) && (strlen($a->config['system']['php_path'])) ? $a->config['system']['php_path'] : 'php'); - for($x = 0; $x < count($args); $x ++) - $args[$x] = escapeshellarg($args[$x]); - - $cmdline = implode($args," "); - if(get_config('system','proc_windows')) - proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo)); else - proc_close(proc_open($cmdline." &",array(),$foo)); + $newargs[] = $arg; } + $args = $newargs; + + $arr = array('args' => $args, 'run_cmd' => true); + + call_hooks("proc_run", $arr); + if(! $arr['run_cmd']) + return; + + if(count($args) && $args[0] === 'php') + $args[0] = ((x($a->config,'system')) && (x($a->config['system'],'php_path')) && (strlen($a->config['system']['php_path'])) ? $a->config['system']['php_path'] : 'php'); + for($x = 0; $x < count($args); $x ++) + $args[$x] = escapeshellarg($args[$x]); + + $cmdline = implode($args," "); + if(get_config('system','proc_windows')) + proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo)); + else + proc_close(proc_open($cmdline." &",array(),$foo)); +} - function current_theme(){ - $app_base_themes = array('redbasic'); + +function current_theme(){ + $app_base_themes = array('redbasic'); - $a = get_app(); + $a = get_app(); // $mobile_detect = new Mobile_Detect(); // $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet(); - $is_mobile = $a->is_mobile || $a->is_tablet; + $is_mobile = $a->is_mobile || $a->is_tablet; - if($is_mobile) { - $system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : ''); - $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme); + if($is_mobile) { + $system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : ''); + $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme); - if($theme_name === '---') { - // user has selected to have the mobile theme be the same as the normal one - $system_theme = ''; - $theme_name = ''; - } + if($theme_name === '---') { + // user has selected to have the mobile theme be the same as the normal one + $system_theme = ''; + $theme_name = ''; } - else { - $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : ''); - $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme); - } - - if($theme_name && - (file_exists('view/theme/' . $theme_name . '/css/style.css') || - file_exists('view/theme/' . $theme_name . '/php/style.php'))) - return($theme_name); - - foreach($app_base_themes as $t) { - if(file_exists('view/theme/' . $t . '/css/style.css')|| - file_exists('view/theme/' . $t . '/php/style.php')) - return($t); - } - - $fallback = array_merge(glob('view/theme/*/css/style.css'),glob('view/theme/*/php/style.php')); - if(count($fallback)) - return (str_replace('view/theme/','', substr($fallback[0],0,-10))); - } + else { + $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : ''); + $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme); + } + + if($theme_name && + (file_exists('view/theme/' . $theme_name . '/css/style.css') || + file_exists('view/theme/' . $theme_name . '/php/style.php'))) + return($theme_name); + + foreach($app_base_themes as $t) { + if(file_exists('view/theme/' . $t . '/css/style.css')|| + file_exists('view/theme/' . $t . '/php/style.php')) + return($t); + } + + $fallback = array_merge(glob('view/theme/*/css/style.css'),glob('view/theme/*/php/style.php')); + if(count($fallback)) + return (str_replace('view/theme/','', substr($fallback[0],0,-10))); + +} -/* +/** * Return full URL to theme which is currently in effect. -* Provide a sane default if nothing is chosen or the specified theme does not exist. -*/ + * Provide a sane default if nothing is chosen or the specified theme does not exist. + */ - function current_theme_url() { - global $a; - $t = current_theme(); - if (file_exists('view/theme/' . $t . '/php/style.php')) - return('view/theme/' . $t . '/php/style.pcss'); - return('view/theme/' . $t . '/css/style.css'); - } +function current_theme_url() { + global $a; + $t = current_theme(); + if (file_exists('view/theme/' . $t . '/php/style.php')) + return('view/theme/' . $t . '/php/style.pcss'); + return('view/theme/' . $t . '/css/style.css'); +} function z_birthday($dob,$tz,$format="Y-m-d H:i:s") { @@ -1815,57 +1807,6 @@ function z_birthday($dob,$tz,$format="Y-m-d H:i:s") { } - - - function feed_birthday($uid,$tz) { - - /** - * - * Determine the next birthday, but only if the birthday is published - * in the default profile. We _could_ also look for a private profile that the - * recipient can see, but somebody could get mad at us if they start getting - * public birthday greetings when they haven't made this info public. - * - * Assuming we are able to publish this info, we are then going to convert - * the start time from the owner's timezone to UTC. - * - * This will potentially solve the problem found with some social networks - * where birthdays are converted to the viewer's timezone and salutations from - * elsewhere in the world show up on the wrong day. We will convert it to the - * viewer's timezone also, but first we are going to convert it from the birthday - * person's timezone to GMT - so the viewer may find the birthday starting at - * 6:00PM the day before, but that will correspond to midnight to the birthday person. - * - */ - - - $birthday = ''; - - if(! strlen($tz)) - $tz = 'UTC'; - - $p = q("SELECT `dob` FROM `profile` WHERE `is_default` = 1 AND `uid` = %d LIMIT 1", - intval($uid) - ); - - if($p && count($p)) { - $tmp_dob = substr($p[0]['dob'],5); - if(intval($tmp_dob)) { - $y = datetime_convert($tz,$tz,'now','Y'); - $bd = $y . '-' . $tmp_dob . ' 00:00'; - $t_dob = strtotime($bd); - $now = strtotime(datetime_convert($tz,$tz,'now')); - if($t_dob < $now) - $bd = $y + 1 . '-' . $tmp_dob . ' 00:00'; - $birthday = datetime_convert($tz,'UTC',$bd,$format); - } - } - - return $birthday; - -} - - function is_site_admin() { $a = get_app(); if((intval($_SESSION['authenticated'])) @@ -1877,90 +1818,90 @@ function is_site_admin() { - function load_contact_links($uid) { +function load_contact_links($uid) { - $a = get_app(); + $a = get_app(); - $ret = array(); + $ret = array(); - if(! $uid || x($a->contacts,'empty')) - return; - - logger('load_contact_links'); - - $r = q("SELECT abook_id, abook_flags, abook_my_perms, abook_their_perms, xchan_hash, xchan_photo_m, xchan_name, xchan_url from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and not (abook_flags & %d) ", - intval($uid), - intval(ABOOK_FLAG_SELF) - ); - if($r) { - foreach($r as $rr){ - $ret[$rr['xchan_hash']] = $rr; - } - } - else - $ret['empty'] = true; - $a->contacts = $ret; + if(! $uid || x($a->contacts,'empty')) return; - } + logger('load_contact_links'); - - function profile_tabs($a, $is_owner=False, $nickname=Null){ - //echo "
"; var_dump($a->user); killme();
-	
-		$channel = $a->get_channel();
-
-		if (is_null($nickname))
-			$nickname  = $channel['channel_address'];
-		
-		if(x($_GET,'tab'))
-			$tab = notags(trim($_GET['tab']));
-	
-		$url = $a->get_baseurl() . '/channel/' . $nickname;
-		$pr  = $a->get_baseurl() . '/profile/' . $nickname;
-
-		$tabs = array(
-			array(
-				'label'=>t('Status'),
-				'url' => $url,
-				'sel' => ((argv(0)=='channel')?'active':''),
-				'title' => t('Status Messages and Posts'),
-				'id' => 'status-tab',
-			),
-			array(
-				'label' => t('Profile'),
-				'url' 	=> $pr,
-				'sel'	=> ((argv(0)=='profile')?'active':''),
-				'title' => t('Profile Details'),
-				'id' => 'profile-tab',
-			),
-			array(
-				'label' => t('Photos'),
-				'url'	=> $a->get_baseurl() . '/photos/' . $nickname,
-				'sel'	=> ((argv(0)=='photos')?'active':''),
-				'title' => t('Photo Albums'),
-				'id' => 'photo-tab',
-			),
-		);
-	
-		if ($is_owner){
-			$tabs[] = array(
-				'label' => t('Events'),
-				'url'	=> $a->get_baseurl() . '/events',
-				'sel' 	=>((argv(0)=='events')?'active':''),
-				'title' => t('Events and Calendar'),
-				'id' => 'events-tab',
-			);
+	$r = q("SELECT abook_id, abook_flags, abook_my_perms, abook_their_perms, xchan_hash, xchan_photo_m, xchan_name, xchan_url from abook left join xchan on abook_xchan = xchan_hash where abook_channel = %d and not (abook_flags & %d) ",
+		intval($uid),
+		intval(ABOOK_FLAG_SELF)
+	);
+	if($r) {
+		foreach($r as $rr){
+			$ret[$rr['xchan_hash']] = $rr;
 		}
-
-
-		$arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
-		call_hooks('profile_tabs', $arr);
-	
-		$tpl = get_markup_template('common_tabs.tpl');
-
-		return replace_macros($tpl,array('$tabs' => $arr['tabs']));
 	}
+	else
+		$ret['empty'] = true;
+	$a->contacts = $ret;
+	return;
+}
+
+
+
+function profile_tabs($a, $is_owner=False, $nickname=Null){
+	//echo "
"; var_dump($a->user); killme();
+	
+	$channel = $a->get_channel();
+
+	if (is_null($nickname))
+		$nickname  = $channel['channel_address'];
+		
+	if(x($_GET,'tab'))
+		$tab = notags(trim($_GET['tab']));
+	
+	$url = $a->get_baseurl() . '/channel/' . $nickname;
+	$pr  = $a->get_baseurl() . '/profile/' . $nickname;
+
+	$tabs = array(
+		array(
+			'label'=>t('Status'),
+			'url' => $url,
+			'sel' => ((argv(0)=='channel')?'active':''),
+			'title' => t('Status Messages and Posts'),
+			'id' => 'status-tab',
+		),
+		array(
+			'label' => t('Profile'),
+			'url' 	=> $pr,
+			'sel'	=> ((argv(0)=='profile')?'active':''),
+			'title' => t('Profile Details'),
+			'id' => 'profile-tab',
+		),
+		array(
+			'label' => t('Photos'),
+			'url'	=> $a->get_baseurl() . '/photos/' . $nickname,
+			'sel'	=> ((argv(0)=='photos')?'active':''),
+			'title' => t('Photo Albums'),
+			'id' => 'photo-tab',
+		),
+	);
+
+	if ($is_owner){
+		$tabs[] = array(
+			'label' => t('Events'),
+			'url'	=> $a->get_baseurl() . '/events',
+			'sel' 	=>((argv(0)=='events')?'active':''),
+			'title' => t('Events and Calendar'),
+			'id' => 'events-tab',
+		);
+	}
+
+
+	$arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
+	call_hooks('profile_tabs', $arr);
+	
+	$tpl = get_markup_template('common_tabs.tpl');
+
+	return replace_macros($tpl,array('$tabs' => $arr['tabs']));
+}
 
 
 function get_my_url() {
@@ -2011,11 +1952,12 @@ function zid($s,$force = false) {
 }
 
 /**
-* returns querystring as string from a mapped array
-*
-* @param params Array 
-* @return string
-*/
+ * returns querystring as string from a mapped array
+ *
+ * @param params Array 
+ * @return string
+ */
+
 function build_querystring($params, $name=null) { 
     $ret = ""; 
     foreach($params as $key=>$val) {
diff --git a/doc/html/BaseObject_8php.html b/doc/html/BaseObject_8php.html
new file mode 100644
index 000000000..3be849e30
--- /dev/null
+++ b/doc/html/BaseObject_8php.html
@@ -0,0 +1,130 @@
+
+
+
+
+
+
+The Red Project: include/BaseObject.php File Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
BaseObject.php File Reference
+
+
+ + + + +

+Classes

class  BaseObject
 
+
+
+ + + + diff --git a/doc/html/Contact_8php.html b/doc/html/Contact_8php.html new file mode 100644 index 000000000..a4aa9f102 --- /dev/null +++ b/doc/html/Contact_8php.html @@ -0,0 +1,488 @@ + + + + + + +The Red Project: include/Contact.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
Contact.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 abook_connections ($channel_id, $sql_conditions= '')
 
 abook_self ($channel_id)
 
 channelx_by_nick ($nick)
 
 channelx_by_hash ($hash)
 
 channelx_by_n ($id)
 
 vcard_from_xchan ($xchan, $observer=null, $mode= '')
 
 abook_toggle_flag ($abook, $flag)
 
 user_remove ($uid)
 
 channel_remove ($channel_id)
 
 remove_all_xchan_resources ($xchan, $channel_id=0)
 
 contact_remove ($channel_id, $abook_id)
 
 terminate_friendship ($user, $self, $contact)
 
if(!function_exists('mark_for_death'))
+if(!function_exists('unmark_for_death'))
+if(!function_exists('contact_photo_menu')) 
random_profile ()
 
 contacts_not_grouped ($uid, $start=0, $count=0)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
abook_connections ( $channel_id,
 $sql_conditions = '' 
)
+
+ +
+
+ +
+
+ + + + + + + + +
abook_self ( $channel_id)
+
+ +

Referenced by photos_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
abook_toggle_flag ( $abook,
 $flag 
)
+
+ +

Referenced by connections_content().

+ +
+
+ +
+
+ + + + + + + + +
channel_remove ( $channel_id)
+
+ +
+
+ +
+
+ + + + + + + + +
channelx_by_hash ( $hash)
+
+ +
+
+ +
+
+ + + + + + + + +
channelx_by_n ( $id)
+
+ +
+
+ +
+
+ + + + + + + + +
channelx_by_nick ( $nick)
+
+ +

Referenced by photos_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
contact_remove ( $channel_id,
 $abook_id 
)
+
+ +

Referenced by connections_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
contacts_not_grouped ( $uid,
 $start = 0,
 $count = 0 
)
+
+ +

Referenced by nogroup_content().

+ +
+
+ +
+
+ + + + + + + +
if (!function_exists('mark_for_death')) if (!function_exists('unmark_for_death')) if (!function_exists('contact_photo_menu')) random_profile ()
+
+ +

Referenced by randprof_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
remove_all_xchan_resources ( $xchan,
 $channel_id = 0 
)
+
+ +

Referenced by post_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
terminate_friendship ( $user,
 $self,
 $contact 
)
+
+ +
+
+ +
+
+ + + + + + + + +
user_remove ( $uid)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
vcard_from_xchan ( $xchan,
 $observer = null,
 $mode = '' 
)
+
+
+
+
+ + + + diff --git a/doc/html/Contact_8php.js b/doc/html/Contact_8php.js new file mode 100644 index 000000000..71e1ab9b5 --- /dev/null +++ b/doc/html/Contact_8php.js @@ -0,0 +1,17 @@ +var Contact_8php = +[ + [ "abook_connections", "Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e", null ], + [ "abook_self", "Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5", null ], + [ "abook_toggle_flag", "Contact_8php.html#a024919623a830e8703ac4f23496dd66c", null ], + [ "channel_remove", "Contact_8php.html#ad46ff6764f12b6d3ab45c49b797f98aa", null ], + [ "channelx_by_hash", "Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258", null ], + [ "channelx_by_n", "Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc", null ], + [ "channelx_by_nick", "Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e", null ], + [ "contact_remove", "Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6", null ], + [ "contacts_not_grouped", "Contact_8php.html#a228fc01f90ae9bfdde4c2ad0772bd7dc", null ], + [ "random_profile", "Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c", null ], + [ "remove_all_xchan_resources", "Contact_8php.html#acc12cda999c88c4d6185cca967c15125", null ], + [ "terminate_friendship", "Contact_8php.html#a38daa1c210b78385307123450ca9a1fc", null ], + [ "user_remove", "Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15", null ], + [ "vcard_from_xchan", "Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960", null ] +]; \ No newline at end of file diff --git a/doc/html/ConversationObject_8php.html b/doc/html/ConversationObject_8php.html new file mode 100644 index 000000000..edaac0cda --- /dev/null +++ b/doc/html/ConversationObject_8php.html @@ -0,0 +1,130 @@ + + + + + + +The Red Project: include/ConversationObject.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
ConversationObject.php File Reference
+
+
+ + + + +

+Classes

class  Conversation
 
+
+
+ + + + diff --git a/doc/html/ItemObject_8php.html b/doc/html/ItemObject_8php.html new file mode 100644 index 000000000..84b4f0ee2 --- /dev/null +++ b/doc/html/ItemObject_8php.html @@ -0,0 +1,130 @@ + + + + + + +The Red Project: include/ItemObject.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
ItemObject.php File Reference
+
+
+ + + + +

+Classes

class  Item
 
+
+
+ + + + diff --git a/doc/html/Photo_8php.html b/doc/html/Photo_8php.html new file mode 100644 index 000000000..da4b93279 --- /dev/null +++ b/doc/html/Photo_8php.html @@ -0,0 +1,243 @@ + + + + + + +The Red Project: include/Photo.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
Photo.php File Reference
+
+
+ + + + +

+Classes

class  Photo
 
+ + + + + + + +

+Functions

 guess_image_type ($filename, $fromcurl=false)
 
 import_profile_photo ($photo, $xchan)
 
 import_channel_photo ($photo, $type, $aid, $uid)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
guess_image_type ( $filename,
 $fromcurl = false 
)
+
+

Guess image mimetype from filename or from Content-Type header

+
    +
  • $filename string Image filename
  • +
  • $fromcurl boolean Check Content-Type header from curl request
  • +
+

Well, this not much better, but at least it comes from the data inside the image, we won't be tricked by a manipulated extension

+ +

Referenced by consume_feed(), import_profile_photo(), local_delivery(), photo_upload(), profile_photo_post(), and scale_external_images().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
import_channel_photo ( $photo,
 $type,
 $aid,
 $uid 
)
+
+ +

Referenced by import_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
import_profile_photo ( $photo,
 $xchan 
)
+
+ +

Referenced by crepair_post(), import_post(), and import_xchan().

+ +
+
+
+
+ + + + diff --git a/doc/html/Photo_8php.js b/doc/html/Photo_8php.js new file mode 100644 index 000000000..6f9e6ec85 --- /dev/null +++ b/doc/html/Photo_8php.js @@ -0,0 +1,7 @@ +var Photo_8php = +[ + [ "Photo", "classPhoto.html", "classPhoto" ], + [ "guess_image_type", "Photo_8php.html#a7273b82b017fd96d29b2c57bab03aea6", null ], + [ "import_channel_photo", "Photo_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a", null ], + [ "import_profile_photo", "Photo_8php.html#a102f3f26f67e0e38f4322a771951c1ca", null ] +]; \ No newline at end of file diff --git a/doc/html/ProtoDriver_8php.html b/doc/html/ProtoDriver_8php.html new file mode 100644 index 000000000..f6889f394 --- /dev/null +++ b/doc/html/ProtoDriver_8php.html @@ -0,0 +1,132 @@ + + + + + + +The Red Project: include/ProtoDriver.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
ProtoDriver.php File Reference
+
+
+ + + + + + +

+Classes

class  ProtoDriver
 
class  ZotDriver
 
+
+
+ + + + diff --git a/doc/html/Scrape_8php.html b/doc/html/Scrape_8php.html new file mode 100644 index 000000000..2932aded9 --- /dev/null +++ b/doc/html/Scrape_8php.html @@ -0,0 +1,181 @@ + + + + + + +The Red Project: include/Scrape.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
Scrape.php File Reference
+
+
+ + + + +

+Functions

 probe_url ($url, $mode=PROBE_NORMAL)
 
+ + + +

+Variables

const PROBE_NORMAL (!function_exists('scrape_feed')) 0
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
probe_url ( $url,
 $mode = PROBE_NORMAL 
)
+
+ +
+
+

Variable Documentation

+ +
+
+ + + + +
const PROBE_NORMAL(!function_exists('scrape_feed')) 0
+
+

Probe a network address to discover what kind of protocols we need to communicate with it.

+

Warning: this function is a bit touchy and there are some subtle dependencies within the logic flow. Edit with care.

+

PROBE_DIASPORA has a bias towards returning Diaspora information while PROBE_NORMAL has a bias towards dfrn/zot - in the case where an address (such as a Friendica address) supports more than one type of network.

+ +

Referenced by probe_url().

+ +
+
+
+
+ + + + diff --git a/doc/html/Scrape_8php.js b/doc/html/Scrape_8php.js new file mode 100644 index 000000000..6bdfb178d --- /dev/null +++ b/doc/html/Scrape_8php.js @@ -0,0 +1,5 @@ +var Scrape_8php = +[ + [ "probe_url", "Scrape_8php.html#a32883beb7dbf311fc9bfa99200a7402c", null ], + [ "PROBE_NORMAL", "Scrape_8php.html#aa6b0bdcf6e8f9d44e699fd94d2207c98", null ] +]; \ No newline at end of file diff --git a/doc/html/__well__known_8php.html b/doc/html/__well__known_8php.html new file mode 100644 index 000000000..40c2c23a1 --- /dev/null +++ b/doc/html/__well__known_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/_well_known.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
_well_known.php File Reference
+
+
+ + + + +

+Functions

 _well_known_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
_well_known_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/__well__known_8php.js b/doc/html/__well__known_8php.js new file mode 100644 index 000000000..47e6777dd --- /dev/null +++ b/doc/html/__well__known_8php.js @@ -0,0 +1,4 @@ +var __well__known_8php = +[ + [ "_well_known_init", "__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0", null ] +]; \ No newline at end of file diff --git a/doc/html/account_8php.html b/doc/html/account_8php.html new file mode 100644 index 000000000..1f4dc362a --- /dev/null +++ b/doc/html/account_8php.html @@ -0,0 +1,338 @@ + + + + + + +The Red Project: include/account.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
account.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

 check_account_email ($email)
 
 check_account_password ($password)
 
 check_account_invite ($invite_code)
 
 check_account_admin ($arr)
 
 account_total ()
 
 create_account ($arr)
 
 send_reg_approval_email ($arr)
 
 send_verification_email ($email, $password)
 
 user_allow ($hash)
 
 user_deny ($hash)
 
+

Function Documentation

+ +
+
+ + + + + + + +
account_total ()
+
+ +

Referenced by create_account().

+ +
+
+ +
+
+ + + + + + + + +
check_account_admin ( $arr)
+
+ +

Referenced by create_account().

+ +
+
+ +
+
+ + + + + + + + +
check_account_email ( $email)
+
+ +

Referenced by create_account(), and register_init().

+ +
+
+ +
+
+ + + + + + + + +
check_account_invite ( $invite_code)
+
+ +

Referenced by create_account(), and register_init().

+ +
+
+ +
+
+ + + + + + + + +
check_account_password ( $password)
+
+ +

Referenced by create_account(), and register_init().

+ +
+
+ +
+
+ + + + + + + + +
create_account ( $arr)
+
+ +

Referenced by register_post().

+ +
+
+ +
+
+ + + + + + + + +
send_reg_approval_email ( $arr)
+
+ +

Referenced by register_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
send_verification_email ( $email,
 $password 
)
+
+ +

Referenced by register_post().

+ +
+
+ +
+
+ + + + + + + + +
user_allow ( $hash)
+
+ +

Referenced by admin_page_users_post(), and regmod_content().

+ +
+
+ +
+
+ + + + + + + + +
user_deny ( $hash)
+
+ +

Referenced by admin_page_users_post(), and regmod_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/account_8php.js b/doc/html/account_8php.js new file mode 100644 index 000000000..2e43e4b46 --- /dev/null +++ b/doc/html/account_8php.js @@ -0,0 +1,13 @@ +var account_8php = +[ + [ "account_total", "account_8php.html#a43e3042b2723d76915a030bac3c668b6", null ], + [ "check_account_admin", "account_8php.html#a917d74aad0baf3e0c4b51cf1051e654f", null ], + [ "check_account_email", "account_8php.html#ae052bd5558847bd38e89c213561a9771", null ], + [ "check_account_invite", "account_8php.html#aaff7720423417a4333697894ffd9ddeb", null ], + [ "check_account_password", "account_8php.html#a144b4891022567668375b58ea61cfff0", null ], + [ "create_account", "account_8php.html#a141fe579c351c78209d425473f978eb5", null ], + [ "send_reg_approval_email", "account_8php.html#a014de2d5d5c9785de5bf547a485822fa", null ], + [ "send_verification_email", "account_8php.html#aa9c29c497c17d8f9344dce8631ad8761", null ], + [ "user_allow", "account_8php.html#ac5c570a2d46446bad4dd2501e9c5a4b1", null ], + [ "user_deny", "account_8php.html#ac1653efba62493b9d87513e1b6c04c83", null ] +]; \ No newline at end of file diff --git a/doc/html/acl_8php.html b/doc/html/acl_8php.html new file mode 100644 index 000000000..cd61e87aa --- /dev/null +++ b/doc/html/acl_8php.html @@ -0,0 +1,167 @@ + + + + + + +The Red Project: mod/acl.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
acl.php File Reference
+
+
+ + + + + + +

+Functions

 acl_init (&$a)
 
 navbar_complete (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
acl_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
navbar_complete ($a)
+
+ +

Referenced by acl_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/acl_8php.js b/doc/html/acl_8php.js new file mode 100644 index 000000000..f4e646edd --- /dev/null +++ b/doc/html/acl_8php.js @@ -0,0 +1,5 @@ +var acl_8php = +[ + [ "acl_init", "acl_8php.html#ac6776dba871806ecdb5d1659bc2eb07a", null ], + [ "navbar_complete", "acl_8php.html#a57dceff370d4a0e7ae673d50fbfda61f", null ] +]; \ No newline at end of file diff --git a/doc/html/acl__selectors_8php.html b/doc/html/acl__selectors_8php.html new file mode 100644 index 000000000..f47e41f3f --- /dev/null +++ b/doc/html/acl__selectors_8php.html @@ -0,0 +1,289 @@ + + + + + + +The Red Project: include/acl_selectors.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
acl_selectors.php File Reference
+
+
+ + + + +

+Namespaces

namespace  acl_selectors
 
+ + + + + + + + + +

+Functions

 group_select ($selname, $selclass, $preselected=false, $size=4)
 
 contact_select ($selname, $selclass, $preselected=false, $size=4, $privmail=false, $celeb=false, $privatenet=false, $tabindex=null)
 
 fixacl (&$item)
 
 populate_acl ($user=null, $celeb=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
contact_select ( $selname,
 $selclass,
 $preselected = false,
 $size = 4,
 $privmail = false,
 $celeb = false,
 $privatenet = false,
 $tabindex = null 
)
+
+ +

Referenced by message_content().

+ +
+
+ +
+
+ + + + + + + + +
fixacl ($item)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
group_select ( $selname,
 $selclass,
 $preselected = false,
 $size = 4 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
populate_acl ( $user = null,
 $celeb = false 
)
+
+
+
+
+ + + + diff --git a/doc/html/acl__selectors_8php.js b/doc/html/acl__selectors_8php.js new file mode 100644 index 000000000..1958789d9 --- /dev/null +++ b/doc/html/acl__selectors_8php.js @@ -0,0 +1,7 @@ +var acl__selectors_8php = +[ + [ "contact_select", "acl__selectors_8php.html#a9476997d2968a5794f3723878ed89c91", null ], + [ "fixacl", "acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e", null ], + [ "group_select", "acl__selectors_8php.html#aa1e3bc344ca2b29f97eb9860216d21a0", null ], + [ "populate_acl", "acl__selectors_8php.html#a51f2ec7a143d5a5b38e35efd5f3d6e2c", null ] +]; \ No newline at end of file diff --git a/doc/html/activities_8php.html b/doc/html/activities_8php.html new file mode 100644 index 000000000..d861b5c60 --- /dev/null +++ b/doc/html/activities_8php.html @@ -0,0 +1,159 @@ + + + + + + +The Red Project: include/activities.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
activities.php File Reference
+
+
+ + + + +

+Functions

 profile_activity ($changed, $value)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
profile_activity ( $changed,
 $value 
)
+
+ +

Referenced by profiles_post().

+ +
+
+
+
+ + + + diff --git a/doc/html/activities_8php.js b/doc/html/activities_8php.js new file mode 100644 index 000000000..73188de88 --- /dev/null +++ b/doc/html/activities_8php.js @@ -0,0 +1,4 @@ +var activities_8php = +[ + [ "profile_activity", "activities_8php.html#a80134e807719b3c54aba971958d2e132", null ] +]; \ No newline at end of file diff --git a/doc/html/admin_8php.html b/doc/html/admin_8php.html new file mode 100644 index 000000000..1f5af7477 --- /dev/null +++ b/doc/html/admin_8php.html @@ -0,0 +1,560 @@ + + + + + + +The Red Project: mod/admin.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
admin.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 admin_post (&$a)
 
 admin_content (&$a)
 
 admin_page_summary (&$a)
 
 admin_page_site_post (&$a)
 
 admin_page_site (&$a)
 
 admin_page_dbsync (&$a)
 
 admin_page_users_post (&$a)
 
 admin_page_users (&$a)
 
 admin_page_plugins (&$a)
 
 toggle_theme (&$themes, $th, &$result)
 
 theme_status ($themes, $th)
 
 rebuild_theme_table ($themes)
 
 admin_page_themes (&$a)
 
 admin_page_logs_post (&$a)
 
 admin_page_logs (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
admin_content ($a)
+
+
Parameters
+ + +
App$a
+
+
+
Returns
string
+

Side bar links

+

Page content

+ +
+
+ +
+
+ + + + + + + + +
admin_page_dbsync ($a)
+
+ +

Referenced by admin_content().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_logs ($a)
+
+
Parameters
+ + +
App$a
+
+
+
Returns
string
+ +

Referenced by admin_content().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_logs_post ($a)
+
+

Logs admin page

+
Parameters
+ + +
App$a
+
+
+ +

Referenced by admin_post().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_plugins ($a)
+
+

Plugins admin page

+
Parameters
+ + +
App$a
+
+
+
Returns
string
+

Single plugin

+

List plugins

+ +

Referenced by admin_content().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_site ($a)
+
+
Parameters
+ + +
App$a
+
+
+
Returns
string
+ +

Referenced by admin_content().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_site_post ($a)
+
+

Admin Site Page

+
Parameters
+ + +
App$a
+
+
+ +

Referenced by admin_post().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_summary ($a)
+
+

Admin Summary Page

+
Parameters
+ + +
App$a
+
+
+
Returns
string
+ +

Referenced by admin_content().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_themes ($a)
+
+

Themes admin page

+
Parameters
+ + +
App$a
+
+
+
Returns
string
+

Single theme

+

List themes

+ +

Referenced by admin_content().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_users ($a)
+
+
Parameters
+ + +
App$a
+
+
+
Returns
string
+ +

Referenced by admin_content().

+ +
+
+ +
+
+ + + + + + + + +
admin_page_users_post ($a)
+
+

Users admin page

+
Parameters
+ + +
App$a
+
+
+ +

Referenced by admin_post().

+ +
+
+ +
+
+ + + + + + + + +
admin_post ($a)
+
+

Friendica admin

+
Parameters
+ + +
App$a
+
+
+ +
+
+ +
+
+ + + + + + + + +
rebuild_theme_table ( $themes)
+
+
Parameters
+ + +
array$themes
+
+
+
Returns
string
+ +

Referenced by admin_page_themes().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
theme_status ( $themes,
 $th 
)
+
+
Parameters
+ + + +
array$themes
string$th
+
+
+
Returns
int
+ +

Referenced by admin_page_themes().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
toggle_theme ($themes,
 $th,
$result 
)
+
+
Parameters
+ + + + +
array$themes
string$th
int$result
+
+
+ +

Referenced by admin_page_themes().

+ +
+
+
+
+ + + + diff --git a/doc/html/admin_8php.js b/doc/html/admin_8php.js new file mode 100644 index 000000000..c3f42aa49 --- /dev/null +++ b/doc/html/admin_8php.js @@ -0,0 +1,18 @@ +var admin_8php = +[ + [ "admin_content", "admin_8php.html#afef415e4011607fbb665610441595015", null ], + [ "admin_page_dbsync", "admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade", null ], + [ "admin_page_logs", "admin_8php.html#a1d1362698af14d209aa3a0fb655551dd", null ], + [ "admin_page_logs_post", "admin_8php.html#a233b7c8c31776b7020532003c6e44e1c", null ], + [ "admin_page_plugins", "admin_8php.html#a54128076986ba80c4a103de3fc3e19a8", null ], + [ "admin_page_site", "admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e", null ], + [ "admin_page_site_post", "admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f", null ], + [ "admin_page_summary", "admin_8php.html#ac6e95b920b5abd030cc522964987087a", null ], + [ "admin_page_themes", "admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb", null ], + [ "admin_page_users", "admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2", null ], + [ "admin_page_users_post", "admin_8php.html#a5a696706a3869800e65fb365214241b7", null ], + [ "admin_post", "admin_8php.html#acf51f5837a7427832144c2bf7308ada3", null ], + [ "rebuild_theme_table", "admin_8php.html#ae46311a3fefc21abc838a26e91789de6", null ], + [ "theme_status", "admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4", null ], + [ "toggle_theme", "admin_8php.html#af81f081851791cd15e49e8ff6722dc27", null ] +]; \ No newline at end of file diff --git a/doc/html/allfriends_8php.html b/doc/html/allfriends_8php.html new file mode 100644 index 000000000..c8eaff331 --- /dev/null +++ b/doc/html/allfriends_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/allfriends.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
allfriends.php File Reference
+
+
+ + + + +

+Functions

 allfriends_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
allfriends_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/allfriends_8php.js b/doc/html/allfriends_8php.js new file mode 100644 index 000000000..906fc42b8 --- /dev/null +++ b/doc/html/allfriends_8php.js @@ -0,0 +1,4 @@ +var allfriends_8php = +[ + [ "allfriends_content", "allfriends_8php.html#aad992ddbb5f20e81c5cf2259718aec83", null ] +]; \ No newline at end of file diff --git a/doc/html/annotated.html b/doc/html/annotated.html new file mode 100644 index 000000000..86ae84b88 --- /dev/null +++ b/doc/html/annotated.html @@ -0,0 +1,146 @@ + + + + + + +The Red Project: Class List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Class List
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+
+
+ + + + diff --git a/doc/html/annotated.js b/doc/html/annotated.js new file mode 100644 index 000000000..f34d25233 --- /dev/null +++ b/doc/html/annotated.js @@ -0,0 +1,22 @@ +var annotated = +[ + [ "acl_selectors", "namespaceacl__selectors.html", null ], + [ "Friendica", "namespaceFriendica.html", null ], + [ "friendica-to-smarty-tpl", "namespacefriendica-to-smarty-tpl.html", null ], + [ "updatetpl", "namespaceupdatetpl.html", null ], + [ "util", "namespaceutil.html", null ], + [ "App", "classApp.html", "classApp" ], + [ "BaseObject", "classBaseObject.html", "classBaseObject" ], + [ "Cache", "classCache.html", null ], + [ "Conversation", "classConversation.html", "classConversation" ], + [ "dba", "classdba.html", "classdba" ], + [ "enotify", "classenotify.html", null ], + [ "FKOAuth1", "classFKOAuth1.html", "classFKOAuth1" ], + [ "FKOAuthDataStore", "classFKOAuthDataStore.html", "classFKOAuthDataStore" ], + [ "FriendicaSmarty", "classFriendicaSmarty.html", "classFriendicaSmarty" ], + [ "Item", "classItem.html", "classItem" ], + [ "Photo", "classPhoto.html", "classPhoto" ], + [ "ProtoDriver", "classProtoDriver.html", "classProtoDriver" ], + [ "Template", "classTemplate.html", "classTemplate" ], + [ "ZotDriver", "classZotDriver.html", "classZotDriver" ] +]; \ No newline at end of file diff --git a/doc/html/apps_8php.html b/doc/html/apps_8php.html new file mode 100644 index 000000000..8a7c0a131 --- /dev/null +++ b/doc/html/apps_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/apps.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
apps.php File Reference
+
+
+ + + + +

+Functions

 apps_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
apps_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/apps_8php.js b/doc/html/apps_8php.js new file mode 100644 index 000000000..a2ca0a3d7 --- /dev/null +++ b/doc/html/apps_8php.js @@ -0,0 +1,4 @@ +var apps_8php = +[ + [ "apps_content", "apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c", null ] +]; \ No newline at end of file diff --git a/doc/html/auth_8php.html b/doc/html/auth_8php.html new file mode 100644 index 000000000..a73733d30 --- /dev/null +++ b/doc/html/auth_8php.html @@ -0,0 +1,230 @@ + + + + + + +The Red Project: include/auth.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
auth.php File Reference
+
+
+ + + + + + + + +

+Functions

 nuke_session ()
 
 account_verify_password ($email, $pass)
 
if((x($_POST,'auth-params'))&&$_POST['auth-params']===
+'login') 
new_cookie ($time)
 
+ + + +

+Variables

if((isset($_SESSION))&&(x($_SESSION,'authenticated'))&&((!(x($_POST,'auth-params')))||($_POST['auth-params']!==
+'login'))) 
else
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
account_verify_password ( $email,
 $pass 
)
+
+

Verify login credentials

+

Returns account record on success, null on failure

+

A plugin indicates successful login by setting 'authenticated' to non-zero value and returning a user record Plugins should never set 'authenticated' except to indicate success - as hooks may be chained and later plugins should not interfere with an earlier one that succeeded.

+ +

Referenced by api_login().

+ +
+
+ +
+
+ + + + + + + + +
if ((x($_POST,'auth-params'))&&$_POST['auth-params']=== 'login') new_cookie ( $time)
+
+ +

Referenced by nuke_session().

+ +
+
+ +
+
+ + + + + + + +
nuke_session ()
+
+ +

Referenced by api_account_logout().

+ +
+
+

Variable Documentation

+ +
+
+ + + + +
if ((isset($_SESSION))&&(x($_SESSION,'authenticated'))&&((!(x($_POST,'auth-params')))||($_POST['auth-params']!== 'login'))) else
+
+Initial value:
{
+
+
if(isset($_SESSION)) {
+ +
}
+
+
if((x($_POST,'password')) && strlen($_POST['password']))
+
$encrypted = hash('whirlpool',trim($_POST['password']))
+
+
+
+
+
+ + + + diff --git a/doc/html/auth_8php.js b/doc/html/auth_8php.js new file mode 100644 index 000000000..f57f00839 --- /dev/null +++ b/doc/html/auth_8php.js @@ -0,0 +1,7 @@ +var auth_8php = +[ + [ "account_verify_password", "auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee", null ], + [ "new_cookie", "auth_8php.html#af8cde2fbf14abc2dd7ffa310400a59e3", null ], + [ "nuke_session", "auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a", null ], + [ "else", "auth_8php.html#a0950af7c2888ca1d4743fe5d0bff9ae5", null ] +]; \ No newline at end of file diff --git a/doc/html/bb2diaspora_8php.html b/doc/html/bb2diaspora_8php.html new file mode 100644 index 000000000..f240b50bd --- /dev/null +++ b/doc/html/bb2diaspora_8php.html @@ -0,0 +1,352 @@ + + + + + + +The Red Project: include/bb2diaspora.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
bb2diaspora.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + +

+Functions

 get_bb_tag_pos ($s, $name, $occurance=1)
 
 bb_tag_preg_replace ($pattern, $replace, $name, $s)
 
 diaspora2bb ($s)
 
 stripdcode_br_cb ($s)
 
 diaspora_ul ($s)
 
 diaspora_ol ($s)
 
 bb2diaspora ($Text, $preserve_nl=false, $fordiaspora=true)
 
 unescape_underscores_in_links ($m)
 
 format_event_diaspora ($ev)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
bb2diaspora ( $Text,
 $preserve_nl = false,
 $fordiaspora = true 
)
+
+

Transform #tags, strip off the [url] and replace spaces with underscore

+ +

Referenced by format_event_diaspora().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
bb_tag_preg_replace ( $pattern,
 $replace,
 $name,
 $s 
)
+
+ +

Referenced by diaspora2bb().

+ +
+
+ +
+
+ + + + + + + + +
diaspora2bb ( $s)
+
+ +
+
+ +
+
+ + + + + + + + +
diaspora_ol ( $s)
+
+ +
+
+ +
+
+ + + + + + + + +
diaspora_ul ( $s)
+
+ +
+
+ +
+
+ + + + + + + + +
format_event_diaspora ( $ev)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
get_bb_tag_pos ( $s,
 $name,
 $occurance = 1 
)
+
+ +

Referenced by bb_tag_preg_replace().

+ +
+
+ +
+
+ + + + + + + + +
stripdcode_br_cb ( $s)
+
+ +
+
+ +
+
+ + + + + + + + +
unescape_underscores_in_links ( $m)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/bb2diaspora_8php.js b/doc/html/bb2diaspora_8php.js new file mode 100644 index 000000000..4b7e4db0f --- /dev/null +++ b/doc/html/bb2diaspora_8php.js @@ -0,0 +1,12 @@ +var bb2diaspora_8php = +[ + [ "bb2diaspora", "bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c", null ], + [ "bb_tag_preg_replace", "bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba", null ], + [ "diaspora2bb", "bb2diaspora_8php.html#a26c09c218413610e62e60754c579f6c6", null ], + [ "diaspora_ol", "bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4", null ], + [ "diaspora_ul", "bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc", null ], + [ "format_event_diaspora", "bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863", null ], + [ "get_bb_tag_pos", "bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2", null ], + [ "stripdcode_br_cb", "bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93", null ], + [ "unescape_underscores_in_links", "bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747", null ] +]; \ No newline at end of file diff --git a/doc/html/bbcode_8php.html b/doc/html/bbcode_8php.html new file mode 100644 index 000000000..85fa6bce7 --- /dev/null +++ b/doc/html/bbcode_8php.html @@ -0,0 +1,256 @@ + + + + + + +The Red Project: include/bbcode.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
bbcode.php File Reference
+
+
+ + + + + + + + + + + + + + +

+Functions

 tryoembed ($match)
 
 bb_spacefy ($st)
 
 bb_unspacefy_and_trim ($st)
 
if(!function_exists('bb_extract_images'))
+if(!function_exists('bb_replace_images')) 
bb_ShareAttributes ($match)
 
 bb_ShareAttributesSimple ($match)
 
 bbcode ($Text, $preserve_nl=false, $tryoembed=true)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
if (!function_exists('bb_extract_images')) if (!function_exists('bb_replace_images')) bb_ShareAttributes ( $match)
+
+ +
+
+ +
+
+ + + + + + + + +
bb_ShareAttributesSimple ( $match)
+
+ +
+
+ +
+
+ + + + + + + + +
bb_spacefy ( $st)
+
+ +
+
+ +
+
+ + + + + + + + +
bb_unspacefy_and_trim ( $st)
+
+ +
+
+ + + +
+
+ + + + + + + + +
tryoembed ( $match)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/bbcode_8php.js b/doc/html/bbcode_8php.js new file mode 100644 index 000000000..9cd2e8919 --- /dev/null +++ b/doc/html/bbcode_8php.js @@ -0,0 +1,9 @@ +var bbcode_8php = +[ + [ "bb_ShareAttributes", "bbcode_8php.html#a52c45273fbb7ce5ec27094f7936856e1", null ], + [ "bb_ShareAttributesSimple", "bbcode_8php.html#a2be26414a367118143cc89e2d58e7377", null ], + [ "bb_spacefy", "bbcode_8php.html#a8911e027907820df3db03b4f76724b50", null ], + [ "bb_unspacefy_and_trim", "bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d", null ], + [ "bbcode", "bbcode_8php.html#a009f61aaf78771737ed0765c8463911b", null ], + [ "tryoembed", "bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7", null ] +]; \ No newline at end of file diff --git a/doc/html/bc_s.png b/doc/html/bc_s.png new file mode 100644 index 000000000..224b29aa9 Binary files /dev/null and b/doc/html/bc_s.png differ diff --git a/doc/html/bdwn.png b/doc/html/bdwn.png new file mode 100644 index 000000000..940a0b950 Binary files /dev/null and b/doc/html/bdwn.png differ diff --git a/doc/html/boot_8php.html b/doc/html/boot_8php.html new file mode 100644 index 000000000..6d2d7041a --- /dev/null +++ b/doc/html/boot_8php.html @@ -0,0 +1,3920 @@ + + + + + + +The Red Project: boot.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
boot.php File Reference
+
+
+ + + + +

+Classes

class  App
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 startup ()
 
 get_app ()
 
 x ($s, $k=NULL)
 
 system_unavailable ()
 
 clean_urls ()
 
 z_path ()
 
 z_root ()
 
 absurl ($path)
 
 is_ajax ()
 
 check_config (&$a)
 
 login ($register=false, $form_id= 'main-login', $hiddens=false)
 
 killme ()
 
 goaway ($s)
 
 get_account_id ()
 
 local_user ()
 
 remote_user ()
 
 notice ($s)
 
 info ($s)
 
 get_max_import_size ()
 
 profile_load (&$a, $nickname, $profile=0)
 
 profile_create_sidebar (&$a)
 
 profile_sidebar ($profile, $block=0)
 
 get_birthdays ()
 
 get_events ()
 
 proc_run ($cmd)
 
 current_theme ()
 
 current_theme_url ()
 
 z_birthday ($dob, $tz, $format="Y-m-d H:i:s")
 
 is_site_admin ()
 
 load_contact_links ($uid)
 
 profile_tabs ($a, $is_owner=False, $nickname=Null)
 
 get_my_url ()
 
 get_my_address ()
 
 zid_init (&$a)
 
 zid ($s, $force=false)
 
 build_querystring ($params, $name=null)
 
 argc ()
 
 argv ($x)
 
 dba_timer ()
 
 get_observer_hash ()
 
 curPageURL ()
 
 construct_page (&$a)
 
 appdirpath ()
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Variables

const FRIENDICA_PLATFORM 'Friendica Red'
 
const FRIENDICA_VERSION trim(file_get_contents('version.inc')) . 'R'
 
const ZOT_REVISION 1
 
const DB_UPDATE_VERSION 1031
 
const EOL '<br />' . "\r\n"
 
const ATOM_TIME 'Y-m-d\TH:i:s\Z'
 
const DIRECTORY_MODE_NORMAL 0x0000
 
const DIRECTORY_MODE_PRIMARY 0x0001
 
const DIRECTORY_MODE_SECONDARY 0x0002
 
const DIRECTORY_MODE_STANDALONE 0x0100
 
const DIRECTORY_REALM 'RED_GLOBAL'
 
const DIRECTORY_FALLBACK_MASTER 'https://zothub.com'
 
const JPEG_QUALITY 100
 
const PNG_QUALITY 8
 
const LANGUAGE_DETECT_MIN_LENGTH 128
 
const LANGUAGE_DETECT_MIN_CONFIDENCE 0.01
 
const MAX_IMAGE_LENGTH -1
 
const DEFAULT_DB_ENGINE 'MyISAM'
 
const SSL_POLICY_NONE 0
 
const SSL_POLICY_FULL 1
 
const SSL_POLICY_SELFSIGN 2
 
const LOGGER_NORMAL 0
 
const LOGGER_TRACE 1
 
const LOGGER_DEBUG 2
 
const LOGGER_DATA 3
 
const LOGGER_ALL 4
 
const REGISTER_CLOSED 0
 
const REGISTER_APPROVE 1
 
const REGISTER_OPEN 2
 
const CONTACT_IS_FOLLOWER 1
 
const CONTACT_IS_SHARING 2
 
const CONTACT_IS_FRIEND 3
 
const UPDATE_SUCCESS 0
 
const UPDATE_FAILED 1
 
const PAGE_NORMAL 0x0000
 
const PAGE_HIDDEN 0x0001
 
const PAGE_AUTOCONNECT 0x0002
 
const PAGE_APPLICATION 0x0004
 
const PAGE_REMOVED 0x8000
 
const NETWORK_DFRN 'dfrn'
 
const NETWORK_ZOT 'zot!'
 
const NETWORK_OSTATUS 'stat'
 
const NETWORK_FEED 'feed'
 
const NETWORK_DIASPORA 'dspr'
 
const NETWORK_MAIL 'mail'
 
const NETWORK_MAIL2 'mai2'
 
const NETWORK_FACEBOOK 'face'
 
const NETWORK_LINKEDIN 'lnkd'
 
const NETWORK_XMPP 'xmpp'
 
const NETWORK_MYSPACE 'mysp'
 
const NETWORK_GPLUS 'goog'
 
const NETWORK_PHANTOM 'unkn'
 
const PERMS_R_STREAM 0x0001
 
const PERMS_R_PROFILE 0x0002
 
const PERMS_R_PHOTOS 0x0004
 
const PERMS_R_ABOOK 0x0008
 
const PERMS_W_STREAM 0x0010
 
const PERMS_W_WALL 0x0020
 
const PERMS_W_TAGWALL 0x0040
 
const PERMS_W_COMMENT 0x0080
 
const PERMS_W_MAIL 0x0100
 
const PERMS_W_PHOTOS 0x0200
 
const PERMS_W_CHAT 0x0400
 
const PERMS_A_DELEGATE 0x0800
 
const PERMS_R_STORAGE 0x1000
 
const PERMS_W_STORAGE 0x2000
 
const PERMS_R_PAGES 0x4000
 
const PERMS_W_PAGES 0x8000
 
const PERMS_PUBLIC 0x0001
 
const PERMS_NETWORK 0x0002
 
const PERMS_SITE 0x0004
 
const PERMS_CONTACTS 0x0008
 
const PERMS_SPECIFIC 0x0080
 
const ABOOK_FLAG_BLOCKED 0x0001
 
const ABOOK_FLAG_IGNORED 0x0002
 
const ABOOK_FLAG_HIDDEN 0x0004
 
const ABOOK_FLAG_ARCHIVED 0x0008
 
const ABOOK_FLAG_PENDING 0x0010
 
const ABOOK_FLAG_SELF 0x0080
 
const MAIL_DELETED 0x0001
 
const MAIL_REPLIED 0x0002
 
const MAIL_ISREPLY 0x0004
 
const MAIL_SEEN 0x0008
 
const ATTACH_FLAG_DIR 0x0001
 
const ATTACH_FLAG_OS 0x0002
 
const MAX_LIKERS 75
 
const ZCURL_TIMEOUT (-1)
 
const NOTIFY_INTRO 0x0001
 
const NOTIFY_CONFIRM 0x0002
 
const NOTIFY_WALL 0x0004
 
const NOTIFY_COMMENT 0x0008
 
const NOTIFY_MAIL 0x0010
 
const NOTIFY_SUGGEST 0x0020
 
const NOTIFY_PROFILE 0x0040
 
const NOTIFY_TAGSELF 0x0080
 
const NOTIFY_TAGSHARE 0x0100
 
const NOTIFY_POKE 0x0200
 
const NOTIFY_SYSTEM 0x8000
 
const HUBLOC_FLAGS_PRIMARY 0x0001
 
const HUBLOC_FLAGS_UNVERIFIED 0x0002
 
const XCHAN_FLAGS_HIDDEN 0x0001
 
const TERM_UNKNOWN 0
 
const TERM_HASHTAG 1
 
const TERM_MENTION 2
 
const TERM_CATEGORY 3
 
const TERM_PCATEGORY 4
 
const TERM_FILE 5
 
const TERM_SAVEDSEARCH 6
 
const TERM_OBJ_POST 1
 
const TERM_OBJ_PHOTO 2
 
const NAMESPACE_ZOT 'http://purl.org/zot'
 
const NAMESPACE_DFRN 'http://purl.org/macgirvin/dfrn/1.0'
 
const NAMESPACE_THREAD 'http://purl.org/syndication/thread/1.0'
 
const NAMESPACE_TOMB 'http://purl.org/atompub/tombstones/1.0'
 
const NAMESPACE_ACTIVITY 'http://activitystrea.ms/spec/1.0/'
 
const NAMESPACE_ACTIVITY_SCHEMA 'http://activitystrea.ms/schema/1.0/'
 
const NAMESPACE_MEDIA 'http://purl.org/syndication/atommedia'
 
const NAMESPACE_SALMON_ME 'http://salmon-protocol.org/ns/magic-env'
 
const NAMESPACE_OSTATUSSUB 'http://ostatus.org/schema/1.0/subscribe'
 
const NAMESPACE_GEORSS 'http://www.georss.org/georss'
 
const NAMESPACE_POCO 'http://portablecontacts.net/spec/1.0'
 
const NAMESPACE_FEED 'http://schemas.google.com/g/2010#updates-from'
 
const NAMESPACE_OSTATUS 'http://ostatus.org/schema/1.0'
 
const NAMESPACE_STATUSNET 'http://status.net/schema/api/1/'
 
const NAMESPACE_ATOM1 'http://www.w3.org/2005/Atom'
 
const ACTIVITY_LIKE NAMESPACE_ACTIVITY_SCHEMA . 'like'
 
const ACTIVITY_DISLIKE NAMESPACE_ZOT . '/activity/dislike'
 
const ACTIVITY_OBJ_HEART NAMESPACE_ZOT . '/activity/heart'
 
const ACTIVITY_FRIEND NAMESPACE_ACTIVITY_SCHEMA . 'make-friend'
 
const ACTIVITY_REQ_FRIEND NAMESPACE_ACTIVITY_SCHEMA . 'request-friend'
 
const ACTIVITY_UNFRIEND NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend'
 
const ACTIVITY_FOLLOW NAMESPACE_ACTIVITY_SCHEMA . 'follow'
 
const ACTIVITY_UNFOLLOW NAMESPACE_ACTIVITY_SCHEMA . 'stop-following'
 
const ACTIVITY_JOIN NAMESPACE_ACTIVITY_SCHEMA . 'join'
 
const ACTIVITY_POST NAMESPACE_ACTIVITY_SCHEMA . 'post'
 
const ACTIVITY_UPDATE NAMESPACE_ACTIVITY_SCHEMA . 'update'
 
const ACTIVITY_TAG NAMESPACE_ACTIVITY_SCHEMA . 'tag'
 
const ACTIVITY_FAVORITE NAMESPACE_ACTIVITY_SCHEMA . 'favorite'
 
const ACTIVITY_POKE NAMESPACE_ZOT . '/activity/poke'
 
const ACTIVITY_MOOD NAMESPACE_ZOT . '/activity/mood'
 
const ACTIVITY_OBJ_COMMENT NAMESPACE_ACTIVITY_SCHEMA . 'comment'
 
const ACTIVITY_OBJ_NOTE NAMESPACE_ACTIVITY_SCHEMA . 'note'
 
const ACTIVITY_OBJ_PERSON NAMESPACE_ACTIVITY_SCHEMA . 'person'
 
const ACTIVITY_OBJ_PHOTO NAMESPACE_ACTIVITY_SCHEMA . 'photo'
 
const ACTIVITY_OBJ_P_PHOTO NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo'
 
const ACTIVITY_OBJ_ALBUM NAMESPACE_ACTIVITY_SCHEMA . 'photo-album'
 
const ACTIVITY_OBJ_EVENT NAMESPACE_ACTIVITY_SCHEMA . 'event'
 
const ACTIVITY_OBJ_GROUP NAMESPACE_ACTIVITY_SCHEMA . 'group'
 
const ACTIVITY_OBJ_TAGTERM NAMESPACE_ZOT . '/activity/tagterm'
 
const ACTIVITY_OBJ_PROFILE NAMESPACE_ZOT . '/activity/profile'
 
const GRAVITY_PARENT 0
 
const GRAVITY_LIKE 3
 
const GRAVITY_COMMENT 6
 
const ACCOUNT_OK 0x0000
 
const ACCOUNT_UNVERIFIED 0x0001
 
const ACCOUNT_BLOCKED 0x0002
 
const ACCOUNT_EXPIRED 0x0004
 
const ACCOUNT_REMOVED 0x0008
 
const ACCOUNT_PENDING 0x0010
 
const ACCOUNT_ROLE_ADMIN 0x1000
 
const ITEM_VISIBLE 0x0000
 
const ITEM_HIDDEN 0x0001
 
const ITEM_BLOCKED 0x0002
 
const ITEM_MODERATED 0x0004
 
const ITEM_SPAM 0x0008
 
const ITEM_DELETED 0x0010
 
const ITEM_UNPUBLISHED 0x0020
 
const ITEM_WEBPAGE 0x0040
 
const ITEM_ORIGIN 0x0001
 
const ITEM_UNSEEN 0x0002
 
const ITEM_STARRED 0x0004
 
const ITEM_UPLINK 0x0008
 
const ITEM_UPLINK_PRV 0x0010
 
const ITEM_WALL 0x0020
 
const ITEM_THREAD_TOP 0x0040
 
const ITEM_NOTSHOWN 0x0080
 
const ITEM_NSFW 0x0100
 
const ITEM_RELAY 0x0200
 
const ITEM_MENTIONSME 0x0400
 
+

Function Documentation

+ +
+
+ + + + + + + + +
absurl ( $path)
+
+ +
+
+ +
+
+ + + + + + + +
appdirpath ()
+
+ +

Referenced by get_capath().

+ +
+
+ + + + + +
+
+ + + + + + + + + + + + + + + + + + +
build_querystring ( $params,
 $name = null 
)
+
+

returns querystring as string from a mapped array

+
Parameters
+ + +
paramsArray
+
+
+
Returns
string
+ +

Referenced by network_init().

+ +
+
+ +
+
+ + + + + + + + +
check_config ($a)
+
+

Synchronise plugins:

+

$a->config['system']['addon'] contains a comma-separated list of names of plugins/addons which are used on this system. Go through the database list of already installed addons, and if we have an entry, but it isn't in the config list, call the uninstall procedure and mark it uninstalled in the database (for now we'll remove it). Then go through the config list and if we have a plugin that isn't installed, call the install procedure and add it to the database.

+ +
+
+ +
+
+ + + + + + + +
clean_urls ()
+
+ +

Referenced by z_path().

+ +
+
+ +
+
+ + + + + + + + +
construct_page ($a)
+
+

Build the page - now that we have all the components

+ +
+
+ +
+
+ + + + + + + +
curPageURL ()
+
+

Returns the complete URL of the current page, e.g.: http(s)://something.com/network

+

Taken from http://webcheatsheet.com/php/get_current_page_url.php

+ +

Referenced by construct_page().

+ +
+
+ +
+
+ + + + + + + +
current_theme ()
+
+
+ +
+
+ + + + + + + +
current_theme_url ()
+
+

Return full URL to theme which is currently in effect. Provide a sane default if nothing is chosen or the specified theme does not exist.

+ +

Referenced by construct_page().

+ +
+
+ +
+
+ + + + + + + +
dba_timer ()
+
+
+ + + +
+
+ + + + + + + +
get_app ()
+
+ +

Referenced by FriendicaSmarty\__construct(), allowed_public_recips(), api_apply_template(), api_format_items(), api_get_user(), api_statuses_home_timeline(), api_statuses_repeat(), api_user(), argc(), argv(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), categories_widget(), change_channel(), channel_remove(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), common_friends_visitor_widget(), connections_content(), consume_feed(), contact_select(), create_identity(), current_theme(), deliver_run(), dfrn_deliver(), drop_item(), event_store(), fetch_url(), fileas_widget(), findpeople_widget(), fix_attached_photo_permissions(), fix_private_photos(), format_event_diaspora(), get_account_id(), get_best_language(), get_birthdays(), get_events(), get_form_security_token(), get_observer_hash(), get_theme_config_file(), get_theme_screenshot(), gprobe_run(), group_select(), guess_image_type(), head_add_css(), head_add_js(), head_get_css(), head_get_js(), import_channel_photo(), import_post(), import_profile_photo(), info(), is_site_admin(), item_permissions_sql(), load_contact_links(), local_delivery(), login(), FKOAuth1\loginUser(), lrdd(), manage_content(), map_scope(), nav_set_selected(), new_contact(), new_follower(), notice(), notification(), notifier_run(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), onepoll_run(), permissions_sql(), ping_init(), poco_load(), poller_run(), post_url(), preg_heart(), probe_url(), proc_run(), profile_activity(), profile_sidebar(), public_permissions_sql(), rmagic_init(), saved_searches(), scale_external_images(), send_message(), send_reg_approval_email(), send_status_notifications(), send_verification_email(), tag_deliver(), terminate_friendship(), tgroup_check(), theme_include(), update_suggestions(), user_allow(), what_next(), z_fetch_url(), and zot_finger().

+ +
+
+ +
+
+ + + + + + + +
get_birthdays ()
+
+ +
+
+ +
+
+ + + + + + + +
get_events ()
+
+ +
+
+ +
+
+ + + + + + + +
get_max_import_size ()
+
+ +
+
+ +
+
+ + + + + + + +
get_my_address ()
+
+ +

Referenced by rmagic_init(), zid(), and zid_init().

+ +
+
+ +
+
+ + + + + + + +
get_my_url ()
+
+ +

Referenced by nav(), and zid().

+ +
+
+ + + + + + + +
+
+ + + + + + + +
is_ajax ()
+
+
+ + + + + +
+
+ + + + + + + + +
load_contact_links ( $uid)
+
+ +

Referenced by api_call().

+ +
+
+ +
+
+ + + + + + + +
local_user ()
+
+ +

Referenced by Item\__construct(), acl_init(), allfriends_content(), api_content(), api_get_user(), api_post(), api_user(), best_link_url(), App\build_pagehead(), change_channel(), channel_content(), channel_init(), channel_remove(), chanview_content(), common_friends_visitor_widget(), community_content(), community_init(), connections_content(), connections_init(), connections_post(), contact_select(), contactgroup_content(), crepair_content(), crepair_init(), crepair_post(), delegate_content(), directory_aside(), directory_content(), display_content(), drop_item(), drop_items(), editpost_content(), events_content(), events_post(), fbrowser_content(), fileas_widget(), filer_content(), filerm_content(), findpeople_widget(), follow_init(), fsuggest_content(), fsuggest_post(), get_birthdays(), Item\get_comment_box(), get_events(), Item\get_template_data(), group_aside(), group_content(), group_get_members(), group_post(), group_select(), group_side(), hcard_init(), intro_content(), intro_post(), invite_content(), invite_post(), item_content(), item_permissions_sql(), item_post(), lockview_content(), login(), login_content(), magic_init(), manage_content(), match_content(), message_content(), message_post(), mood_content(), mood_init(), nav(), network_content(), network_init(), new_contact(), nogroup_content(), nogroup_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(), private_messages_list(), probe_url(), profile_activity(), profile_content(), profile_create_sidebar(), profile_init(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), qsearch_init(), redbasic_form(), redir_init(), regmod_content(), removeme_content(), removeme_post(), rmagic_init(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), service_class_allows(), service_class_fetch(), Conversation\set_mode(), settings_aside(), settings_post(), share_init(), starred_init(), stream_perms_api_uids(), subthread_content(), suggest_content(), suggest_init(), tagger_content(), tagrm_content(), tagrm_post(), theme_content(), theme_post(), uexport_init(), vcard_from_xchan(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), and zid_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
login ( $register = false,
 $form_id = 'main-login',
 $hiddens = false 
)
+
+
+ +
+
+ + + + + + + + +
notice ( $s)
+
+ +

Referenced by admin_content(), admin_page_plugins(), admin_page_themes(), admin_page_users(), admin_page_users_post(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), channel_content(), channel_init(), chanview_content(), check_form_security_token_redirectOnErr(), common_content(), common_init(), community_content(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), display_content(), drop_item(), editpost_content(), events_content(), events_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), like_content(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), message_content(), message_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), register_content(), register_post(), regmod_content(), rmagic_post(), search_content(), settings_post(), suggest_content(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), and xchan_content().

+ +
+
+ +
+
+ + + + + + + + +
proc_run ( $cmd)
+
+

Wrap calls to proc_close(proc_open()) and call hook so plugins can take part in process :)

+

args: $cmd program to run next args are passed as $cmd command line

+

e.g.: proc_run("ls","-la","/tmp");

+

$cmd and string args are surrounded with ""

+ +

Referenced by connections_content(), connections_post(), create_identity(), drop_item(), drop_items(), events_post(), fsuggest_post(), item_expire(), item_post(), like_content(), local_delivery(), mood_init(), notifier_run(), photo_upload(), photos_post(), poke_init(), poller_run(), process_delivery(), profile_activity(), profile_photo_post(), profiles_post(), send_message(), settings_post(), tag_deliver(), tagger_content(), zid_init(), and zot_refresh().

+ +
+
+ +
+
+ + + + + + + + +
profile_create_sidebar ($a)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
profile_load ($a,
 $nickname,
 $profile = 0 
)
+
+

Function : profile_load App $a string $nickname int $profile

+

Summary: Loads a profile into the page sidebar. The function requires a writeable copy of the main App structure, and the nickname of a registered local account.

+

If the viewer is an authenticated remote viewer, the profile displayed is the one that has been configured for his/her viewing in the Contact manager. Passing a non-zero profile ID can also allow a preview of a selected profile by the owner.

+

Profile information is placed in the App structure for later retrieval. Honours the owner's chosen theme for display.

+

load/reload current theme info

+ +

Referenced by channel_init(), common_init(), hcard_init(), profile_init(), profile_photo_init(), profiles_init(), profperm_init(), and viewconnections_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
profile_sidebar ( $profile,
 $block = 0 
)
+
+

Function: profile_sidebar

+

Formats a profile for display in the sidebar. It is very difficult to templatise the HTML completely because of all the conditional logic.

+

: array $profile

+

Returns HTML string stuitable for sidebar inclusion Exceptions: Returns empty string if passed $profile is wrong type or not populated

+ +

Referenced by profile_create_sidebar().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
profile_tabs ( $a,
 $is_owner = False,
 $nickname = Null 
)
+
+
+ + + +
+
+ + + + + + + +
startup ()
+
+

Reverse the effect of magic_quotes_gpc if it is enabled. Please disable magic_quotes_gpc so we don't have to do this. See http://php.net/manual/en/security.magicquotes.disabling.php

+ +

Referenced by App\__construct().

+ +
+
+ +
+
+ + + + + + + +
system_unavailable ()
+
+ +

Referenced by dba\__construct().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
x ( $s,
 $k = NULL 
)
+
+ +

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(), channel_aside(), channel_content(), check_config(), check_form_security_token(), community_content(), connections_aside(), connections_content(), connections_post(), construct_page(), consume_feed(), create_account(), create_identity(), crepair_init(), crepair_post(), current_theme(), del_config(), del_pconfig(), delegate_content(), detect_language(), directory_content(), dirfind_init(), dirsearch_content(), encode_rel_links(), events_content(), events_post(), feed_init(), filerm_content(), get_atom_elements(), App\get_baseurl(), get_item_elements(), get_max_import_size(), get_my_address(), get_my_url(), get_public_feed(), Item\get_template_data(), group_add(), group_rmv(), hcard_init(), import_post(), import_xchan(), info(), intro_content(), invite_post(), item_post(), item_store(), load_contact_links(), local_delivery(), local_user(), lostpass_content(), lrdd(), magic_init(), mail_store(), message_content(), message_post(), mood_content(), mood_init(), nav(), navbar_complete(), network_content(), network_init(), network_query(), network_query_get_sel_tab(), new_channel_content(), nogroup_init(), notice(), notifications_content(), oexchange_content(), parse_url_content(), photo_upload(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), printable(), probe_content(), probe_url(), proc_run(), process_delivery(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_post(), dba\q(), qsearch_init(), redir_init(), register_content(), register_post(), regmod_content(), remote_user(), removeme_post(), saved_searches(), search_ac_init(), search_content(), search_init(), search_post(), service_class_allows(), service_class_fetch(), App\set_baseurl(), settings_post(), setup_content(), setup_init(), siteinfo_init(), suggest_init(), tagrm_post(), validate_channelname(), wall_upload_post(), webfinger_content(), xchan_content(), z_fetch_url(), zfinger_init(), and zperms_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
z_birthday ( $dob,
 $tz,
 $format = "Y-m-d H:i:s" 
)
+
+ +

Referenced by zfinger_init().

+ +
+
+ +
+
+ + + + + + + +
z_path ()
+
+ +

Referenced by absurl(), and hostxrd_init().

+ +
+
+ + + +
+
+ + + + + + + + + + + + + + + + + + +
zid ( $s,
 $force = false 
)
+
+
+ +
+
+ + + + + + + + +
zid_init ($a)
+
+ +
+
+

Variable Documentation

+ +
+
+ + + + +
const ABOOK_FLAG_ARCHIVED 0x0008
+
+ +

Referenced by connections_content(), and poller_run().

+ +
+
+ + + +
+
+ + + + +
const ABOOK_FLAG_HIDDEN 0x0004
+
+
+ +
+
+ + + + +
const ABOOK_FLAG_IGNORED 0x0002
+
+
+ + + + + +
+
+ + + + +
const ACCOUNT_BLOCKED 0x0002
+
+
+ +
+
+ + + + +
const ACCOUNT_EXPIRED 0x0004
+
+ +

Referenced by poller_run().

+ +
+
+ +
+
+ + + + +
const ACCOUNT_OK 0x0000
+
+

Account Flags

+ +

Referenced by account_verify_password(), create_account(), onepoll_run(), and poller_run().

+ +
+
+ +
+
+ + + + +
const ACCOUNT_PENDING 0x0010
+
+
+ +
+
+ + + + +
const ACCOUNT_REMOVED 0x0008
+
+ +
+
+ +
+
+ + + + +
const ACCOUNT_ROLE_ADMIN 0x1000
+
+

Account roles

+ +

Referenced by create_account(), is_site_admin(), and send_reg_approval_email().

+ +
+
+ +
+
+ + + + +
const ACCOUNT_UNVERIFIED 0x0001
+
+
+ + + +
+
+ + + + +
const ACTIVITY_FAVORITE NAMESPACE_ACTIVITY_SCHEMA . 'favorite'
+
+ +
+
+ +
+
+ + + + +
const ACTIVITY_FOLLOW NAMESPACE_ACTIVITY_SCHEMA . 'follow'
+
+ +

Referenced by consume_feed(), and subthread_content().

+ +
+
+ +
+
+ + + + +
const ACTIVITY_FRIEND NAMESPACE_ACTIVITY_SCHEMA . 'make-friend'
+
+ +

Referenced by localize_item(), and notifications_content().

+ +
+
+ +
+
+ + + + +
const ACTIVITY_JOIN NAMESPACE_ACTIVITY_SCHEMA . 'join'
+
+ +
+
+ + + +
+
+ + + + +
const ACTIVITY_MOOD NAMESPACE_ZOT . '/activity/mood'
+
+ +

Referenced by localize_item(), and mood_init().

+ +
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_ALBUM NAMESPACE_ACTIVITY_SCHEMA . 'photo-album'
+
+ +
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_COMMENT NAMESPACE_ACTIVITY_SCHEMA . 'comment'
+
+ +
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_EVENT NAMESPACE_ACTIVITY_SCHEMA . 'event'
+
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_GROUP NAMESPACE_ACTIVITY_SCHEMA . 'group'
+
+ +
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_HEART NAMESPACE_ZOT . '/activity/heart'
+
+ +
+
+ + + +
+
+ + + + +
const ACTIVITY_OBJ_P_PHOTO NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo'
+
+ +
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_PERSON NAMESPACE_ACTIVITY_SCHEMA . 'person'
+
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_PHOTO NAMESPACE_ACTIVITY_SCHEMA . 'photo'
+
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_PROFILE NAMESPACE_ZOT . '/activity/profile'
+
+ +

Referenced by profile_activity().

+ +
+
+ +
+
+ + + + +
const ACTIVITY_OBJ_TAGTERM NAMESPACE_ZOT . '/activity/tagterm'
+
+ +

Referenced by consume_feed(), local_delivery(), and tagger_content().

+ +
+
+ +
+
+ + + + +
const ACTIVITY_POKE NAMESPACE_ZOT . '/activity/poke'
+
+ +

Referenced by local_delivery(), localize_item(), and poke_init().

+ +
+
+ + + +
+
+ + + + +
const ACTIVITY_REQ_FRIEND NAMESPACE_ACTIVITY_SCHEMA . 'request-friend'
+
+ +

Referenced by consume_feed(), and local_delivery().

+ +
+
+ +
+
+ + + + +
const ACTIVITY_TAG NAMESPACE_ACTIVITY_SCHEMA . 'tag'
+
+
+ +
+
+ + + + +
const ACTIVITY_UNFOLLOW NAMESPACE_ACTIVITY_SCHEMA . 'stop-following'
+
+ +

Referenced by consume_feed(), and get_atom_elements().

+ +
+
+ +
+
+ + + + +
const ACTIVITY_UNFRIEND NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend'
+
+ +

Referenced by consume_feed().

+ +
+
+ +
+
+ + + + +
const ACTIVITY_UPDATE NAMESPACE_ACTIVITY_SCHEMA . 'update'
+
+ +

Referenced by profile_activity().

+ +
+
+ +
+
+ + + + +
const ATOM_TIME 'Y-m-d\TH:i:s\Z'
+
+
+ +
+
+ + + + +
const ATTACH_FLAG_DIR 0x0001
+
+ +
+
+ +
+
+ + + + +
const ATTACH_FLAG_OS 0x0002
+
+ +

Referenced by attach_init().

+ +
+
+ +
+
+ + + + +
const CONTACT_IS_FOLLOWER 1
+
+

relationship types

+ +

Referenced by consume_feed(), local_delivery(), lose_sharer(), and new_follower().

+ +
+
+ +
+
+ + + + +
const CONTACT_IS_FRIEND 3
+
+ +

Referenced by lose_follower(), lose_sharer(), and new_follower().

+ +
+
+ +
+
+ + + + +
const CONTACT_IS_SHARING 2
+
+ +

Referenced by dfrn_deliver(), lose_follower(), and new_follower().

+ +
+
+ +
+
+ + + + +
const DB_UPDATE_VERSION 1031
+
+
+ +
+
+ + + + +
const DEFAULT_DB_ENGINE 'MyISAM'
+
+

Not yet used

+ +
+
+ +
+
+ + + + +
const DIRECTORY_FALLBACK_MASTER 'https://zothub.com'
+
+
+ +
+
+ + + + +
const DIRECTORY_MODE_NORMAL 0x0000
+
+
+ +
+
+ + + + +
const DIRECTORY_MODE_PRIMARY 0x0001
+
+
+ +
+
+ + + + +
const DIRECTORY_MODE_SECONDARY 0x0002
+
+ +

Referenced by zfinger_init().

+ +
+
+ +
+
+ + + + +
const DIRECTORY_MODE_STANDALONE 0x0100
+
+
+ +
+
+ + + + +
const DIRECTORY_REALM 'RED_GLOBAL'
+
+ +
+
+ +
+
+ + + + +
const EOL '<br />' . "\r\n"
+
+ +

Referenced by admin_page_dbsync(), admin_page_site_post(), admin_page_users(), allfriends_content(), api_content(), api_post(), apps_content(), attach_init(), authenticate_success(), channel_content(), channel_init(), chanview_content(), check_account_email(), check_account_invite(), check_form_security_std_err_msg(), check_keys(), check_php(), common_content(), common_init(), community_content(), connections_content(), connections_post(), crepair_content(), crepair_post(), delegate_content(), directory_content(), dirfind_content(), display_content(), drop_item(), editpost_content(), events_content(), events_post(), follow_init(), fsuggest_content(), fsuggest_post(), group_add(), group_content(), group_post(), hcard_init(), import_post(), import_xchan(), intro_content(), intro_post(), invite_content(), invite_post(), item_post(), like_content(), load_database(), lostpass_content(), lostpass_post(), magic_init(), manage_content(), match_content(), message_content(), message_post(), mood_content(), network_content(), network_init(), new_channel_content(), new_channel_post(), nogroup_content(), notifications_content(), notifications_post(), oexchange_content(), page_content(), photos_content(), photos_post(), poke_content(), post_init(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), dba\q(), register_content(), register_post(), regmod_content(), search_content(), settings_post(), setup_content(), suggest_content(), tagrm_post(), user_allow(), user_deny(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), and xchan_content().

+ +
+
+ +
+
+ + + + +
const FRIENDICA_PLATFORM 'Friendica Red'
+
+
+ +
+
+ + + + +
const FRIENDICA_VERSION trim(file_get_contents('version.inc')) . 'R'
+
+
+ +
+
+ + + + +
const GRAVITY_COMMENT 6
+
+ +

Referenced by tagger_content().

+ +
+
+ +
+
+ + + + +
const GRAVITY_LIKE 3
+
+
+ +
+
+ + + + +
const GRAVITY_PARENT 0
+
+

item weight for query ordering

+ +
+
+ + + +
+
+ + + + +
const HUBLOC_FLAGS_UNVERIFIED 0x0002
+
+ +

Referenced by zfinger_init(), and zperms_init().

+ +
+
+ +
+
+ + + + +
const ITEM_BLOCKED 0x0002
+
+ +
+
+ +
+
+ + + + +
const ITEM_DELETED 0x0010
+
+
+ +
+
+ + + + +
const ITEM_HIDDEN 0x0001
+
+ +

Referenced by item_post(), photo_upload(), and photos_create_item().

+ +
+
+ +
+
+ + + + +
const ITEM_MENTIONSME 0x0400
+
+ +

Referenced by network_content(), and tag_deliver().

+ +
+
+ +
+
+ + + + +
const ITEM_MODERATED 0x0004
+
+ +

Referenced by item_post().

+ +
+
+ +
+
+ + + + +
const ITEM_NOTSHOWN 0x0080
+
+ +
+
+ +
+
+ + + + +
const ITEM_NSFW 0x0100
+
+ +

Referenced by encode_item_flags().

+ +
+
+ +
+
+ + + + +
const ITEM_ORIGIN 0x0001
+
+
+ +
+
+ + + + +
const ITEM_RELAY 0x0200
+
+ +
+
+ +
+
+ + + + +
const ITEM_SPAM 0x0008
+
+ +
+
+ +
+
+ + + + +
const ITEM_STARRED 0x0004
+
+
+ + + +
+
+ + + + +
const ITEM_UNPUBLISHED 0x0020
+
+ +
+
+ + + +
+
+ + + + +
const ITEM_UPLINK 0x0008
+
+ +

Referenced by item_store(), notifier_run(), and tag_deliver().

+ +
+
+ +
+
+ + + + +
const ITEM_UPLINK_PRV 0x0010
+
+ +
+
+ +
+
+ + + + +
const ITEM_VISIBLE 0x0000
+
+
+ + + +
+
+ + + + +
const ITEM_WEBPAGE 0x0040
+
+ +

Referenced by item_post(), and page_content().

+ +
+
+ +
+
+ + + + +
const JPEG_QUALITY 100
+
+

Image storage quality. Lower numbers save space at cost of image detail. For ease of upgrade, please do not change here. Change jpeg quality with $a->config['system']['jpeg_quality'] = n; in .htconfig.php, where n is netween 1 and 100, and with very poor results below about 50

+ +

Referenced by Photo\__construct(), and Photo\imageString().

+ +
+
+ +
+
+ + + + +
const LANGUAGE_DETECT_MIN_CONFIDENCE 0.01
+
+ +

Referenced by detect_language().

+ +
+
+ +
+
+ + + + +
const LANGUAGE_DETECT_MIN_LENGTH 128
+
+

Language detection parameters

+ +

Referenced by detect_language().

+ +
+
+ +
+
+ + + + +
const LOGGER_ALL 4
+
+ +

Referenced by admin_page_logs().

+ +
+
+ + + + + +
+
+ + + + +
const LOGGER_NORMAL 0
+
+

log levels

+ +

Referenced by admin_page_logs().

+ +
+
+ +
+
+ + + + +
const LOGGER_TRACE 1
+
+ +

Referenced by admin_page_logs().

+ +
+
+ +
+
+ + + + +
const MAIL_DELETED 0x0001
+
+ +

Referenced by ping_init().

+ +
+
+ +
+
+ + + + +
const MAIL_ISREPLY 0x0004
+
+ +
+
+ +
+
+ + + + +
const MAIL_REPLIED 0x0002
+
+ +
+
+ +
+
+ + + + +
const MAIL_SEEN 0x0008
+
+
+ +
+
+ + + + +
const MAX_IMAGE_LENGTH -1
+
+

An alternate way of limiting picture upload sizes. Specify the maximum pixel length that pictures are allowed to be (for non-square pictures, it will apply to the longest side). Pictures longer than this length will be resized to be this length (on the longest side, the other side will be scaled appropriately). Modify this value using

+

$a->config['system']['max_image_length'] = n;

+

in .htconfig.php

+

If you don't want to set a maximum length, set to -1. The default value is defined by 'MAX_IMAGE_LENGTH' below.

+ +

Referenced by photo_upload().

+ +
+
+ +
+
+ + + + +
const MAX_LIKERS 75
+
+

Maximum number of "people who like (or don't like) this" that we will list by name

+ +
+
+ +
+
+ + + + +
const NAMESPACE_ACTIVITY 'http://activitystrea.ms/spec/1.0/'
+
+ +

Referenced by get_atom_elements(), and new_follower().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_ACTIVITY_SCHEMA 'http://activitystrea.ms/schema/1.0/'
+
+ +
+
+ +
+
+ + + + +
const NAMESPACE_ATOM1 'http://www.w3.org/2005/Atom'
+
+ +
+
+ +
+
+ + + + +
const NAMESPACE_DFRN 'http://purl.org/macgirvin/dfrn/1.0'
+
+
+ +
+
+ + + + +
const NAMESPACE_FEED 'http://schemas.google.com/g/2010#updates-from'
+
+ +

Referenced by probe_url().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_GEORSS 'http://www.georss.org/georss'
+
+ +

Referenced by get_atom_elements().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_MEDIA 'http://purl.org/syndication/atommedia'
+
+ +

Referenced by encode_rel_links().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_OSTATUS 'http://ostatus.org/schema/1.0'
+
+ +
+
+ +
+
+ + + + +
const NAMESPACE_OSTATUSSUB 'http://ostatus.org/schema/1.0/subscribe'
+
+ +

Referenced by webfinger_dfrn().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_POCO 'http://portablecontacts.net/spec/1.0'
+
+ +

Referenced by new_follower().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_SALMON_ME 'http://salmon-protocol.org/ns/magic-env'
+
+ +
+
+ +
+
+ + + + +
const NAMESPACE_STATUSNET 'http://status.net/schema/api/1/'
+
+ +

Referenced by get_atom_elements().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_THREAD 'http://purl.org/syndication/thread/1.0'
+
+ +

Referenced by consume_feed(), and local_delivery().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_TOMB 'http://purl.org/atompub/tombstones/1.0'
+
+ +

Referenced by consume_feed(), and local_delivery().

+ +
+
+ +
+
+ + + + +
const NAMESPACE_ZOT 'http://purl.org/zot'
+
+

various namespaces we may need to parse

+ +

Referenced by probe_url().

+ +
+
+ +
+
+ + + + +
const NETWORK_DFRN 'dfrn'
+
+
+ +
+
+ + + + +
const NETWORK_DIASPORA 'dspr'
+
+
+ +
+
+ + + + +
const NETWORK_FACEBOOK 'face'
+
+ +

Referenced by network_to_name().

+ +
+
+ +
+
+ + + + +
const NETWORK_FEED 'feed'
+
+ +

Referenced by network_to_name(), and probe_url().

+ +
+
+ +
+
+ + + + +
const NETWORK_GPLUS 'goog'
+
+ +
+
+ +
+
+ + + + +
const NETWORK_LINKEDIN 'lnkd'
+
+ +

Referenced by network_to_name().

+ +
+
+ +
+
+ + + + +
const NETWORK_MAIL 'mail'
+
+ +

Referenced by get_feed_for(), network_to_name(), and probe_url().

+ +
+
+ +
+
+ + + + +
const NETWORK_MAIL2 'mai2'
+
+ +
+
+ +
+
+ + + + +
const NETWORK_MYSPACE 'mysp'
+
+ +

Referenced by network_to_name().

+ +
+
+ +
+
+ + + + +
const NETWORK_OSTATUS 'stat'
+
+
+ +
+
+ + + + +
const NETWORK_PHANTOM 'unkn'
+
+ +
+
+ +
+
+ + + + +
const NETWORK_XMPP 'xmpp'
+
+ +

Referenced by network_to_name().

+ +
+
+ +
+
+ + + + +
const NETWORK_ZOT 'zot!'
+
+
+ +
+
+ + + + +
const NOTIFY_COMMENT 0x0008
+
+
+ +
+
+ + + + +
const NOTIFY_CONFIRM 0x0002
+
+ +

Referenced by notification().

+ +
+
+ +
+
+ + + + +
const NOTIFY_INTRO 0x0001
+
+

email notification options

+ +

Referenced by new_follower(), and notification().

+ +
+
+ +
+
+ + + + +
const NOTIFY_MAIL 0x0010
+
+ +

Referenced by local_delivery(), mail_store(), and notification().

+ +
+
+ +
+
+ + + + +
const NOTIFY_POKE 0x0200
+
+ +

Referenced by local_delivery(), and notification().

+ +
+
+ +
+
+ + + + +
const NOTIFY_PROFILE 0x0040
+
+ +
+
+ +
+
+ + + + +
const NOTIFY_SUGGEST 0x0020
+
+ +

Referenced by local_delivery(), and notification().

+ +
+
+ +
+
+ + + + +
const NOTIFY_SYSTEM 0x8000
+
+ +

Referenced by notification().

+ +
+
+ +
+
+ + + + +
const NOTIFY_TAGSELF 0x0080
+
+ +

Referenced by notification(), and tag_deliver().

+ +
+
+ +
+
+ + + + +
const NOTIFY_TAGSHARE 0x0100
+
+ +

Referenced by notification().

+ +
+
+ +
+
+ + + + +
const NOTIFY_WALL 0x0004
+
+ +

Referenced by item_post(), and notification().

+ +
+
+ +
+
+ + + + +
const PAGE_APPLICATION 0x0004
+
+ +
+
+ +
+
+ + + + +
const PAGE_AUTOCONNECT 0x0002
+
+ +
+
+ +
+
+ + + + +
const PAGE_HIDDEN 0x0001
+
+ +

Referenced by zfinger_init().

+ +
+
+ +
+
+ + + + +
const PAGE_NORMAL 0x0000
+
+

page/profile types

+

PAGE_NORMAL is a typical personal profile account PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly) PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with write access to wall and comments (no email and not included in page owner's ACL lists) PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).

+ +

Referenced by create_identity(), and new_follower().

+ +
+
+ +
+
+ + + + +
const PAGE_REMOVED 0x8000
+
+
+ +
+
+ + + + +
const PERMS_A_DELEGATE 0x0800
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_CONTACTS 0x0008
+
+
+ +
+
+ + + + +
const PERMS_NETWORK 0x0002
+
+
+ +
+
+ + + + +
const PERMS_PUBLIC 0x0001
+
+
+ +
+
+ + + + +
const PERMS_R_ABOOK 0x0008
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_R_PAGES 0x4000
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_R_PHOTOS 0x0004
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_R_PROFILE 0x0002
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_R_STORAGE 0x1000
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_R_STREAM 0x0001
+
+

Permissions

+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_SITE 0x0004
+
+
+ +
+
+ + + + +
const PERMS_SPECIFIC 0x0080
+
+
+ +
+
+ + + + +
const PERMS_W_CHAT 0x0400
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_W_COMMENT 0x0080
+
+ +

Referenced by get_perms(), and public_recips().

+ +
+
+ +
+
+ + + + +
const PERMS_W_MAIL 0x0100
+
+
+ +
+
+ + + + +
const PERMS_W_PAGES 0x8000
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_W_PHOTOS 0x0200
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_W_STORAGE 0x2000
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_W_STREAM 0x0010
+
+
+ +
+
+ + + + +
const PERMS_W_TAGWALL 0x0040
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PERMS_W_WALL 0x0020
+
+ +

Referenced by get_perms().

+ +
+
+ +
+
+ + + + +
const PNG_QUALITY 8
+
+

$a->config['system']['png_quality'] from 0 (uncompressed) to 9

+ +

Referenced by Photo\__construct(), and Photo\imageString().

+ +
+
+ +
+
+ + + + +
const REGISTER_APPROVE 1
+
+ +

Referenced by admin_page_site(), ping_init(), and register_post().

+ +
+
+ +
+
+ + + + +
const REGISTER_CLOSED 0
+
+
+ +
+
+ + + + +
const REGISTER_OPEN 2
+
+ +

Referenced by admin_page_site(), nav(), and register_post().

+ +
+
+ +
+
+ + + + +
const SSL_POLICY_FULL 1
+
+
+ +
+
+ + + + +
const SSL_POLICY_NONE 0
+
+

SSL redirection policies

+ +

Referenced by admin_page_site(), and dfrn_deliver().

+ +
+
+ +
+
+ + + + +
const SSL_POLICY_SELFSIGN 2
+
+
+ +
+
+ + + + +
const TERM_CATEGORY 3
+
+
+ +
+
+ + + + +
const TERM_FILE 5
+
+
+ + + + + +
+
+ + + + +
const TERM_OBJ_PHOTO 2
+
+ +
+
+ + + +
+
+ + + + +
const TERM_PCATEGORY 4
+
+ +

Referenced by decode_tags().

+ +
+
+ +
+
+ + + + +
const TERM_SAVEDSEARCH 6
+
+
+ +
+
+ + + + +
const TERM_UNKNOWN 0
+
+

Tag/term types

+ +

Referenced by decode_tags(), encode_item_terms(), get_atom_elements(), handle_tag(), and item_post().

+ +
+
+ +
+
+ + + + +
const UPDATE_FAILED 1
+
+ +

Referenced by admin_page_dbsync().

+ +
+
+ +
+
+ + + + +
const UPDATE_SUCCESS 0
+
+

DB update return values

+ +

Referenced by admin_page_dbsync().

+ +
+
+ +
+
+ + + + +
const XCHAN_FLAGS_HIDDEN 0x0001
+
+
+ +
+
+ + + + +
const ZCURL_TIMEOUT (-1)
+
+

Communication timeout

+ +
+
+ +
+
+ + + + +
const ZOT_REVISION 1
+
+
+
+
+ + + + diff --git a/doc/html/boot_8php.js b/doc/html/boot_8php.js new file mode 100644 index 000000000..6526d7aa1 --- /dev/null +++ b/doc/html/boot_8php.js @@ -0,0 +1,226 @@ +var boot_8php = +[ + [ "App", "classApp.html", "classApp" ], + [ "absurl", "boot_8php.html#a081307d681d7d04f17b9ced2076e7c85", null ], + [ "appdirpath", "boot_8php.html#a75a90b0eadd0df510f7e63210733634d", null ], + [ "argc", "boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7", null ], + [ "argv", "boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006", null ], + [ "build_querystring", "boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e", null ], + [ "check_config", "boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3", null ], + [ "clean_urls", "boot_8php.html#ab79b8b4555cae20d03f8200666d89d63", null ], + [ "construct_page", "boot_8php.html#acc4e0c910af066148b810e5fde55fff1", null ], + [ "curPageURL", "boot_8php.html#aa4221641e5c21db69fa52c426b9017f5", null ], + [ "current_theme", "boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13", null ], + [ "current_theme_url", "boot_8php.html#ab2878f40a7f3978476fcfb4c95b96806", null ], + [ "dba_timer", "boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4", null ], + [ "get_account_id", "boot_8php.html#afe88b920aa285982edb817a0dd44eb37", null ], + [ "get_app", "boot_8php.html#a0e6db7e365f2b041a828b93786f694bc", null ], + [ "get_birthdays", "boot_8php.html#ad2c97627a313d53df1a1c7b4215ddb51", null ], + [ "get_events", "boot_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312", null ], + [ "get_max_import_size", "boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90", null ], + [ "get_my_address", "boot_8php.html#a490972c02fdb638c52ec0e012a30bfd2", null ], + [ "get_my_url", "boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec", null ], + [ "get_observer_hash", "boot_8php.html#a623e49c79943f3e7bdb770d021683cf7", null ], + [ "goaway", "boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1", null ], + [ "info", "boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498", null ], + [ "is_ajax", "boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c", null ], + [ "is_site_admin", "boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e", null ], + [ "killme", "boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c", null ], + [ "load_contact_links", "boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6", null ], + [ "local_user", "boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44", null ], + [ "login", "boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4", null ], + [ "notice", "boot_8php.html#a9255af5ae9c887520091ea04763c1a88", null ], + [ "proc_run", "boot_8php.html#ab346a2ece14993861f3e4206befa94f0", null ], + [ "profile_create_sidebar", "boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67", null ], + [ "profile_load", "boot_8php.html#aebc5ed38c73ade57f360471da712ded2", null ], + [ "profile_sidebar", "boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b", null ], + [ "profile_tabs", "boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273", null ], + [ "remote_user", "boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209", null ], + [ "startup", "boot_8php.html#aca47505b8732177f52bb2d647eb2741c", null ], + [ "system_unavailable", "boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0", null ], + [ "x", "boot_8php.html#a01353c9abebc3544ea080ac161729632", null ], + [ "z_birthday", "boot_8php.html#ab55e545b72ec8c097e052ea7d373491f", null ], + [ "z_path", "boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda", null ], + [ "z_root", "boot_8php.html#add517a0958ac684792c62142a3877f81", null ], + [ "zid", "boot_8php.html#a5b7ce5c0a79796800883644c389dc87f", null ], + [ "zid_init", "boot_8php.html#a680fbafc2db023c5b1309e0180e81315", null ], + [ "ABOOK_FLAG_ARCHIVED", "boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5", null ], + [ "ABOOK_FLAG_BLOCKED", "boot_8php.html#a52b599cd13e152ebc80d7e4413683195", null ], + [ "ABOOK_FLAG_HIDDEN", "boot_8php.html#a34c756469ebed32e2fc987bcde62d382", null ], + [ "ABOOK_FLAG_IGNORED", "boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6", null ], + [ "ABOOK_FLAG_PENDING", "boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155", null ], + [ "ABOOK_FLAG_SELF", "boot_8php.html#a0450389f24c632906fbc24347700a543", null ], + [ "ACCOUNT_BLOCKED", "boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9", null ], + [ "ACCOUNT_EXPIRED", "boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a", null ], + [ "ACCOUNT_OK", "boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8", null ], + [ "ACCOUNT_PENDING", "boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8", null ], + [ "ACCOUNT_REMOVED", "boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78", null ], + [ "ACCOUNT_ROLE_ADMIN", "boot_8php.html#ac8400313df2c831653f9036f71ebd86d", null ], + [ "ACCOUNT_UNVERIFIED", "boot_8php.html#af3a4271630aabd8be592213f925d6a36", null ], + [ "ACTIVITY_DISLIKE", "boot_8php.html#a0e57f846e6d47a308feced0f7274f178", null ], + [ "ACTIVITY_FAVORITE", "boot_8php.html#a3e2ea123d29a72012db1241f96280b0e", null ], + [ "ACTIVITY_FOLLOW", "boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434", null ], + [ "ACTIVITY_FRIEND", "boot_8php.html#a176664e78dcb9132e16be69418223eb2", null ], + [ "ACTIVITY_JOIN", "boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3", null ], + [ "ACTIVITY_LIKE", "boot_8php.html#abdcdfc873ace4e0902177bad934de0c0", null ], + [ "ACTIVITY_MOOD", "boot_8php.html#a7aa57438db03834aaa0b468bdce773a6", null ], + [ "ACTIVITY_OBJ_ALBUM", "boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14", null ], + [ "ACTIVITY_OBJ_COMMENT", "boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562", null ], + [ "ACTIVITY_OBJ_EVENT", "boot_8php.html#a2e90096fede6acce16abf0da8cb2febe", null ], + [ "ACTIVITY_OBJ_GROUP", "boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3", null ], + [ "ACTIVITY_OBJ_HEART", "boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f", null ], + [ "ACTIVITY_OBJ_NOTE", "boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f", null ], + [ "ACTIVITY_OBJ_P_PHOTO", "boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab", null ], + [ "ACTIVITY_OBJ_PERSON", "boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab", null ], + [ "ACTIVITY_OBJ_PHOTO", "boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966", null ], + [ "ACTIVITY_OBJ_PROFILE", "boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5", null ], + [ "ACTIVITY_OBJ_TAGTERM", "boot_8php.html#a1da180f961f49a11573cac4ff6c62c05", null ], + [ "ACTIVITY_POKE", "boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd", null ], + [ "ACTIVITY_POST", "boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4", null ], + [ "ACTIVITY_REQ_FRIEND", "boot_8php.html#afe084c30a1810c10442edb4fbcbc0086", null ], + [ "ACTIVITY_TAG", "boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5", null ], + [ "ACTIVITY_UNFOLLOW", "boot_8php.html#a53e4bdb6f225da55115acb9277f75e53", null ], + [ "ACTIVITY_UNFRIEND", "boot_8php.html#a29528a2544373cc19a378f350040c6a1", null ], + [ "ACTIVITY_UPDATE", "boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866", null ], + [ "ATOM_TIME", "boot_8php.html#ad34c1547020a305915bcc39707744690", null ], + [ "ATTACH_FLAG_DIR", "boot_8php.html#aa74438cf71e48e37bf7b440b94243985", null ], + [ "ATTACH_FLAG_OS", "boot_8php.html#a781916f83fcc8ff1035649afa45f0292", null ], + [ "CONTACT_IS_FOLLOWER", "boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29", null ], + [ "CONTACT_IS_FRIEND", "boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f", null ], + [ "CONTACT_IS_SHARING", "boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9", null ], + [ "DB_UPDATE_VERSION", "boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03", null ], + [ "DEFAULT_DB_ENGINE", "boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d", null ], + [ "DIRECTORY_FALLBACK_MASTER", "boot_8php.html#abedd940e664017c61b48c6efa31d0cb8", null ], + [ "DIRECTORY_MODE_NORMAL", "boot_8php.html#ab7d65a7e7417825a4db62906bb600729", null ], + [ "DIRECTORY_MODE_PRIMARY", "boot_8php.html#a8a60cc38bb567765fd926fef70205f16", null ], + [ "DIRECTORY_MODE_SECONDARY", "boot_8php.html#aedfb9501ed408278667995524e0d15cf", null ], + [ "DIRECTORY_MODE_STANDALONE", "boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8", null ], + [ "DIRECTORY_REALM", "boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd", null ], + [ "EOL", "boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b", null ], + [ "FRIENDICA_PLATFORM", "boot_8php.html#a7a27d05ec84f9eef2f06097e6b8892f3", null ], + [ "FRIENDICA_VERSION", "boot_8php.html#a78d5f284dc096b2a739c1fa47f22b7be", null ], + [ "GRAVITY_COMMENT", "boot_8php.html#a4a12ce5de39789b0361e308d89925a20", null ], + [ "GRAVITY_LIKE", "boot_8php.html#a1f5906598e90b5ea2b4245f682be4348", null ], + [ "GRAVITY_PARENT", "boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3", null ], + [ "HUBLOC_FLAGS_PRIMARY", "boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955", null ], + [ "HUBLOC_FLAGS_UNVERIFIED", "boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764", null ], + [ "ITEM_BLOCKED", "boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f", null ], + [ "ITEM_DELETED", "boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49", null ], + [ "ITEM_HIDDEN", "boot_8php.html#ac99fc4d040764eac1736bec6973556fe", null ], + [ "ITEM_MENTIONSME", "boot_8php.html#a8da836617174eed9fc2ac8054125354b", null ], + [ "ITEM_MODERATED", "boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450", null ], + [ "ITEM_NOTSHOWN", "boot_8php.html#a8663f32171568489dbb2a01dd00371f8", null ], + [ "ITEM_NSFW", "boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08", null ], + [ "ITEM_ORIGIN", "boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7", null ], + [ "ITEM_RELAY", "boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221", null ], + [ "ITEM_SPAM", "boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb", null ], + [ "ITEM_STARRED", "boot_8php.html#a7af107fab8d62b9a73801713b774ed30", null ], + [ "ITEM_THREAD_TOP", "boot_8php.html#a749144d8dd9c1366596a0213c277d050", null ], + [ "ITEM_UNPUBLISHED", "boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272", null ], + [ "ITEM_UNSEEN", "boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0", null ], + [ "ITEM_UPLINK", "boot_8php.html#aefba06f1c0842036329033e7567ecf6d", null ], + [ "ITEM_UPLINK_PRV", "boot_8php.html#aad33b494084f729b6ee3b0bc457718a1", null ], + [ "ITEM_VISIBLE", "boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf", null ], + [ "ITEM_WALL", "boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322", null ], + [ "ITEM_WEBPAGE", "boot_8php.html#af489d0c3166551b93e63a79ff2c9be35", null ], + [ "JPEG_QUALITY", "boot_8php.html#a3475ff6c2e575f946ea0ee377e944173", null ], + [ "LANGUAGE_DETECT_MIN_CONFIDENCE", "boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11", null ], + [ "LANGUAGE_DETECT_MIN_LENGTH", "boot_8php.html#a17cf72338b040891781a4bcbdd9a8595", null ], + [ "LOGGER_ALL", "boot_8php.html#afe63ae69ba55299f813766e54df06ede", null ], + [ "LOGGER_DATA", "boot_8php.html#a6969947145a139ec374ce098224d8e81", null ], + [ "LOGGER_DEBUG", "boot_8php.html#a93823d15ae07548a4c49de88d325cd26", null ], + [ "LOGGER_NORMAL", "boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805", null ], + [ "LOGGER_TRACE", "boot_8php.html#a022cea669f9f13ef7c6268b63884c57f", null ], + [ "MAIL_DELETED", "boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8", null ], + [ "MAIL_ISREPLY", "boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2", null ], + [ "MAIL_REPLIED", "boot_8php.html#aa3679df31c8dad1b71816b0322d5baff", null ], + [ "MAIL_SEEN", "boot_8php.html#a1fbb93cf030f07391f22cc2948744869", null ], + [ "MAX_IMAGE_LENGTH", "boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa", null ], + [ "MAX_LIKERS", "boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd", null ], + [ "NAMESPACE_ACTIVITY", "boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2", null ], + [ "NAMESPACE_ACTIVITY_SCHEMA", "boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133", null ], + [ "NAMESPACE_ATOM1", "boot_8php.html#a444ce608ce34efb82ee11852f36e825f", null ], + [ "NAMESPACE_DFRN", "boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028", null ], + [ "NAMESPACE_FEED", "boot_8php.html#ac195fc9003298923ea81f144388e24b1", null ], + [ "NAMESPACE_GEORSS", "boot_8php.html#a03d19251c245587de7ed959300b87bdf", null ], + [ "NAMESPACE_MEDIA", "boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16", null ], + [ "NAMESPACE_OSTATUS", "boot_8php.html#acca19aae62e1a6951a856b945de20d67", null ], + [ "NAMESPACE_OSTATUSSUB", "boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd", null ], + [ "NAMESPACE_POCO", "boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a", null ], + [ "NAMESPACE_SALMON_ME", "boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67", null ], + [ "NAMESPACE_STATUSNET", "boot_8php.html#afaf93b7026f784b113b4f8921745891e", null ], + [ "NAMESPACE_THREAD", "boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86", null ], + [ "NAMESPACE_TOMB", "boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e", null ], + [ "NAMESPACE_ZOT", "boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47", null ], + [ "NETWORK_DFRN", "boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e", null ], + [ "NETWORK_DIASPORA", "boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa", null ], + [ "NETWORK_FACEBOOK", "boot_8php.html#af3905ea8f8568d0236db13fca40514e3", null ], + [ "NETWORK_FEED", "boot_8php.html#ab4bddb41a0cf407178ec5278b950c393", null ], + [ "NETWORK_GPLUS", "boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701", null ], + [ "NETWORK_LINKEDIN", "boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa", null ], + [ "NETWORK_MAIL", "boot_8php.html#a7236b2cdcf59f02a42302e893a99013b", null ], + [ "NETWORK_MAIL2", "boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42", null ], + [ "NETWORK_MYSPACE", "boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95", null ], + [ "NETWORK_OSTATUS", "boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d", null ], + [ "NETWORK_PHANTOM", "boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f", null ], + [ "NETWORK_XMPP", "boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e", null ], + [ "NETWORK_ZOT", "boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0", null ], + [ "NOTIFY_COMMENT", "boot_8php.html#a20f0eed431d25870b624b8937a07a59f", null ], + [ "NOTIFY_CONFIRM", "boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d", null ], + [ "NOTIFY_INTRO", "boot_8php.html#a56fd673eaa7014150297ce1162502db5", null ], + [ "NOTIFY_MAIL", "boot_8php.html#a285732e7889fa7f333cbe431111e1029", null ], + [ "NOTIFY_POKE", "boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8", null ], + [ "NOTIFY_PROFILE", "boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b", null ], + [ "NOTIFY_SUGGEST", "boot_8php.html#a9d01ef178b72b145016cca1393415bc4", null ], + [ "NOTIFY_SYSTEM", "boot_8php.html#a14d44d4a00223dc3db4ea962325db192", null ], + [ "NOTIFY_TAGSELF", "boot_8php.html#ab724491497ab2618b23a01d5da60aec0", null ], + [ "NOTIFY_TAGSHARE", "boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461", null ], + [ "NOTIFY_WALL", "boot_8php.html#a505410c7edc5f5bb5fa227b98359793e", null ], + [ "PAGE_APPLICATION", "boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed", null ], + [ "PAGE_AUTOCONNECT", "boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9", null ], + [ "PAGE_HIDDEN", "boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640", null ], + [ "PAGE_NORMAL", "boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3", null ], + [ "PAGE_REMOVED", "boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6", null ], + [ "PERMS_A_DELEGATE", "boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b", null ], + [ "PERMS_CONTACTS", "boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6", null ], + [ "PERMS_NETWORK", "boot_8php.html#a6df1102664f64b274810db85197c2755", null ], + [ "PERMS_PUBLIC", "boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7", null ], + [ "PERMS_R_ABOOK", "boot_8php.html#a3d6d4fc5fafcc9156811669158541caf", null ], + [ "PERMS_R_PAGES", "boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e", null ], + [ "PERMS_R_PHOTOS", "boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62", null ], + [ "PERMS_R_PROFILE", "boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137", null ], + [ "PERMS_R_STORAGE", "boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc", null ], + [ "PERMS_R_STREAM", "boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4", null ], + [ "PERMS_SITE", "boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f", null ], + [ "PERMS_SPECIFIC", "boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964", null ], + [ "PERMS_W_CHAT", "boot_8php.html#acd877c405b06b348b37b6f7e62a211e9", null ], + [ "PERMS_W_COMMENT", "boot_8php.html#a32df13fec0e43281da5979e1f5579aa8", null ], + [ "PERMS_W_MAIL", "boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf", null ], + [ "PERMS_W_PAGES", "boot_8php.html#aa9244fc9cc221980c07a20cc534111be", null ], + [ "PERMS_W_PHOTOS", "boot_8php.html#a57eee7352714c004d36c26dda74af73e", null ], + [ "PERMS_W_STORAGE", "boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115", null ], + [ "PERMS_W_STREAM", "boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55", null ], + [ "PERMS_W_TAGWALL", "boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777", null ], + [ "PERMS_W_WALL", "boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2", null ], + [ "PNG_QUALITY", "boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce", null ], + [ "REGISTER_APPROVE", "boot_8php.html#a7176c0f9f1c98421b97735d892cf6252", null ], + [ "REGISTER_CLOSED", "boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1", null ], + [ "REGISTER_OPEN", "boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63", null ], + [ "SSL_POLICY_FULL", "boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc", null ], + [ "SSL_POLICY_NONE", "boot_8php.html#af86c651547aa8f9e549ee40a09455549", null ], + [ "SSL_POLICY_SELFSIGN", "boot_8php.html#adca48aee78465ae3064ca4432c0d87b5", null ], + [ "TERM_CATEGORY", "boot_8php.html#af33d1b2e98a1e21af672005525d46dfe", null ], + [ "TERM_FILE", "boot_8php.html#afb97615e985a013799839b68b99018d7", null ], + [ "TERM_HASHTAG", "boot_8php.html#a2750985ec445617d7e82ae3098c91e3f", null ], + [ "TERM_MENTION", "boot_8php.html#ae37444eaa42705185080ccf3e670cbc2", null ], + [ "TERM_OBJ_PHOTO", "boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd", null ], + [ "TERM_OBJ_POST", "boot_8php.html#a9eeb8989272d5ff804a616898bb13659", null ], + [ "TERM_PCATEGORY", "boot_8php.html#a45b12aefab9675baffc7a07a09486db8", null ], + [ "TERM_SAVEDSEARCH", "boot_8php.html#abd7bb40da9cc073297e49736b338ca07", null ], + [ "TERM_UNKNOWN", "boot_8php.html#a0c59dde058efebbc66520d136cbd1631", null ], + [ "UPDATE_FAILED", "boot_8php.html#a75fc600186b13c3b25e661afefb5eac8", null ], + [ "UPDATE_SUCCESS", "boot_8php.html#ac86615ddc0763a00f5311c90e991730c", null ], + [ "XCHAN_FLAGS_HIDDEN", "boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2", null ], + [ "ZCURL_TIMEOUT", "boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af", null ], + [ "ZOT_REVISION", "boot_8php.html#a36b31575f992a10b5927b76efba9362e", null ] +]; \ No newline at end of file diff --git a/doc/html/cache_8php.html b/doc/html/cache_8php.html new file mode 100644 index 000000000..ebf0646e1 --- /dev/null +++ b/doc/html/cache_8php.html @@ -0,0 +1,130 @@ + + + + + + +The Red Project: include/cache.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
cache.php File Reference
+
+
+ + + + +

+Classes

class  Cache
 
+
+
+ + + + diff --git a/doc/html/channel_8php.html b/doc/html/channel_8php.html new file mode 100644 index 000000000..028582b30 --- /dev/null +++ b/doc/html/channel_8php.html @@ -0,0 +1,202 @@ + + + + + + +The Red Project: mod/channel.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
channel.php File Reference
+
+
+ + + + + + + + +

+Functions

 channel_init (&$a)
 
 channel_aside (&$a)
 
 channel_content (&$a, $update=0, $load=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
channel_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
channel_content ($a,
 $update = 0,
 $load = false 
)
+
+

Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups

+ +

Referenced by update_channel_content().

+ +
+
+ +
+
+ + + + + + + + +
channel_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/channel_8php.js b/doc/html/channel_8php.js new file mode 100644 index 000000000..4aa5d2d20 --- /dev/null +++ b/doc/html/channel_8php.js @@ -0,0 +1,6 @@ +var channel_8php = +[ + [ "channel_aside", "channel_8php.html#aea8e189f2fbabfda779349dd94082e8e", null ], + [ "channel_content", "channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1", null ], + [ "channel_init", "channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc", null ] +]; \ No newline at end of file diff --git a/doc/html/chanview_8php.html b/doc/html/chanview_8php.html new file mode 100644 index 000000000..c84f39c0a --- /dev/null +++ b/doc/html/chanview_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/chanview.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
chanview.php File Reference
+
+
+ + + + +

+Functions

 chanview_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
chanview_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/chanview_8php.js b/doc/html/chanview_8php.js new file mode 100644 index 000000000..cbf2b353b --- /dev/null +++ b/doc/html/chanview_8php.js @@ -0,0 +1,4 @@ +var chanview_8php = +[ + [ "chanview_content", "chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b", null ] +]; \ No newline at end of file diff --git a/doc/html/classApp-members.html b/doc/html/classApp-members.html new file mode 100644 index 000000000..8272463af --- /dev/null +++ b/doc/html/classApp-members.html @@ -0,0 +1,212 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
App Member List
+
+
+ +

This is the complete list of members for App, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$accountApp
$appsAppprivate
$argcApp
$argvApp
$baseurlAppprivate
$cached_profile_imageAppprivate
$cached_profile_picdateAppprivate
$categoryApp
$channelApp
$cidApp
$cmdApp
$configApp
$contactApp
$contactsApp
$contentApp
$css_sourcesApp
$curl_codeAppprivate
$curl_headersAppprivate
$dataApp
$dbAppprivate
$errorApp
$force_max_itemsApp
$groupsApp
$hooksApp
$hostnameAppprivate
$identitiesApp
$interactiveApp
$js_sourcesApp
$languageApp
$ldelimAppprivate
$moduleApp
$module_loadedApp
$nav_selApp
$observerApp
$pageApp
$pagerApp
$pathAppprivate
$permsAppprivate
$pluginsApp
$profileApp
$query_stringApp
$rdelimAppprivate
$schemeAppprivate
$sourcenameApp
$stringsApp
$themeAppprivate
$theme_infoApp
$theme_thread_allowApp
$timezoneApp
$userApp
$videoheightApp
$videowidthApp
$widgetlistAppprivate
$widgetsAppprivate
__construct()App
build_pagehead()App
get_account()App
get_apps()App
get_baseurl($ssl=false)App
get_channel()App
get_curl_code()App
get_curl_headers()App
get_groups()App
get_hostname()App
get_observer()App
get_path()App
get_perms()App
get_template_engine()App
get_template_ldelim($engine= 'internal')App
get_template_rdelim($engine= 'internal')App
get_widgets($location= '')App
set_account($aid)App
set_apps($arr)App
set_baseurl($url)App
set_channel($channel)App
set_curl_code($code)App
set_curl_headers($headers)App
set_groups($g)App
set_hostname($h)App
set_observer($xchan)App
set_pager_itemspage($n)App
set_pager_total($n)App
set_path($p)App
set_perms($perms)App
set_template_engine($engine= 'internal')App
set_widget($title, $html, $location= 'aside')App
+
+ + + + diff --git a/doc/html/classApp.html b/doc/html/classApp.html new file mode 100644 index 000000000..ac0d1192f --- /dev/null +++ b/doc/html/classApp.html @@ -0,0 +1,1661 @@ + + + + + + +The Red Project: App Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 __construct ()
 
 get_baseurl ($ssl=false)
 
 set_baseurl ($url)
 
 get_hostname ()
 
 set_hostname ($h)
 
 set_path ($p)
 
 get_path ()
 
 set_account ($aid)
 
 get_account ()
 
 set_channel ($channel)
 
 get_channel ()
 
 set_observer ($xchan)
 
 get_observer ()
 
 set_perms ($perms)
 
 get_perms ()
 
 get_apps ()
 
 set_apps ($arr)
 
 set_groups ($g)
 
 get_groups ()
 
 set_widget ($title, $html, $location= 'aside')
 
 get_widgets ($location= '')
 
 set_pager_total ($n)
 
 set_pager_itemspage ($n)
 
 build_pagehead ()
 
 set_curl_code ($code)
 
 get_curl_code ()
 
 set_curl_headers ($headers)
 
 get_curl_headers ()
 
 get_template_engine ()
 
 set_template_engine ($engine= 'internal')
 
 get_template_ldelim ($engine= 'internal')
 
 get_template_rdelim ($engine= 'internal')
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Attributes

 $account = null
 
 $channel = null
 
 $observer = null
 
 $groups
 
 $language
 
 $module_loaded = false
 
 $query_string
 
 $config
 
 $page
 
 $profile
 
 $user
 
 $cid
 
 $contact
 
 $contacts
 
 $content
 
 $data = array()
 
 $error = false
 
 $cmd
 
 $argv
 
 $argc
 
 $module
 
 $pager
 
 $strings
 
 $hooks
 
 $timezone
 
 $interactive = true
 
 $plugins
 
 $identities
 
 $css_sources = array()
 
 $js_sources = array()
 
 $theme_info = array()
 
 $nav_sel
 
 $category
 
 $sourcename = ''
 
 $videowidth = 425
 
 $videoheight = 350
 
 $force_max_items = 0
 
 $theme_thread_allow = true
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Private Attributes

 $perms = null
 
 $widgets = array()
 
 $widgetlist = null
 
 $apps = array()
 
 $theme
 
 $ldelim
 
 $rdelim
 
 $scheme
 
 $hostname
 
 $baseurl
 
 $path
 
 $db
 
 $curl_code
 
 $curl_headers
 
 $cached_profile_image
 
 $cached_profile_picdate
 
+

Detailed Description

+

class: App

+

Our main application structure for the life of this page Primarily deals with the URL that got us here and tries to make some sense of it, and stores our page contents and config storage and anything else that might need to be passed around before we spit the page out.

+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + +
App::__construct ()
+
+

Figure out if we are running at the top of a domain or in a sub-directory and adjust accordingly

+

Break the URL path into C style argc/argv style arguments for our modules. Given "http://example.com/module/arg1/arg2", $this->argc will be 3 (integer) and $this->argv will contain: [0] => 'module' [1] => 'arg1' [2] => 'arg2'

+

There will always be one argument. If provided a naked domain URL, $this->argv[0] is set to "home".

+

See if there is any page number information, and initialise pagination

+

Detect mobile devices

+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + +
App::build_pagehead ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_account ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_apps ()
+
+ +
+
+ +
+
+ + + + + + + + +
App::get_baseurl ( $ssl = false)
+
+ +

Referenced by build_pagehead().

+ +
+
+ +
+
+ + + + + + + +
App::get_channel ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_curl_code ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_curl_headers ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_groups ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_hostname ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_observer ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_path ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_perms ()
+
+ +
+
+ +
+
+ + + + + + + +
App::get_template_engine ()
+
+ +
+
+ +
+
+ + + + + + + + +
App::get_template_ldelim ( $engine = 'internal')
+
+ +
+
+ +
+
+ + + + + + + + +
App::get_template_rdelim ( $engine = 'internal')
+
+ +
+
+ +
+
+ + + + + + + + +
App::get_widgets ( $location = '')
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_account ( $aid)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_apps ( $arr)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_baseurl ( $url)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_channel ( $channel)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_curl_code ( $code)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_curl_headers ( $headers)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_groups ( $g)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_hostname ( $h)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_observer ( $xchan)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_pager_itemspage ( $n)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_pager_total ( $n)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_path ( $p)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_perms ( $perms)
+
+ +
+
+ +
+
+ + + + + + + + +
App::set_template_engine ( $engine = 'internal')
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
App::set_widget ( $title,
 $html,
 $location = 'aside' 
)
+
+ +
+
+

Member Data Documentation

+ +
+
+ + + + +
App::$account = null
+
+ +

Referenced by get_account().

+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$apps = array()
+
+private
+
+ +

Referenced by get_apps().

+ +
+
+ +
+
+ + + + +
App::$argc
+
+ +
+
+ +
+
+ + + + +
App::$argv
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$baseurl
+
+private
+
+ +

Referenced by get_baseurl().

+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$cached_profile_image
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$cached_profile_picdate
+
+private
+
+ +
+
+ +
+
+ + + + +
App::$category
+
+ +
+
+ +
+
+ + + + +
App::$channel = null
+
+ +

Referenced by get_channel(), and set_channel().

+ +
+
+ +
+
+ + + + +
App::$cid
+
+ +
+
+ +
+
+ + + + +
App::$cmd
+
+ +
+
+ +
+
+ + + + +
App::$config
+
+ +
+
+ +
+
+ + + + +
App::$contact
+
+ +
+
+ +
+
+ + + + +
App::$contacts
+
+ +
+
+ +
+
+ + + + +
App::$content
+
+ +
+
+ +
+
+ + + + +
App::$css_sources = array()
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$curl_code
+
+private
+
+ +

Referenced by get_curl_code().

+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$curl_headers
+
+private
+
+ +

Referenced by get_curl_headers().

+ +
+
+ +
+
+ + + + +
App::$data = array()
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$db
+
+private
+
+ +
+
+ +
+
+ + + + +
App::$error = false
+
+ +
+
+ +
+
+ + + + +
App::$force_max_items = 0
+
+ +
+
+ +
+
+ + + + +
App::$groups
+
+ +

Referenced by get_groups().

+ +
+
+ +
+
+ + + + +
App::$hooks
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$hostname
+
+private
+
+ +

Referenced by get_hostname().

+ +
+
+ +
+
+ + + + +
App::$identities
+
+ +
+
+ +
+
+ + + + +
App::$interactive = true
+
+ +
+
+ +
+
+ + + + +
App::$js_sources = array()
+
+ +
+
+ +
+
+ + + + +
App::$language
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$ldelim
+
+private
+
+Initial value:
= array(
+
'internal' => '',
+
'smarty3' => '{{'
+
)
+
+
+
+ +
+
+ + + + +
App::$module
+
+ +
+
+ +
+
+ + + + +
App::$module_loaded = false
+
+ +
+
+ +
+
+ + + + +
App::$nav_sel
+
+ +
+
+ +
+
+ + + + +
App::$observer = null
+
+ +

Referenced by get_observer().

+ +
+
+ +
+
+ + + + +
App::$page
+
+ +
+
+ +
+
+ + + + +
App::$pager
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$path
+
+private
+
+ +

Referenced by __construct(), and get_path().

+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$perms = null
+
+private
+
+ +

Referenced by get_perms(), and set_perms().

+ +
+
+ +
+
+ + + + +
App::$plugins
+
+ +
+
+ +
+
+ + + + +
App::$profile
+
+ +
+
+ +
+
+ + + + +
App::$query_string
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$rdelim
+
+private
+
+Initial value:
= array(
+
'internal' => '',
+
'smarty3' => '}}'
+
)
+
+
+
+ +
+
+ + + + + +
+ + + + +
App::$scheme
+
+private
+
+ +

Referenced by get_baseurl().

+ +
+
+ +
+
+ + + + +
App::$sourcename = ''
+
+ +
+
+ +
+
+ + + + +
App::$strings
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$theme
+
+private
+
+Initial value:
= array(
+
'sourcename' => '',
+
'videowidth' => 425,
+
'videoheight' => 350,
+
'force_max_items' => 0,
+
'thread_allow' => true,
+
'stylesheet' => '',
+
'template_engine' => 'internal',
+
)
+
+
+
+ +
+
+ + + + +
App::$theme_info = array()
+
+ +
+
+ +
+
+ + + + +
App::$theme_thread_allow = true
+
+ +
+
+ +
+
+ + + + +
App::$timezone
+
+ +
+
+ +
+
+ + + + +
App::$user
+
+ +
+
+ +
+
+ + + + +
App::$videoheight = 350
+
+ +
+
+ +
+
+ + + + +
App::$videowidth = 425
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$widgetlist = null
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
App::$widgets = array()
+
+private
+
+ +

Referenced by get_widgets().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classApp.js b/doc/html/classApp.js new file mode 100644 index 000000000..1e25a9c5b --- /dev/null +++ b/doc/html/classApp.js @@ -0,0 +1,89 @@ +var classApp = +[ + [ "__construct", "classApp.html#af6d39f63fb7116bbeb04e51696f99474", null ], + [ "build_pagehead", "classApp.html#a08f0537964d98958d218066364cff785", null ], + [ "get_account", "classApp.html#a08bc87aff64f39fbc084e9d6545cee4d", null ], + [ "get_apps", "classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad", null ], + [ "get_baseurl", "classApp.html#a604d659d6977a99de42a160343e5289a", null ], + [ "get_channel", "classApp.html#a084e03c77686d8c13390fef3f7428a2b", null ], + [ "get_curl_code", "classApp.html#ab410451f132910773d0a02e35d0dced9", null ], + [ "get_curl_headers", "classApp.html#abaf2173711e861ae4aebf43a7f70157e", null ], + [ "get_groups", "classApp.html#a4659785d13e4bac0bed50dbb1b0d4299", null ], + [ "get_hostname", "classApp.html#a622eace13f8fc9f4b5672a68e2bc4396", null ], + [ "get_observer", "classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2", null ], + [ "get_path", "classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be", null ], + [ "get_perms", "classApp.html#adb5a4bb657881e553978ff390babd01f", null ], + [ "get_template_engine", "classApp.html#acb27e607fe4c82603444676e25c36b70", null ], + [ "get_template_ldelim", "classApp.html#ad2eff1f9335d607846e39e8c63b88b51", null ], + [ "get_template_rdelim", "classApp.html#a9e1856f714ac5755798fd7a2fa035e42", null ], + [ "get_widgets", "classApp.html#a871898becd0697d778f36d9336253ae8", null ], + [ "set_account", "classApp.html#a5c83c957ada53e170901e3c025080862", null ], + [ "set_apps", "classApp.html#abea5a4f77dcd53c928dc4eed86616637", null ], + [ "set_baseurl", "classApp.html#a78788f6e9d8b713b138f81e457c5cd08", null ], + [ "set_channel", "classApp.html#a89e9feb2bfb5253883a9720beaffe876", null ], + [ "set_curl_code", "classApp.html#a5e6a6bd641e4d9909df56f0283c03821", null ], + [ "set_curl_headers", "classApp.html#a9632092d9e8fdaa82a9fc4586433fd31", null ], + [ "set_groups", "classApp.html#a3d84af5e42082098672531cd1a618853", null ], + [ "set_hostname", "classApp.html#a344d2b7dc2f276648d521aee4da1731c", null ], + [ "set_observer", "classApp.html#a4776d9322edea17fae56afa5d01a323e", null ], + [ "set_pager_itemspage", "classApp.html#a4bdd7bfed62f50515fce652127bf481b", null ], + [ "set_pager_total", "classApp.html#a560189f048d3db2f526841963cc43e97", null ], + [ "set_path", "classApp.html#adb060d5c7f35a521ec7ec0effbe08097", null ], + [ "set_perms", "classApp.html#a557d7b779d8259027f4724ebf7b248dc", null ], + [ "set_template_engine", "classApp.html#a325f05bdc15d1b341044b389b21cd195", null ], + [ "set_widget", "classApp.html#a123b903dfe5d3488cc68db3471d36fd2", null ], + [ "$account", "classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3", null ], + [ "$apps", "classApp.html#a230e975296cf164da2fee35ef720964f", null ], + [ "$argc", "classApp.html#af58db526040829b1c8bd95561b329262", null ], + [ "$argv", "classApp.html#ab3da757abe5cb45bf88f07cc51a73b58", null ], + [ "$baseurl", "classApp.html#ad5175536561021548ae8188e24c7b80c", null ], + [ "$cached_profile_image", "classApp.html#abe0e4fa91097f7a6588e1213a834121c", null ], + [ "$cached_profile_picdate", "classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e", null ], + [ "$category", "classApp.html#a5cfc098c061b7d765add58fd2ca97445", null ], + [ "$channel", "classApp.html#a050b0696118da47e8b30859ad1a2c149", null ], + [ "$cid", "classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0", null ], + [ "$cmd", "classApp.html#a495ec082c2719314e536070ca1ce073d", null ], + [ "$config", "classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88", null ], + [ "$contact", "classApp.html#a98ef4cfd36693a3457c879b76bc6d694", null ], + [ "$contacts", "classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2", null ], + [ "$content", "classApp.html#ac1d80a14492acc932715d54567d8a589", null ], + [ "$css_sources", "classApp.html#a6f55d087e1ff4710132c1b0863faa2ee", null ], + [ "$curl_code", "classApp.html#a256360c9184fed6d7556e0bc0a835d7f", null ], + [ "$curl_headers", "classApp.html#af5007c42a693afd9c4899c243b2e1363", null ], + [ "$data", "classApp.html#a0ce85be198e46570366cb3344f3c55b8", null ], + [ "$db", "classApp.html#a330410a288f3393d53772f5e98f857ea", null ], + [ "$error", "classApp.html#ac1a8b2cd40609b231a560201a08852ba", null ], + [ "$force_max_items", "classApp.html#ae3f47830543d0d902f66913def8db66b", null ], + [ "$groups", "classApp.html#ac6e6b1c7d6df408580ff79977fcfa656", null ], + [ "$hooks", "classApp.html#a3694aa1907aa103a2adbc71f926f0fa0", null ], + [ "$hostname", "classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3", null ], + [ "$identities", "classApp.html#a7954862f44f606b0ff83d4c74d15e792", null ], + [ "$interactive", "classApp.html#a4c7cfc62d39508086cf300dc2e39c4df", null ], + [ "$js_sources", "classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d", null ], + [ "$language", "classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f", null ], + [ "$ldelim", "classApp.html#a59dd4b665c70e7dbd80682c014ff7145", null ], + [ "$module", "classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d", null ], + [ "$module_loaded", "classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165", null ], + [ "$nav_sel", "classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c", null ], + [ "$observer", "classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f", null ], + [ "$page", "classApp.html#a4b67935096f66d1f14b657399a8461ac", null ], + [ "$pager", "classApp.html#a6bcb19cdc4907077da72864686d5a780", null ], + [ "$path", "classApp.html#acad5896b7a79ae31433ad8f89606c728", null ], + [ "$perms", "classApp.html#ab47de68fa39806d1fb0976407e188b77", null ], + [ "$plugins", "classApp.html#ae9f96338f32187d308b67b980eea0008", null ], + [ "$profile", "classApp.html#a57d041fcc003d08c127dfa99a02bc192", null ], + [ "$query_string", "classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f", null ], + [ "$rdelim", "classApp.html#a244b2d53b21be269aad2269d23192f95", null ], + [ "$scheme", "classApp.html#ad082d63acc078e5bf23825a03bdd6a76", null ], + [ "$sourcename", "classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11", null ], + [ "$strings", "classApp.html#a5f64620473a9727a48ebe9cf6f335a98", null ], + [ "$theme", "classApp.html#a764cc6cd7578132c21d2b4545de9301c", null ], + [ "$theme_info", "classApp.html#aeca29fd4f7192ca07369b3c598c36e67", null ], + [ "$theme_thread_allow", "classApp.html#a487332f8de40414ca1a54a4265570b70", null ], + [ "$timezone", "classApp.html#ab35b01a366a2ea95725e97af278f87ab", null ], + [ "$user", "classApp.html#a91fd3c8b89016113b05f3be24805ccff", null ], + [ "$videoheight", "classApp.html#a56b1a432c96aef8b1971f779c9d93c8c", null ], + [ "$videowidth", "classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8", null ], + [ "$widgetlist", "classApp.html#a4833bee2eae4ad1691a04fa19e11a766", null ], + [ "$widgets", "classApp.html#aa5a87c46ab3fee21362c466bf78042ef", null ] +]; \ No newline at end of file diff --git a/doc/html/classBaseObject-members.html b/doc/html/classBaseObject-members.html new file mode 100644 index 000000000..b5cba3d18 --- /dev/null +++ b/doc/html/classBaseObject-members.html @@ -0,0 +1,129 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
BaseObject Member List
+
+
+ +

This is the complete list of members for BaseObject, including all inherited members.

+ + + + +
$appBaseObjectprivatestatic
get_app()BaseObject
set_app($app)BaseObjectstatic
+
+ + + + diff --git a/doc/html/classBaseObject.html b/doc/html/classBaseObject.html new file mode 100644 index 000000000..45d22255e --- /dev/null +++ b/doc/html/classBaseObject.html @@ -0,0 +1,231 @@ + + + + + + +The Red Project: BaseObject Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+
+Inheritance diagram for BaseObject:
+
+
+ + +Conversation +Item + +
+ + + + +

+Public Member Functions

 get_app ()
 
+ + + +

+Static Public Member Functions

static set_app ($app)
 
+ + + +

+Static Private Attributes

static $app = null
 
+

Detailed Description

+

Basic object

+

Contains what is usefull to any object

+

Member Function Documentation

+ +
+
+ + + + + + + +
BaseObject::get_app ()
+
+

Get the app

+

Same as get_app from boot.php

+ +

Referenced by Item\__construct(), Item\get_comment_box(), Item\get_template_data(), and Conversation\set_mode().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
static BaseObject::set_app ( $app)
+
+static
+
+

Set the app

+ +

Referenced by App\__construct().

+ +
+
+

Member Data Documentation

+ +
+
+ + + + + +
+ + + + +
BaseObject::$app = null
+
+staticprivate
+
+ +

Referenced by set_app().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classBaseObject.js b/doc/html/classBaseObject.js new file mode 100644 index 000000000..ba0c42902 --- /dev/null +++ b/doc/html/classBaseObject.js @@ -0,0 +1,4 @@ +var classBaseObject = +[ + [ "get_app", "classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2", null ] +]; \ No newline at end of file diff --git a/doc/html/classBaseObject.png b/doc/html/classBaseObject.png new file mode 100644 index 000000000..8cbd659ec Binary files /dev/null and b/doc/html/classBaseObject.png differ diff --git a/doc/html/classCache-members.html b/doc/html/classCache-members.html new file mode 100644 index 000000000..9afc53be0 --- /dev/null +++ b/doc/html/classCache-members.html @@ -0,0 +1,129 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Cache Member List
+
+
+ +

This is the complete list of members for Cache, including all inherited members.

+ + + + +
clear()Cachestatic
get($key)Cachestatic
set($key, $value)Cachestatic
+
+ + + + diff --git a/doc/html/classCache.html b/doc/html/classCache.html new file mode 100644 index 000000000..34c02c85e --- /dev/null +++ b/doc/html/classCache.html @@ -0,0 +1,228 @@ + + + + + + +The Red Project: Cache Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
Cache Class Reference
+
+
+ + + + + + + + +

+Static Public Member Functions

static get ($key)
 
static set ($key, $value)
 
static clear ()
 
+

Detailed Description

+

cache api

+

Member Function Documentation

+ +
+
+ + + + + +
+ + + + + + + +
static Cache::clear ()
+
+static
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
static Cache::get ( $key)
+
+static
+
+ +

Referenced by oembed_fetch_url().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
static Cache::set ( $key,
 $value 
)
+
+static
+
+ +

Referenced by oembed_fetch_url().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classConversation-members.html b/doc/html/classConversation-members.html new file mode 100644 index 000000000..7927747a5 --- /dev/null +++ b/doc/html/classConversation-members.html @@ -0,0 +1,142 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Conversation Member List
+
+ +
+ + + + diff --git a/doc/html/classConversation.html b/doc/html/classConversation.html new file mode 100644 index 000000000..246bb11a3 --- /dev/null +++ b/doc/html/classConversation.html @@ -0,0 +1,496 @@ + + + + + + +The Red Project: Conversation Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+
+Inheritance diagram for Conversation:
+
+
+ + +BaseObject + +
+ + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 __construct ($mode, $preview)
 
 get_mode ()
 
 is_writable ()
 
 is_preview ()
 
 get_profile_owner ()
 
 add_thread ($item)
 
 get_template_data ($alike, $dlike)
 
- Public Member Functions inherited from BaseObject
 get_app ()
 
+ + + + + +

+Private Member Functions

 set_mode ($mode)
 
 get_thread ($id)
 
+ + + + + + + + + + + +

+Private Attributes

 $threads = array()
 
 $mode = null
 
 $writable = false
 
 $profile_owner = 0
 
 $preview = false
 
+ + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from BaseObject
static set_app ($app)
 
+

Detailed Description

+

A list of threads

+

We should think about making this a SPL Iterator

+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
Conversation::__construct ( $mode,
 $preview 
)
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + +
Conversation::add_thread ( $item)
+
+

Add a thread to the conversation

+

Returns: _ The inserted item on success _ false on failure

+ +
+
+ +
+
+ + + + + + + +
Conversation::get_mode ()
+
+

Get mode

+ +

Referenced by set_mode().

+ +
+
+ +
+
+ + + + + + + +
Conversation::get_profile_owner ()
+
+

Get profile owner

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
Conversation::get_template_data ( $alike,
 $dlike 
)
+
+

Get data in a form usable by a conversation template

+

We should find a way to avoid using those arguments (at least most of them)

+

Returns: _ The data requested on success _ false on failure

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Conversation::get_thread ( $id)
+
+private
+
+

Get a thread based on its item id

+

Returns: _ The found item on success _ false on failure

+ +

Referenced by add_thread().

+ +
+
+ +
+
+ + + + + + + +
Conversation::is_preview ()
+
+

Check if page is a preview

+ +
+
+ +
+
+ + + + + + + +
Conversation::is_writable ()
+
+

Check if page is writable

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Conversation::set_mode ( $mode)
+
+private
+
+

Set the mode we'll be displayed on

+ +

Referenced by __construct().

+ +
+
+

Member Data Documentation

+ +
+
+ + + + + +
+ + + + +
Conversation::$mode = null
+
+private
+
+ +

Referenced by __construct(), get_mode(), and set_mode().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Conversation::$preview = false
+
+private
+
+ +

Referenced by __construct(), and is_preview().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Conversation::$profile_owner = 0
+
+private
+
+ +

Referenced by get_profile_owner().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Conversation::$threads = array()
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
Conversation::$writable = false
+
+private
+
+ +

Referenced by is_writable().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classConversation.js b/doc/html/classConversation.js new file mode 100644 index 000000000..b7320c15e --- /dev/null +++ b/doc/html/classConversation.js @@ -0,0 +1,17 @@ +var classConversation = +[ + [ "__construct", "classConversation.html#a6b064d00c56a6b7dec359d4348711c84", null ], + [ "add_thread", "classConversation.html#a8335cdd43f1836e3c255638e61a09e16", null ], + [ "get_mode", "classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd", null ], + [ "get_profile_owner", "classConversation.html#a5effe8ad3007e01333df44b81432b813", null ], + [ "get_template_data", "classConversation.html#a2a96b7a6573ae53db861624659e831cb", null ], + [ "get_thread", "classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8", null ], + [ "is_preview", "classConversation.html#adf25ce023b69a166c63c6e84e02c136a", null ], + [ "is_writable", "classConversation.html#a5879199008b96bee7550b576d614e1c1", null ], + [ "set_mode", "classConversation.html#a66f121ca4026246f86a732e5faa0682c", null ], + [ "$mode", "classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a", null ], + [ "$preview", "classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae", null ], + [ "$profile_owner", "classConversation.html#a2f12724ef0244e9049fe1bb9641b516d", null ], + [ "$threads", "classConversation.html#a41f4a549e6a99f98935c4742addd22c8", null ], + [ "$writable", "classConversation.html#ae81221251307e315f566a11f921ce0a9", null ] +]; \ No newline at end of file diff --git a/doc/html/classConversation.png b/doc/html/classConversation.png new file mode 100644 index 000000000..c4ab9b0ed Binary files /dev/null and b/doc/html/classConversation.png differ diff --git a/doc/html/classFKOAuth1-members.html b/doc/html/classFKOAuth1-members.html new file mode 100644 index 000000000..1802896cb --- /dev/null +++ b/doc/html/classFKOAuth1-members.html @@ -0,0 +1,128 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
FKOAuth1 Member List
+
+
+ +

This is the complete list of members for FKOAuth1, including all inherited members.

+ + + +
__construct()FKOAuth1
loginUser($uid)FKOAuth1
+
+ + + + diff --git a/doc/html/classFKOAuth1.html b/doc/html/classFKOAuth1.html new file mode 100644 index 000000000..a4be9e838 --- /dev/null +++ b/doc/html/classFKOAuth1.html @@ -0,0 +1,179 @@ + + + + + + +The Red Project: FKOAuth1 Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
FKOAuth1 Class Reference
+
+
+
+Inheritance diagram for FKOAuth1:
+
+
+ + + +
+ + + + + + +

+Public Member Functions

 __construct ()
 
 loginUser ($uid)
 
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + +
FKOAuth1::__construct ()
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + +
FKOAuth1::loginUser ( $uid)
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classFKOAuth1.js b/doc/html/classFKOAuth1.js new file mode 100644 index 000000000..dbaf2c2d5 --- /dev/null +++ b/doc/html/classFKOAuth1.js @@ -0,0 +1,5 @@ +var classFKOAuth1 = +[ + [ "__construct", "classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6", null ], + [ "loginUser", "classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f", null ] +]; \ No newline at end of file diff --git a/doc/html/classFKOAuth1.png b/doc/html/classFKOAuth1.png new file mode 100644 index 000000000..740172c10 Binary files /dev/null and b/doc/html/classFKOAuth1.png differ diff --git a/doc/html/classFKOAuthDataStore-members.html b/doc/html/classFKOAuthDataStore-members.html new file mode 100644 index 000000000..0a71645e1 --- /dev/null +++ b/doc/html/classFKOAuthDataStore-members.html @@ -0,0 +1,132 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
FKOAuthDataStore Member List
+
+
+ +

This is the complete list of members for FKOAuthDataStore, including all inherited members.

+ + + + + + + +
gen_token()FKOAuthDataStore
lookup_consumer($consumer_key)FKOAuthDataStore
lookup_nonce($consumer, $token, $nonce, $timestamp)FKOAuthDataStore
lookup_token($consumer, $token_type, $token)FKOAuthDataStore
new_access_token($token, $consumer, $verifier=null)FKOAuthDataStore
new_request_token($consumer, $callback=null)FKOAuthDataStore
+
+ + + + diff --git a/doc/html/classFKOAuthDataStore.html b/doc/html/classFKOAuthDataStore.html new file mode 100644 index 000000000..a0935aa9b --- /dev/null +++ b/doc/html/classFKOAuthDataStore.html @@ -0,0 +1,316 @@ + + + + + + +The Red Project: FKOAuthDataStore Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
FKOAuthDataStore Class Reference
+
+
+
+Inheritance diagram for FKOAuthDataStore:
+
+
+ + + +
+ + + + + + + + + + + + + + +

+Public Member Functions

 gen_token ()
 
 lookup_consumer ($consumer_key)
 
 lookup_token ($consumer, $token_type, $token)
 
 lookup_nonce ($consumer, $token, $nonce, $timestamp)
 
 new_request_token ($consumer, $callback=null)
 
 new_access_token ($token, $consumer, $verifier=null)
 
+

Member Function Documentation

+ +
+
+ + + + + + + +
FKOAuthDataStore::gen_token ()
+
+ +

Referenced by new_access_token(), and new_request_token().

+ +
+
+ +
+
+ + + + + + + + +
FKOAuthDataStore::lookup_consumer ( $consumer_key)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FKOAuthDataStore::lookup_nonce ( $consumer,
 $token,
 $nonce,
 $timestamp 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FKOAuthDataStore::lookup_token ( $consumer,
 $token_type,
 $token 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FKOAuthDataStore::new_access_token ( $token,
 $consumer,
 $verifier = null 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
FKOAuthDataStore::new_request_token ( $consumer,
 $callback = null 
)
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classFKOAuthDataStore.js b/doc/html/classFKOAuthDataStore.js new file mode 100644 index 000000000..29825cdac --- /dev/null +++ b/doc/html/classFKOAuthDataStore.js @@ -0,0 +1,9 @@ +var classFKOAuthDataStore = +[ + [ "gen_token", "classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819", null ], + [ "lookup_consumer", "classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1", null ], + [ "lookup_nonce", "classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599", null ], + [ "lookup_token", "classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab", null ], + [ "new_access_token", "classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934", null ], + [ "new_request_token", "classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050", null ] +]; \ No newline at end of file diff --git a/doc/html/classFKOAuthDataStore.png b/doc/html/classFKOAuthDataStore.png new file mode 100644 index 000000000..1d61bd0de Binary files /dev/null and b/doc/html/classFKOAuthDataStore.png differ diff --git a/doc/html/classFriendicaSmarty-members.html b/doc/html/classFriendicaSmarty-members.html new file mode 100644 index 000000000..15ebca980 --- /dev/null +++ b/doc/html/classFriendicaSmarty-members.html @@ -0,0 +1,129 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
FriendicaSmarty Member List
+
+
+ +

This is the complete list of members for FriendicaSmarty, including all inherited members.

+ + + + +
$filenameFriendicaSmarty
__construct()FriendicaSmarty
parsed($template= '')FriendicaSmarty
+
+ + + + diff --git a/doc/html/classFriendicaSmarty.html b/doc/html/classFriendicaSmarty.html new file mode 100644 index 000000000..8430aa5b6 --- /dev/null +++ b/doc/html/classFriendicaSmarty.html @@ -0,0 +1,198 @@ + + + + + + +The Red Project: FriendicaSmarty Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
FriendicaSmarty Class Reference
+
+
+
+Inheritance diagram for FriendicaSmarty:
+
+
+ + + +
+ + + + + + +

+Public Member Functions

 __construct ()
 
 parsed ($template= '')
 
+ + + +

+Public Attributes

 $filename
 
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + +
FriendicaSmarty::__construct ()
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + +
FriendicaSmarty::parsed ( $template = '')
+
+ +
+
+

Member Data Documentation

+ +
+
+ + + + +
FriendicaSmarty::$filename
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classFriendicaSmarty.js b/doc/html/classFriendicaSmarty.js new file mode 100644 index 000000000..eded144b6 --- /dev/null +++ b/doc/html/classFriendicaSmarty.js @@ -0,0 +1,6 @@ +var classFriendicaSmarty = +[ + [ "__construct", "classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6", null ], + [ "parsed", "classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9", null ], + [ "$filename", "classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690", null ] +]; \ No newline at end of file diff --git a/doc/html/classFriendicaSmarty.png b/doc/html/classFriendicaSmarty.png new file mode 100644 index 000000000..a2fffb758 Binary files /dev/null and b/doc/html/classFriendicaSmarty.png differ diff --git a/doc/html/classItem-members.html b/doc/html/classItem-members.html new file mode 100644 index 000000000..c6d6b43c9 --- /dev/null +++ b/doc/html/classItem-members.html @@ -0,0 +1,175 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Item Member List
+
+
+ +

This is the complete list of members for Item, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$channelItemprivate
$childrenItemprivate
$comment_box_templateItemprivate
$commentableItemprivate
$conversationItemprivate
$dataItemprivate
$observerItemprivate
$owner_nameItemprivate
$owner_photoItemprivate
$owner_urlItemprivate
$parentItemprivate
$redirect_urlItemprivate
$templateItemprivate
$threadedItemprivate
$toplevelItemprivate
$visitingItemprivate
$wall_to_wallItemprivate
$writableItemprivate
__construct($data)Item
add_child($item)Item
check_wall_to_wall()Itemprotected
count_descendants()Itemprivate
get_app()BaseObject
get_child($id)Item
get_children()Item
get_comment_box($indent)Itemprivate
get_comment_box_template()Itemprivate
get_conversation()Item
get_data()Item
get_data_value($name)Item
get_id()Item
get_owner_name()Itemprivate
get_owner_photo()Itemprivate
get_owner_url()Itemprivate
get_parent()Itemprotected
get_redirect_url()Itemprivate
get_template()Itemprivate
get_template_data($alike, $dlike, $thread_level=1)Item
is_commentable()Itemprivate
is_threaded()Item
is_toplevel()Itemprivate
is_visiting()Itemprivate
is_wall_to_wall()Itemprivate
is_writable()Itemprivate
remove_child($item)Item
remove_parent()Itemprotected
set_app($app)BaseObjectstatic
set_conversation($conv)Item
set_parent($item)Itemprotected
+
+ + + + diff --git a/doc/html/classItem.html b/doc/html/classItem.html new file mode 100644 index 000000000..dda09b540 --- /dev/null +++ b/doc/html/classItem.html @@ -0,0 +1,1318 @@ + + + + + + +The Red Project: Item Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+
+Inheritance diagram for Item:
+
+
+ + +BaseObject + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 __construct ($data)
 
 get_template_data ($alike, $dlike, $thread_level=1)
 
 get_id ()
 
 is_threaded ()
 
 add_child ($item)
 
 get_child ($id)
 
 get_children ()
 
 remove_child ($item)
 
 set_conversation ($conv)
 
 get_conversation ()
 
 get_data ()
 
 get_data_value ($name)
 
- Public Member Functions inherited from BaseObject
 get_app ()
 
+ + + + + + + + + +

+Protected Member Functions

 set_parent ($item)
 
 remove_parent ()
 
 get_parent ()
 
 check_wall_to_wall ()
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Private Member Functions

 get_template ()
 
 is_toplevel ()
 
 is_writable ()
 
 is_commentable ()
 
 count_descendants ()
 
 get_comment_box_template ()
 
 get_comment_box ($indent)
 
 get_redirect_url ()
 
 is_wall_to_wall ()
 
 get_owner_url ()
 
 get_owner_photo ()
 
 get_owner_name ()
 
 is_visiting ()
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Private Attributes

 $data = array()
 
 $template = 'conv_item.tpl'
 
 $comment_box_template = 'comment_item.tpl'
 
 $toplevel = false
 
 $writable = false
 
 $commentable = false
 
 $children = array()
 
 $parent = null
 
 $conversation = null
 
 $redirect_url = null
 
 $owner_url = ''
 
 $owner_photo = ''
 
 $owner_name = ''
 
 $wall_to_wall = false
 
 $threaded = false
 
 $visiting = false
 
 $observer = null
 
 $channel = null
 
+ + + + +

+Additional Inherited Members

- Static Public Member Functions inherited from BaseObject
static set_app ($app)
 
+

Detailed Description

+

An item

+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + +
Item::__construct ( $data)
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + +
Item::add_child ( $item)
+
+

Add a child item

+ +

Referenced by __construct().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::check_wall_to_wall ()
+
+protected
+
+

Check if we are a wall to wall item and set the relevant properties

+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::count_descendants ()
+
+private
+
+

Count the total of our descendants

+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + + + + +
Item::get_child ( $id)
+
+

Get a child by its ID

+ +

Referenced by add_child().

+ +
+
+ +
+
+ + + + + + + +
Item::get_children ()
+
+

Get all our children

+ +

Referenced by count_descendants(), get_child(), get_template_data(), remove_child(), and set_conversation().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Item::get_comment_box ( $indent)
+
+private
+
+

Get the comment box

+

Returns: _ The comment box string (empty if no comment box) _ false on failure

+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::get_comment_box_template ()
+
+private
+
+

Get the template for the comment box

+ +

Referenced by get_comment_box().

+ +
+
+ +
+
+ + + + + + + +
Item::get_conversation ()
+
+

get conversation

+ +

Referenced by check_wall_to_wall(), get_comment_box(), and get_template_data().

+ +
+
+ +
+
+ + + + + + + +
Item::get_data ()
+
+

Get raw data

+

We shouldn't need this

+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + + + + +
Item::get_data_value ( $name)
+
+

Get a data value

+

Returns: _ value on success _ false on failure

+ +

Referenced by __construct(), check_wall_to_wall(), get_id(), and get_template_data().

+ +
+
+ +
+
+ + + + + + + +
Item::get_id ()
+
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::get_owner_name ()
+
+private
+
+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::get_owner_photo ()
+
+private
+
+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::get_owner_url ()
+
+private
+
+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::get_parent ()
+
+protected
+
+

Get parent item

+ +

Referenced by set_parent().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::get_redirect_url ()
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::get_template ()
+
+private
+
+

Get template

+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
Item::get_template_data ( $alike,
 $dlike,
 $thread_level = 1 
)
+
+

Get data in a form usable by a conversation template

+

Returns: _ The data requested on success _ false on failure

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::is_commentable ()
+
+private
+
+ +

Referenced by get_comment_box(), and get_template_data().

+ +
+
+ +
+
+ + + + + + + +
Item::is_threaded ()
+
+ +

Referenced by get_comment_box(), and get_template_data().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::is_toplevel ()
+
+private
+
+

Check if this is a toplevel post

+ +

Referenced by check_wall_to_wall(), get_comment_box(), and get_template_data().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::is_visiting ()
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::is_wall_to_wall ()
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::is_writable ()
+
+private
+
+

Check if this is writable

+ +

Referenced by get_comment_box().

+ +
+
+ +
+
+ + + + + + + + +
Item::remove_child ( $item)
+
+

Remove a child

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Item::remove_parent ()
+
+protected
+
+

Remove our parent

+ +
+
+ +
+
+ + + + + + + + +
Item::set_conversation ( $conv)
+
+

set conversation

+ +

Referenced by set_parent().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Item::set_parent ( $item)
+
+protected
+
+

Set our parent

+ +
+
+

Member Data Documentation

+ +
+
+ + + + + +
+ + + + +
Item::$channel = null
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$children = array()
+
+private
+
+
+ +
+
+ + + + + +
+ + + + +
Item::$comment_box_template = 'comment_item.tpl'
+
+private
+
+ +

Referenced by get_comment_box_template().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$commentable = false
+
+private
+
+ +

Referenced by is_commentable().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$conversation = null
+
+private
+
+ +

Referenced by get_conversation().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$data = array()
+
+private
+
+ +

Referenced by __construct(), and get_data().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$observer = null
+
+private
+
+ +

Referenced by get_template_data().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$owner_name = ''
+
+private
+
+ +

Referenced by get_owner_name().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$owner_photo = ''
+
+private
+
+ +

Referenced by get_owner_photo().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$owner_url = ''
+
+private
+
+ +

Referenced by get_owner_url().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$parent = null
+
+private
+
+ +

Referenced by get_parent(), and set_parent().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$redirect_url = null
+
+private
+
+ +

Referenced by get_redirect_url().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$template = 'conv_item.tpl'
+
+private
+
+ +

Referenced by get_comment_box(), and get_template().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$threaded = false
+
+private
+
+ +

Referenced by is_threaded().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$toplevel = false
+
+private
+
+ +

Referenced by is_toplevel().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$visiting = false
+
+private
+
+ +

Referenced by is_visiting().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$wall_to_wall = false
+
+private
+
+ +

Referenced by is_wall_to_wall().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Item::$writable = false
+
+private
+
+ +

Referenced by __construct(), and is_writable().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classItem.js b/doc/html/classItem.js new file mode 100644 index 000000000..21609a2cb --- /dev/null +++ b/doc/html/classItem.js @@ -0,0 +1,50 @@ +var classItem = +[ + [ "__construct", "classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2", null ], + [ "add_child", "classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51", null ], + [ "check_wall_to_wall", "classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8", null ], + [ "count_descendants", "classItem.html#aca1e66988ed00cd627b2a359b72cd0ae", null ], + [ "get_child", "classItem.html#a632185dd25c5caf277067c76230a4320", null ], + [ "get_children", "classItem.html#aa0ee775ec94abccec6c798428835d001", null ], + [ "get_comment_box", "classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf", null ], + [ "get_comment_box_template", "classItem.html#a904421c7a427411bb2ab473bca872f63", null ], + [ "get_conversation", "classItem.html#a0c301aaed2b7d682728d18db3a22afa3", null ], + [ "get_data", "classItem.html#ad3638f93065693c1f69eb349feb1b7aa", null ], + [ "get_data_value", "classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c", null ], + [ "get_id", "classItem.html#ac0f27e58532612f6e7a54c8a621b9b92", null ], + [ "get_owner_name", "classItem.html#a67892aa23d19f4431bb2e5f43c74000e", null ], + [ "get_owner_photo", "classItem.html#aa541bc4290e51bfd688d6921bebabc73", null ], + [ "get_owner_url", "classItem.html#a9f2d219da712390f59012fc32a342074", null ], + [ "get_parent", "classItem.html#a4b92e3a9d6212c553aa2661489bd95d8", null ], + [ "get_redirect_url", "classItem.html#a428f448f89a8629055ea3294eb942aea", null ], + [ "get_template", "classItem.html#aba23a0a9d89e316d2b343cc46d695d91", null ], + [ "get_template_data", "classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8", null ], + [ "is_commentable", "classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967", null ], + [ "is_threaded", "classItem.html#a5b2fafdca55aefeaa08993a5a60529f0", null ], + [ "is_toplevel", "classItem.html#aa49e40f961dff66da32c5ae110e32993", null ], + [ "is_visiting", "classItem.html#a97c7feeea7f26a73176cb19faa455e12", null ], + [ "is_wall_to_wall", "classItem.html#aabf87ded59c25b5fe2b2296678e70509", null ], + [ "is_writable", "classItem.html#a99253fb1ca6f430a0b181689ef206861", null ], + [ "remove_child", "classItem.html#a2ce70ef63f9f4d86a09c351678806925", null ], + [ "remove_parent", "classItem.html#aa452b5bcd8dea12119b09212c615cb41", null ], + [ "set_conversation", "classItem.html#aa8b1bbc4236890694635295e46d7fd72", null ], + [ "set_parent", "classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7", null ], + [ "$channel", "classItem.html#acc32426c0f465391be8a99ad810c7b8e", null ], + [ "$children", "classItem.html#a80dcd0fb7673776c0967839d429c2a0f", null ], + [ "$comment_box_template", "classItem.html#a90743c8348b13213275c223bb9333aa0", null ], + [ "$commentable", "classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304", null ], + [ "$conversation", "classItem.html#a007424e3e3171dcfb4312a02161da6cd", null ], + [ "$data", "classItem.html#aec24e233f9098f902b1e57e60dcb2019", null ], + [ "$observer", "classItem.html#a379c8a156da092ad0be90a0d2fec3c0f", null ], + [ "$owner_name", "classItem.html#a9594df6014b0b6f45364ea7a34510130", null ], + [ "$owner_photo", "classItem.html#a078f95b4134ce3a1df344cf8d386f986", null ], + [ "$owner_url", "classItem.html#afa54851df82962c7c42dea3cc9f5c92c", null ], + [ "$parent", "classItem.html#a1a1e42877e6ac7af50286142ceb483d2", null ], + [ "$redirect_url", "classItem.html#a5b561415861f5b89b0733aacfe0428d1", null ], + [ "$template", "classItem.html#a7f7bc059de377319282cb4ef4a828480", null ], + [ "$threaded", "classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2", null ], + [ "$toplevel", "classItem.html#a5cfa6cf964f433a917a81cab079ff9d8", null ], + [ "$visiting", "classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8", null ], + [ "$wall_to_wall", "classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189", null ], + [ "$writable", "classItem.html#af514e893765deda92125ce84024d3ad5", null ] +]; \ No newline at end of file diff --git a/doc/html/classItem.png b/doc/html/classItem.png new file mode 100644 index 000000000..d1000fab9 Binary files /dev/null and b/doc/html/classItem.png differ diff --git a/doc/html/classPhoto-members.html b/doc/html/classPhoto-members.html new file mode 100644 index 000000000..0dd77b4dd --- /dev/null +++ b/doc/html/classPhoto-members.html @@ -0,0 +1,154 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Photo Member List
+
+
+ +

This is the complete list of members for Photo, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
$heightPhotoprivate
$imagePhotoprivate
$imagickPhotoprivate
$typePhotoprivate
$typesPhotoprivate
$validPhotoprivate
$widthPhotoprivate
__construct($data, $type=null)Photo
__destruct()Photo
cropImage($max, $x, $y, $w, $h)Photo
flip($horiz=true, $vert=false)Photo
get_FormatsMap()Photo
getExt()Photo
getHeight()Photo
getImage()Photo
getType()Photo
getWidth()Photo
imageString()Photo
is_imagick()Photo
is_valid()Photo
orient($filename)Photo
rotate($degrees)Photo
saveImage($path)Photo
scaleImage($max)Photo
scaleImageSquare($dim)Photo
scaleImageUp($min)Photo
store($aid, $uid, $xchan, $rid, $filename, $album, $scale, $profile=0, $allow_cid= '', $allow_gid= '', $deny_cid= '', $deny_gid= '')Photo
supportedTypes()Photostatic
+
+ + + + diff --git a/doc/html/classPhoto.html b/doc/html/classPhoto.html new file mode 100644 index 000000000..7f7ab186a --- /dev/null +++ b/doc/html/classPhoto.html @@ -0,0 +1,836 @@ + + + + + + +The Red Project: Photo Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 __construct ($data, $type=null)
 
 __destruct ()
 
 is_imagick ()
 
 get_FormatsMap ()
 
 is_valid ()
 
 getWidth ()
 
 getHeight ()
 
 getImage ()
 
 getType ()
 
 getExt ()
 
 scaleImage ($max)
 
 rotate ($degrees)
 
 flip ($horiz=true, $vert=false)
 
 orient ($filename)
 
 scaleImageUp ($min)
 
 scaleImageSquare ($dim)
 
 cropImage ($max, $x, $y, $w, $h)
 
 saveImage ($path)
 
 imageString ()
 
 store ($aid, $uid, $xchan, $rid, $filename, $album, $scale, $profile=0, $allow_cid= '', $allow_gid= '', $deny_cid= '', $deny_gid= '')
 
+ + + +

+Static Public Member Functions

static supportedTypes ()
 
+ + + + + + + + + + + + + + + +

+Private Attributes

 $image
 
 $imagick
 
 $width
 
 $height
 
 $valid
 
 $type
 
 $types
 
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
Photo::__construct ( $data,
 $type = null 
)
+
+

Setup the image to the format it will be saved to

+

setup the compression here, so we'll do it only once

+

From http://www.imagemagick.org/script/command-line-options.php#quality:

+

'For the MNG and PNG image formats, the quality value sets the zlib compression level (quality / 10) and filter-type (quality % 10). The default PNG "quality" is 75, which means compression level 7 with adaptive PNG filtering, unless the image has a color map, in which case it means compression level 7 with no PNG filtering'

+ +
+
+ +
+
+ + + + + + + +
Photo::__destruct ()
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Photo::cropImage ( $max,
 $x,
 $y,
 $w,
 $h 
)
+
+

We need to remove the canva, or the image is not resized to the crop: http://php.net/manual/en/imagick.cropimage.php#97232

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
Photo::flip ( $horiz = true,
 $vert = false 
)
+
+ +

Referenced by orient().

+ +
+
+ +
+
+ + + + + + + +
Photo::get_FormatsMap ()
+
+

Maps Mime types to Imagick formats

+ +

Referenced by __construct().

+ +
+
+ +
+
+ + + + + + + +
Photo::getExt ()
+
+ +
+
+ +
+
+ + + + + + + +
Photo::getHeight ()
+
+ +

Referenced by store().

+ +
+
+ +
+
+ + + + + + + +
Photo::getImage ()
+
+ +
+
+ +
+
+ + + + + + + +
Photo::getType ()
+
+ +

Referenced by __construct(), getExt(), imageString(), orient(), and store().

+ +
+
+ +
+
+ + + + + + + +
Photo::getWidth ()
+
+ +

Referenced by store().

+ +
+
+ +
+
+ + + + + + + +
Photo::imageString ()
+
+ +

Referenced by saveImage(), and store().

+ +
+
+ + + + + +
+
+ + + + + + + + +
Photo::orient ( $filename)
+
+ +
+
+ +
+
+ + + + + + + + +
Photo::rotate ( $degrees)
+
+ +

Referenced by orient().

+ +
+
+ +
+
+ + + + + + + + +
Photo::saveImage ( $path)
+
+ +
+
+ +
+
+ + + + + + + + +
Photo::scaleImage ( $max)
+
+

If it is not animated, there will be only one iteration here, so don't bother checking

+ +

Referenced by cropImage(), and scaleImageUp().

+ +
+
+ +
+
+ + + + + + + + +
Photo::scaleImageSquare ( $dim)
+
+ +
+
+ +
+
+ + + + + + + + +
Photo::scaleImageUp ( $min)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Photo::store ( $aid,
 $uid,
 $xchan,
 $rid,
 $filename,
 $album,
 $scale,
 $profile = 0,
 $allow_cid = '',
 $allow_gid = '',
 $deny_cid = '',
 $deny_gid = '' 
)
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
static Photo::supportedTypes ()
+
+static
+
+

supported mimetypes and corresponding file extensions

+

Imagick::queryFormats won't help us a lot there... At least, not yet, other parts of friendica uses this array

+ +

Referenced by __construct(), fbrowser_content(), guess_image_type(), photos_content(), and photos_post().

+ +
+
+

Member Data Documentation

+ +
+
+ + + + + +
+ + + + +
Photo::$height
+
+private
+
+ +

Referenced by getHeight(), scaleImage(), and scaleImageUp().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Photo::$image
+
+private
+
+ +

Referenced by getImage().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Photo::$imagick
+
+private
+
+

Put back gd stuff, not everybody have Imagick

+ +

Referenced by is_imagick().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Photo::$type
+
+private
+
+ +

Referenced by __construct(), and getType().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Photo::$types
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
Photo::$valid
+
+private
+
+ +

Referenced by is_valid().

+ +
+
+ +
+
+ + + + + +
+ + + + +
Photo::$width
+
+private
+
+ +

Referenced by getWidth(), scaleImage(), and scaleImageUp().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classPhoto.js b/doc/html/classPhoto.js new file mode 100644 index 000000000..dd688af4b --- /dev/null +++ b/doc/html/classPhoto.js @@ -0,0 +1,30 @@ +var classPhoto = +[ + [ "__construct", "classPhoto.html#ad06199e7c1222350ef8c1cdcfade265c", null ], + [ "__destruct", "classPhoto.html#a0906cba2a2a895cc22179de27449cbd2", null ], + [ "cropImage", "classPhoto.html#a4ace266825f6b2bbc3c7f990f5d92500", null ], + [ "flip", "classPhoto.html#a7acd95a0380f95999dd069fbb5629ea5", null ], + [ "get_FormatsMap", "classPhoto.html#a1f00f0e1b6d90c5d83d8d3febb703075", null ], + [ "getExt", "classPhoto.html#ade61db6eb69c065e4df66feaa1942d29", null ], + [ "getHeight", "classPhoto.html#ab83e29500828ead47ac0a8cb9439082c", null ], + [ "getImage", "classPhoto.html#a29213571e2688f17240cd2b3892d7a62", null ], + [ "getType", "classPhoto.html#ad17537abe440ac133c3b2d951f92677b", null ], + [ "getWidth", "classPhoto.html#a74a04f56215cee00533b85b24daecfb1", null ], + [ "imageString", "classPhoto.html#a7c4be19101d5a289a491428c2f8d747c", null ], + [ "is_imagick", "classPhoto.html#abad44c9fc7a1853920555398bf905433", null ], + [ "is_valid", "classPhoto.html#a66705cd7db1f8dce59ceac57dbf14476", null ], + [ "orient", "classPhoto.html#a32ff09cd464a48bc8e510a1403410753", null ], + [ "rotate", "classPhoto.html#a8b2b0a7f949a566c21e0160fbf047666", null ], + [ "saveImage", "classPhoto.html#af522871c8ab451155b9745fa7f057943", null ], + [ "scaleImage", "classPhoto.html#a4ff11117ada771637a61a668d2af6636", null ], + [ "scaleImageSquare", "classPhoto.html#a080a5219eb09c2621dabeae153ce6a03", null ], + [ "scaleImageUp", "classPhoto.html#a735eb657277e7a46cebe7f6fde0af80a", null ], + [ "store", "classPhoto.html#a15e21237805d5f1019b4e40322389194", null ], + [ "$height", "classPhoto.html#a2b05906daa294e0c904aff0ba24b5bd3", null ], + [ "$image", "classPhoto.html#aa09af89979e3e46c0c58989ee063d69d", null ], + [ "$imagick", "classPhoto.html#a040b23beaab0c0db4311b31cae6b8106", null ], + [ "$type", "classPhoto.html#af87e8ec7587bbcb28f91e7548f560695", null ], + [ "$types", "classPhoto.html#a338d80512bdfeb6a6a00a9381d76de5f", null ], + [ "$valid", "classPhoto.html#a50e0b85ea8a3f724dd74366756669e61", null ], + [ "$width", "classPhoto.html#af18778643b1f6c637d9d7f5abd561f11", null ] +]; \ No newline at end of file diff --git a/doc/html/classProtoDriver-members.html b/doc/html/classProtoDriver-members.html new file mode 100644 index 000000000..63e0b6b00 --- /dev/null +++ b/doc/html/classProtoDriver-members.html @@ -0,0 +1,133 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
ProtoDriver Member List
+
+
+ +

This is the complete list of members for ProtoDriver, including all inherited members.

+ + + + + + + + +
acknowledge_permissions($permissions, $channel, $recipient)ProtoDriverprotected
change_permissions($permissions, $channel, $recipient)ProtoDriverprotected
collect($channel, $connection)ProtoDriverprotected
collect_private($channel, $connection)ProtoDriverprotected
deliver($item, $channel, $recipients)ProtoDriverprotected
deliver_private($item, $channel, $recipients)ProtoDriverprotected
discover($channel, $location)ProtoDriverprotected
+
+ + + + diff --git a/doc/html/classProtoDriver.html b/doc/html/classProtoDriver.html new file mode 100644 index 000000000..be23800ca --- /dev/null +++ b/doc/html/classProtoDriver.html @@ -0,0 +1,420 @@ + + + + + + +The Red Project: ProtoDriver Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
ProtoDriver Class Reference
+
+
+
+Inheritance diagram for ProtoDriver:
+
+
+ + +ZotDriver + +
+ + + + + + + + + + + + + + + + +

+Protected Member Functions

 discover ($channel, $location)
 
 deliver ($item, $channel, $recipients)
 
 collect ($channel, $connection)
 
 change_permissions ($permissions, $channel, $recipient)
 
 acknowledge_permissions ($permissions, $channel, $recipient)
 
 deliver_private ($item, $channel, $recipients)
 
 collect_private ($channel, $connection)
 
+

Member Function Documentation

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ProtoDriver::acknowledge_permissions ( $permissions,
 $channel,
 $recipient 
)
+
+abstractprotected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ProtoDriver::change_permissions ( $permissions,
 $channel,
 $recipient 
)
+
+abstractprotected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
ProtoDriver::collect ( $channel,
 $connection 
)
+
+abstractprotected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
ProtoDriver::collect_private ( $channel,
 $connection 
)
+
+abstractprotected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ProtoDriver::deliver ( $item,
 $channel,
 $recipients 
)
+
+abstractprotected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ProtoDriver::deliver_private ( $item,
 $channel,
 $recipients 
)
+
+abstractprotected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
ProtoDriver::discover ( $channel,
 $location 
)
+
+abstractprotected
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classProtoDriver.js b/doc/html/classProtoDriver.js new file mode 100644 index 000000000..f5b39cecb --- /dev/null +++ b/doc/html/classProtoDriver.js @@ -0,0 +1,10 @@ +var classProtoDriver = +[ + [ "acknowledge_permissions", "classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a", null ], + [ "change_permissions", "classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67", null ], + [ "collect", "classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d", null ], + [ "collect_private", "classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b", null ], + [ "deliver", "classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b", null ], + [ "deliver_private", "classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181", null ], + [ "discover", "classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337", null ] +]; \ No newline at end of file diff --git a/doc/html/classProtoDriver.png b/doc/html/classProtoDriver.png new file mode 100644 index 000000000..08fe5d4c4 Binary files /dev/null and b/doc/html/classProtoDriver.png differ diff --git a/doc/html/classTemplate-members.html b/doc/html/classTemplate-members.html new file mode 100644 index 000000000..a03aaaae3 --- /dev/null +++ b/doc/html/classTemplate-members.html @@ -0,0 +1,148 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Template Member List
+
+
+ +

This is the complete list of members for Template, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + +
$dTemplate
$debugTemplate
$doneTemplate
$langTemplate
$nodesTemplate
$rTemplate
$replaceTemplate
$searchTemplate
$stackTemplate
_build_nodes($s)Templateprivate
_get_var($name, $retNoKey=false)Templateprivate
_pop_stack()Templateprivate
_preg_error()Templateprivate
_push_stack()Templateprivate
_replcb($m)Templateprivate
_replcb_debug($args)Templateprivate
_replcb_for($args)Templateprivate
_replcb_if($args)Templateprivate
_replcb_inc($args)Templateprivate
_replcb_node($m)Templateprivate
replace($s, $r)Template
var_replace($s)Templateprivate
+
+ + + + diff --git a/doc/html/classTemplate.html b/doc/html/classTemplate.html new file mode 100644 index 000000000..849127e2e --- /dev/null +++ b/doc/html/classTemplate.html @@ -0,0 +1,643 @@ + + + + + + +The Red Project: Template Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+ + + + +

+Public Member Functions

 replace ($s, $r)
 
+ + + + + + + + + + + + + + + + + + + +

+Public Attributes

 $r
 
 $search
 
 $replace
 
 $stack = array()
 
 $nodes = array()
 
 $done = false
 
 $d = false
 
 $lang = null
 
 $debug =false
 
+ + + + + + + + + + + + + + + + + + + + + + + + + +

+Private Member Functions

 _preg_error ()
 
 _push_stack ()
 
 _pop_stack ()
 
 _get_var ($name, $retNoKey=false)
 
 _replcb_if ($args)
 
 _replcb_for ($args)
 
 _replcb_inc ($args)
 
 _replcb_debug ($args)
 
 _replcb_node ($m)
 
 _replcb ($m)
 
 _build_nodes ($s)
 
 var_replace ($s)
 
+

Member Function Documentation

+ +
+
+ + + + + +
+ + + + + + + + +
Template::_build_nodes ( $s)
+
+private
+
+ +

Referenced by replace().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Template::_get_var ( $name,
 $retNoKey = false 
)
+
+private
+
+
+ +
+
+ + + + + +
+ + + + + + + +
Template::_pop_stack ()
+
+private
+
+ +

Referenced by _replcb_for(), and _replcb_inc().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Template::_preg_error ()
+
+private
+
+ +

Referenced by _build_nodes(), and replace().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Template::_push_stack ()
+
+private
+
+ +

Referenced by _replcb_for(), and _replcb_inc().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Template::_replcb ( $m)
+
+private
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Template::_replcb_debug ( $args)
+
+private
+
+

DEBUG node

+

{{ debug $var [$var [$var [...]]] }}{{ enddebug }}

+

replace node with

+
var_dump($var, $var, ...);
+
+
+ +
+
+ + + + + +
+ + + + + + + + +
Template::_replcb_for ( $args)
+
+private
+
+

FOR node

+

{{ for < $var>=""> as $name }}...{{ endfor }} {{ for < $var>=""> as $key=>$name }}...{{ endfor }}

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Template::_replcb_if ( $args)
+
+private
+
+

IF node

+

{{ if < $var>=""> }}...[{{ else }} ...] {{ endif }} {{ if < $var>="">==<val|$var> }}...[{{ else }} ...]{{ endif }} {{ if < $var>="">!=<val|$var> }}...[{{ else }} ...]{{ endif }}

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Template::_replcb_inc ( $args)
+
+private
+
+

INC node

+

{{ inc <templatefile> [with $var1=$var2] }}{{ endinc }}

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Template::_replcb_node ( $m)
+
+private
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
Template::replace ( $s,
 $r 
)
+
+ +

Referenced by _replcb_for(), and _replcb_inc().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
Template::var_replace ( $s)
+
+private
+
+

regexp: $ literal $ ([)? optional open square bracket ([a-zA-Z0-9-_]+.?)+ var name, followed by optional dot, repeated at least 1 time (?(1)]) if there was opened square bracket (subgrup 1), match close bracket

+ +

Referenced by replace().

+ +
+
+

Member Data Documentation

+ +
+
+ + + + +
Template::$d = false
+
+ +
+
+ +
+
+ + + + +
Template::$debug =false
+
+ +
+
+ +
+
+ + + + +
Template::$done = false
+
+ +
+
+ +
+
+ + + + +
Template::$lang = null
+
+ +
+
+ +
+
+ + + + +
Template::$nodes = array()
+
+ +
+
+ +
+
+ + + + +
Template::$r
+
+ +

Referenced by _get_var(), _replcb_for(), _replcb_inc(), and replace().

+ +
+
+ +
+
+ + + + +
Template::$replace
+
+ +
+
+ +
+
+ + + + +
Template::$search
+
+ +
+
+ +
+
+ + + + +
Template::$stack = array()
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classTemplate.js b/doc/html/classTemplate.js new file mode 100644 index 000000000..2b0d6428d --- /dev/null +++ b/doc/html/classTemplate.js @@ -0,0 +1,25 @@ +var classTemplate = +[ + [ "_build_nodes", "classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4", null ], + [ "_get_var", "classTemplate.html#aae9c4d761ea1298e745e8052d7910194", null ], + [ "_pop_stack", "classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7", null ], + [ "_preg_error", "classTemplate.html#a37c15f6d1ade500943629f27a62808b7", null ], + [ "_push_stack", "classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29", null ], + [ "_replcb", "classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934", null ], + [ "_replcb_debug", "classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e", null ], + [ "_replcb_for", "classTemplate.html#abf71098c80fd1f218a59452b3408309e", null ], + [ "_replcb_if", "classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228", null ], + [ "_replcb_inc", "classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677", null ], + [ "_replcb_node", "classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee", null ], + [ "replace", "classTemplate.html#a285b5b2007dbbf733476273df3fed4ef", null ], + [ "var_replace", "classTemplate.html#abbc484016ddf5d818f55b823cae6feb0", null ], + [ "$d", "classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38", null ], + [ "$debug", "classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a", null ], + [ "$done", "classTemplate.html#abda4c8d049f70553338eae7c905e9d5c", null ], + [ "$lang", "classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8", null ], + [ "$nodes", "classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1", null ], + [ "$r", "classTemplate.html#aac9a4638f11271e1b1dcc9f247242718", null ], + [ "$replace", "classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10", null ], + [ "$search", "classTemplate.html#a317d535946dc065c35dd5cd38380e6c6", null ], + [ "$stack", "classTemplate.html#a6f0efc256688c36110180b501067ff11", null ] +]; \ No newline at end of file diff --git a/doc/html/classZotDriver-members.html b/doc/html/classZotDriver-members.html new file mode 100644 index 000000000..5c1bc5dff --- /dev/null +++ b/doc/html/classZotDriver-members.html @@ -0,0 +1,133 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
ZotDriver Member List
+
+
+ +

This is the complete list of members for ZotDriver, including all inherited members.

+ + + + + + + + +
acknowledge_permissions($permissions, $channel, $recipient)ZotDriverprotected
change_permissions($permissions, $channel, $recipient)ZotDriverprotected
collect($channel, $connection)ZotDriverprotected
collect_private($channel, $connection)ZotDriverprotected
deliver($item, $channel, $recipients)ZotDriverprotected
deliver_private($item, $channel, $recipients)ZotDriverprotected
discover($channel, $location)ZotDriverprotected
+
+ + + + diff --git a/doc/html/classZotDriver.html b/doc/html/classZotDriver.html new file mode 100644 index 000000000..2eeaca503 --- /dev/null +++ b/doc/html/classZotDriver.html @@ -0,0 +1,435 @@ + + + + + + +The Red Project: ZotDriver Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
ZotDriver Class Reference
+
+
+
+Inheritance diagram for ZotDriver:
+
+
+ + +ProtoDriver + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Protected Member Functions

 discover ($channel, $location)
 
 deliver ($item, $channel, $recipients)
 
 collect ($channel, $connection)
 
 change_permissions ($permissions, $channel, $recipient)
 
 acknowledge_permissions ($permissions, $channel, $recipient)
 
 deliver_private ($item, $channel, $recipients)
 
 collect_private ($channel, $connection)
 
- Protected Member Functions inherited from ProtoDriver
 discover ($channel, $location)
 
 deliver ($item, $channel, $recipients)
 
 collect ($channel, $connection)
 
 change_permissions ($permissions, $channel, $recipient)
 
 acknowledge_permissions ($permissions, $channel, $recipient)
 
 deliver_private ($item, $channel, $recipients)
 
 collect_private ($channel, $connection)
 
+

Member Function Documentation

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ZotDriver::acknowledge_permissions ( $permissions,
 $channel,
 $recipient 
)
+
+protected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ZotDriver::change_permissions ( $permissions,
 $channel,
 $recipient 
)
+
+protected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
ZotDriver::collect ( $channel,
 $connection 
)
+
+protected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
ZotDriver::collect_private ( $channel,
 $connection 
)
+
+protected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ZotDriver::deliver ( $item,
 $channel,
 $recipients 
)
+
+protected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
ZotDriver::deliver_private ( $item,
 $channel,
 $recipients 
)
+
+protected
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
ZotDriver::discover ( $channel,
 $location 
)
+
+protected
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classZotDriver.js b/doc/html/classZotDriver.js new file mode 100644 index 000000000..b5cdf4719 --- /dev/null +++ b/doc/html/classZotDriver.js @@ -0,0 +1,10 @@ +var classZotDriver = +[ + [ "acknowledge_permissions", "classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2", null ], + [ "change_permissions", "classZotDriver.html#a6776935156accb0f170e2e24577133db", null ], + [ "collect", "classZotDriver.html#af65febb26031eb7f39871b9e2a539797", null ], + [ "collect_private", "classZotDriver.html#a2e15ff09772f0608203dad1c98299394", null ], + [ "deliver", "classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f", null ], + [ "deliver_private", "classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6", null ], + [ "discover", "classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514", null ] +]; \ No newline at end of file diff --git a/doc/html/classZotDriver.png b/doc/html/classZotDriver.png new file mode 100644 index 000000000..38e96d6af Binary files /dev/null and b/doc/html/classZotDriver.png differ diff --git a/doc/html/classdba-members.html b/doc/html/classdba-members.html new file mode 100644 index 000000000..611f1fb19 --- /dev/null +++ b/doc/html/classdba-members.html @@ -0,0 +1,137 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
dba Member List
+
+
+ +

This is the complete list of members for dba, including all inherited members.

+ + + + + + + + + + + + +
$connecteddba
$dbdbaprivate
$debugdbaprivate
$errordba
$mysqlidba
__construct($server, $user, $pass, $db, $install=false)dba
__destruct()dba
dbg($dbg)dba
escape($str)dba
getdb()dba
q($sql)dba
+
+ + + + diff --git a/doc/html/classdba.html b/doc/html/classdba.html new file mode 100644 index 000000000..773154e66 --- /dev/null +++ b/doc/html/classdba.html @@ -0,0 +1,373 @@ + + + + + + +The Red Project: dba Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+ + + + + + + + + + + + + + +

+Public Member Functions

 __construct ($server, $user, $pass, $db, $install=false)
 
 getdb ()
 
 q ($sql)
 
 dbg ($dbg)
 
 escape ($str)
 
 __destruct ()
 
+ + + + + + + +

+Public Attributes

 $mysqli = true
 
 $connected = false
 
 $error = false
 
+ + + + + +

+Private Attributes

 $debug = 0
 
 $db
 
+

Detailed Description

+

MySQL database class

+

For debugging, insert 'dbg(1);' anywhere in the program flow. dbg(0); will turn it off. Logging is performed at LOGGER_DATA level. When logging, all binary info is converted to text and html entities are escaped so that the debugging stream is safe to view within both terminals and web pages.

+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
dba::__construct ( $server,
 $user,
 $pass,
 $db,
 $install = false 
)
+
+ +
+
+ +
+
+ + + + + + + +
dba::__destruct ()
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + + + + +
dba::dbg ( $dbg)
+
+ +
+
+ +
+
+ + + + + + + + +
dba::escape ( $str)
+
+ +
+
+ +
+
+ + + + + + + +
dba::getdb ()
+
+ +
+
+ +
+
+ + + + + + + + +
dba::q ( $sql)
+
+

If dbfail.out exists, we will write any failed calls directly to it, regardless of any logging that may or may nor be in effect. These usually indicate SQL syntax errors that need to be resolved.

+ +
+
+

Member Data Documentation

+ +
+
+ + + + +
dba::$connected = false
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
dba::$db
+
+private
+
+ +

Referenced by __construct(), and getdb().

+ +
+
+ +
+
+ + + + + +
+ + + + +
dba::$debug = 0
+
+private
+
+ +
+
+ +
+
+ + + + +
dba::$error = false
+
+ +

Referenced by q().

+ +
+
+ +
+
+ + + + +
dba::$mysqli = true
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classdba.js b/doc/html/classdba.js new file mode 100644 index 000000000..2b97b91eb --- /dev/null +++ b/doc/html/classdba.js @@ -0,0 +1,14 @@ +var classdba = +[ + [ "__construct", "classdba.html#aa36df91d776eedd1b90b9518a610d9fb", null ], + [ "__destruct", "classdba.html#ac25853e4d454aec9cfead4814429550d", null ], + [ "dbg", "classdba.html#a2c6fecf396c66e07f00276fc18d31ca7", null ], + [ "escape", "classdba.html#a522329687ff042074c1cbc8bd3226d2f", null ], + [ "getdb", "classdba.html#a066ce6eab1282c9220ac4652ac2dbd27", null ], + [ "q", "classdba.html#a0060c8611e3c3ee71049904ad028a695", null ], + [ "$connected", "classdba.html#a986eb5c3bbd4c70801a9ddd2f8e5c561", null ], + [ "$db", "classdba.html#ab57b3a4399f22ce5cdafbd3cd542a414", null ], + [ "$debug", "classdba.html#a4da56b3eb82ad26ba49ca5f97e1490cb", null ], + [ "$error", "classdba.html#a6a1471c18c6530044d20db5d3532958b", null ], + [ "$mysqli", "classdba.html#ab5dcbd758d3f8fb84702c323cd85067e", null ] +]; \ No newline at end of file diff --git a/doc/html/classenotify-members.html b/doc/html/classenotify-members.html new file mode 100644 index 000000000..9d10d5c5d --- /dev/null +++ b/doc/html/classenotify-members.html @@ -0,0 +1,127 @@ + + + + + + +The Red Project: Member List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
enotify Member List
+
+
+ +

This is the complete list of members for enotify, including all inherited members.

+ + +
send($params)enotifystatic
+
+ + + + diff --git a/doc/html/classenotify.html b/doc/html/classenotify.html new file mode 100644 index 000000000..70b6d6d56 --- /dev/null +++ b/doc/html/classenotify.html @@ -0,0 +1,177 @@ + + + + + + +The Red Project: enotify Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
enotify Class Reference
+
+
+ + + + +

+Static Public Member Functions

static send ($params)
 
+

Member Function Documentation

+ +
+
+ + + + + +
+ + + + + + + + +
static enotify::send ( $params)
+
+static
+
+

Send a multipart/alternative message with Text and HTML versions

+
Parameters
+ + + + + + + + + +
fromNamename of the sender
fromEmailemail fo the sender
replyToreplyTo address to direct responses
toEmaildestination email address
messageSubjectsubject of the message
htmlVersionhtml version of the message
textVersiontext only version of the message
additionalMailHeaderadditions to the smtp mail header
+
+
+ +

Referenced by notification().

+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/doc/html/classes.html b/doc/html/classes.html new file mode 100644 index 000000000..085852847 --- /dev/null +++ b/doc/html/classes.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: Class Index + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Class Index
+
+
+
A | B | C | D | E | F | I | P | T | Z
+ + + + + + + + + + + +
  A  
+
Conversation   
  F  
+
  P  
+
  Z  
+
  D  
+
App   FKOAuth1   Photo   ZotDriver   
  B  
+
dba   FKOAuthDataStore   ProtoDriver   
  E  
+
FriendicaSmarty   
  T  
+
BaseObject   
  I  
+
  C  
+
enotify   Template   
Item   
Cache   
+
A | B | C | D | E | F | I | P | T | Z
+
+
+ + + + diff --git a/doc/html/cli__startup_8php.html b/doc/html/cli__startup_8php.html new file mode 100644 index 000000000..1a3c7ed65 --- /dev/null +++ b/doc/html/cli__startup_8php.html @@ -0,0 +1,148 @@ + + + + + + +The Red Project: include/cli_startup.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
cli_startup.php File Reference
+
+
+ + + + +

+Functions

 cli_startup ()
 
+

Function Documentation

+ +
+
+ + + + + + + +
cli_startup ()
+
+
+
+
+ + + + diff --git a/doc/html/cli__startup_8php.js b/doc/html/cli__startup_8php.js new file mode 100644 index 000000000..3f941b222 --- /dev/null +++ b/doc/html/cli__startup_8php.js @@ -0,0 +1,4 @@ +var cli__startup_8php = +[ + [ "cli_startup", "cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b", null ] +]; \ No newline at end of file diff --git a/doc/html/closed.png b/doc/html/closed.png new file mode 100644 index 000000000..98cc2c909 Binary files /dev/null and b/doc/html/closed.png differ diff --git a/doc/html/common_8php.html b/doc/html/common_8php.html new file mode 100644 index 000000000..2235df6dd --- /dev/null +++ b/doc/html/common_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/common.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
common.php File Reference
+
+
+ + + + + + + + +

+Functions

 common_init (&$a)
 
 common_aside (&$a)
 
 common_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
common_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
common_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
common_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/common_8php.js b/doc/html/common_8php.js new file mode 100644 index 000000000..6f763d046 --- /dev/null +++ b/doc/html/common_8php.js @@ -0,0 +1,6 @@ +var common_8php = +[ + [ "common_aside", "common_8php.html#a3b12ec67b3d3edcf595c8d195da5d14a", null ], + [ "common_content", "common_8php.html#ab63408f39abef7a6915186e8dabc5a96", null ], + [ "common_init", "common_8php.html#aca62f113655809f41f49042ce9b123c2", null ] +]; \ No newline at end of file diff --git a/doc/html/community_8php.html b/doc/html/community_8php.html new file mode 100644 index 000000000..66ff483c1 --- /dev/null +++ b/doc/html/community_8php.html @@ -0,0 +1,177 @@ + + + + + + +The Red Project: mod/community.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
community.php File Reference
+
+
+ + + + + + +

+Functions

 community_init (&$a)
 
 community_content (&$a, $update=0)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
community_content ($a,
 $update = 0 
)
+
+ +

Referenced by update_community_content().

+ +
+
+ +
+
+ + + + + + + + +
community_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/community_8php.js b/doc/html/community_8php.js new file mode 100644 index 000000000..06ba1c3b4 --- /dev/null +++ b/doc/html/community_8php.js @@ -0,0 +1,5 @@ +var community_8php = +[ + [ "community_content", "community_8php.html#a1197aafd6a6b540dbb4a0c04ade3a25a", null ], + [ "community_init", "community_8php.html#a56c94ec978a38633c5628fa6f8e386d9", null ] +]; \ No newline at end of file diff --git a/doc/html/config_8md.html b/doc/html/config_8md.html new file mode 100644 index 000000000..6c57e6573 --- /dev/null +++ b/doc/html/config_8md.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: util/config.md File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
util/config.md File Reference
+
+
+
+
+ + + + diff --git a/doc/html/connections_8php.html b/doc/html/connections_8php.html new file mode 100644 index 000000000..5716e72ba --- /dev/null +++ b/doc/html/connections_8php.html @@ -0,0 +1,201 @@ + + + + + + +The Red Project: mod/connections.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
connections.php File Reference
+
+
+ + + + + + + + + + +

+Functions

 connections_init (&$a)
 
 connections_aside (&$a)
 
 connections_post (&$a)
 
 connections_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
connections_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
connections_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
connections_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
connections_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/connections_8php.js b/doc/html/connections_8php.js new file mode 100644 index 000000000..35ab2ee7a --- /dev/null +++ b/doc/html/connections_8php.js @@ -0,0 +1,7 @@ +var connections_8php = +[ + [ "connections_aside", "connections_8php.html#af48f7ad20914760ba9874c090384e35a", null ], + [ "connections_content", "connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c", null ], + [ "connections_init", "connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558", null ], + [ "connections_post", "connections_8php.html#a1224058db8e3fb56463eb312f98e561d", null ] +]; \ No newline at end of file diff --git a/doc/html/contact__selectors_8php.html b/doc/html/contact__selectors_8php.html new file mode 100644 index 000000000..5017a1378 --- /dev/null +++ b/doc/html/contact__selectors_8php.html @@ -0,0 +1,225 @@ + + + + + + +The Red Project: include/contact_selectors.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
contact_selectors.php File Reference
+
+
+ + + + + + + + + + +

+Functions

 contact_profile_assign ($current, $foreign_net)
 
 contact_reputation ($current)
 
 contact_poll_interval ($current, $disabled=false)
 
 network_to_name ($s)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
contact_poll_interval ( $current,
 $disabled = false 
)
+
+ +

Referenced by connections_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
contact_profile_assign ( $current,
 $foreign_net 
)
+
+ +
+
+ +
+
+ + + + + + + + +
contact_reputation ( $current)
+
+ +
+
+ +
+
+ + + + + + + + +
network_to_name ( $s)
+
+ +

Referenced by connections_content(), and nogroup_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/contact__selectors_8php.js b/doc/html/contact__selectors_8php.js new file mode 100644 index 000000000..b03d1934d --- /dev/null +++ b/doc/html/contact__selectors_8php.js @@ -0,0 +1,7 @@ +var contact__selectors_8php = +[ + [ "contact_poll_interval", "contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f", null ], + [ "contact_profile_assign", "contact__selectors_8php.html#aba7a4db18efa41d78bed1076b2d59886", null ], + [ "contact_reputation", "contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53", null ], + [ "network_to_name", "contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be", null ] +]; \ No newline at end of file diff --git a/doc/html/contact__widgets_8php.html b/doc/html/contact__widgets_8php.html new file mode 100644 index 000000000..1d9a08a62 --- /dev/null +++ b/doc/html/contact__widgets_8php.html @@ -0,0 +1,247 @@ + + + + + + +The Red Project: include/contact_widgets.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
contact_widgets.php File Reference
+
+
+ + + + + + + + + + + + +

+Functions

 follow_widget ()
 
 findpeople_widget ()
 
 fileas_widget ($baseurl, $selected= '')
 
 categories_widget ($baseurl, $selected= '')
 
 common_friends_visitor_widget ($profile_uid)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
categories_widget ( $baseurl,
 $selected = '' 
)
+
+ +

Referenced by channel_aside().

+ +
+
+ +
+
+ + + + + + + + +
common_friends_visitor_widget ( $profile_uid)
+
+ +

Referenced by channel_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
fileas_widget ( $baseurl,
 $selected = '' 
)
+
+ +

Referenced by network_init().

+ +
+
+ +
+
+ + + + + + + +
findpeople_widget ()
+
+
+ +
+
+ + + + + + + +
follow_widget ()
+
+
+
+
+ + + + diff --git a/doc/html/contact__widgets_8php.js b/doc/html/contact__widgets_8php.js new file mode 100644 index 000000000..1b2a8ecd5 --- /dev/null +++ b/doc/html/contact__widgets_8php.js @@ -0,0 +1,8 @@ +var contact__widgets_8php = +[ + [ "categories_widget", "contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353", null ], + [ "common_friends_visitor_widget", "contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65", null ], + [ "fileas_widget", "contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b", null ], + [ "findpeople_widget", "contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6", null ], + [ "follow_widget", "contact__widgets_8php.html#af24e693532a045954caab515942cfc6f", null ] +]; \ No newline at end of file diff --git a/doc/html/contactgroup_8php.html b/doc/html/contactgroup_8php.html new file mode 100644 index 000000000..9bb0cc002 --- /dev/null +++ b/doc/html/contactgroup_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/contactgroup.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
contactgroup.php File Reference
+
+
+ + + + +

+Functions

 contactgroup_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
contactgroup_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/contactgroup_8php.js b/doc/html/contactgroup_8php.js new file mode 100644 index 000000000..bb51dd652 --- /dev/null +++ b/doc/html/contactgroup_8php.js @@ -0,0 +1,4 @@ +var contactgroup_8php = +[ + [ "contactgroup_content", "contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3", null ] +]; \ No newline at end of file diff --git a/doc/html/conversation_8php.html b/doc/html/conversation_8php.html new file mode 100644 index 000000000..ca7ea7573 --- /dev/null +++ b/doc/html/conversation_8php.html @@ -0,0 +1,525 @@ + + + + + + +The Red Project: include/conversation.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
conversation.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

if(!function_exists('item_extract_images'))
+if(!function_exists('item_redir_and_replace_images')) 
localize_item (&$item)
 
 count_descendants ($item)
 
 visible_activity ($item)
 
if(!function_exists('conversation')) best_link_url ($item)
 
if(!function_exists('item_photo_menu'))
+if(!function_exists('like_puller'))
+if(!function_exists('format_like')) 
status_editor ($a, $x, $popup=false)
 
 get_item_children ($arr, $parent)
 
 sort_item_children ($items)
 
 add_children_to_list ($children, &$arr)
 
 conv_sort ($arr, $order)
 
 sort_thr_created ($a, $b)
 
 sort_thr_created_rev ($a, $b)
 
 sort_thr_commented ($a, $b)
 
 find_thread_parent_index ($arr, $x)
 
 format_location ($item)
 
 render_location_default ($item)
 
 prepare_page ($item)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
add_children_to_list ( $children,
$arr 
)
+
+ +
+
+ +
+
+ + + + + + + + +
if (!function_exists('conversation')) best_link_url ( $item)
+
+

"Render" a conversation or list of items for HTML display. There are two major forms of display:

+
    +
  • Sequential or unthreaded ("New Item View" or search results)
  • +
  • conversation view The $mode parameter decides between the various renderings and also figures out how to determine page owner and other contextual items that are based on unique features of the calling module.
  • +
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
conv_sort ( $arr,
 $order 
)
+
+
+ +
+
+ + + + + + + + +
count_descendants ( $item)
+
+

Count the total of comments on this item and its desendants

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
find_thread_parent_index ( $arr,
 $x 
)
+
+ +
+
+ +
+
+ + + + + + + + +
format_location ( $item)
+
+ +

Referenced by Item\get_template_data().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
get_item_children ( $arr,
 $parent 
)
+
+ +
+
+ +
+
+ + + + + + + + +
if (!function_exists('item_extract_images')) if (!function_exists('item_redir_and_replace_images')) localize_item ($item)
+
+

Render actions localized

+ +

Referenced by api_format_items(), format_notification(), and Item\get_template_data().

+ +
+
+ +
+
+ + + + + + + + +
prepare_page ( $item)
+
+ +

Referenced by page_content().

+ +
+
+ +
+
+ + + + + + + + +
render_location_default ( $item)
+
+ +
+
+ +
+
+ + + + + + + + +
sort_item_children ( $items)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
sort_thr_commented ( $a,
 $b 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
sort_thr_created ( $a,
 $b 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
sort_thr_created_rev ( $a,
 $b 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
if (!function_exists('item_photo_menu')) if (!function_exists('like_puller')) if (!function_exists('format_like')) status_editor ( $a,
 $x,
 $popup = false 
)
+
+ +

Referenced by channel_content(), and network_content().

+ +
+
+ +
+
+ + + + + + + + +
visible_activity ( $item)
+
+ +

Referenced by Item\__construct(), and count_descendants().

+ +
+
+
+
+ + + + diff --git a/doc/html/conversation_8php.js b/doc/html/conversation_8php.js new file mode 100644 index 000000000..69820960f --- /dev/null +++ b/doc/html/conversation_8php.js @@ -0,0 +1,19 @@ +var conversation_8php = +[ + [ "add_children_to_list", "conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b", null ], + [ "best_link_url", "conversation_8php.html#a32e7750ae6adbfdd1f227f6e89221ce3", null ], + [ "conv_sort", "conversation_8php.html#abed85a41f1160598de880b84021c9cf7", null ], + [ "count_descendants", "conversation_8php.html#ab2383dff4f823e580399ff469d90ab19", null ], + [ "find_thread_parent_index", "conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6", null ], + [ "format_location", "conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3", null ], + [ "get_item_children", "conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67", null ], + [ "localize_item", "conversation_8php.html#afea815dd1768e8417d2b30be53e9e0b4", null ], + [ "prepare_page", "conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c", null ], + [ "render_location_default", "conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2", null ], + [ "sort_item_children", "conversation_8php.html#ae996eb116d397a2c6396c312d7b98664", null ], + [ "sort_thr_commented", "conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11", null ], + [ "sort_thr_created", "conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d", null ], + [ "sort_thr_created_rev", "conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0", null ], + [ "status_editor", "conversation_8php.html#aedf008b9eac87f693d7dcc1a01404d85", null ], + [ "visible_activity", "conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3", null ] +]; \ No newline at end of file diff --git a/doc/html/crepair_8php.html b/doc/html/crepair_8php.html new file mode 100644 index 000000000..aa2358b44 --- /dev/null +++ b/doc/html/crepair_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/crepair.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
crepair.php File Reference
+
+
+ + + + + + + + +

+Functions

 crepair_init (&$a)
 
 crepair_post (&$a)
 
 crepair_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
crepair_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
crepair_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
crepair_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/crepair_8php.js b/doc/html/crepair_8php.js new file mode 100644 index 000000000..4e4181a10 --- /dev/null +++ b/doc/html/crepair_8php.js @@ -0,0 +1,6 @@ +var crepair_8php = +[ + [ "crepair_content", "crepair_8php.html#a29464c01838e209c8059cfcd2d195caa", null ], + [ "crepair_init", "crepair_8php.html#ab089978e50df156bbfabf9f8f5ccd198", null ], + [ "crepair_post", "crepair_8php.html#acc4493e1ffd1462a605dd9b870034513", null ] +]; \ No newline at end of file diff --git a/doc/html/cronhooks_8php.html b/doc/html/cronhooks_8php.html new file mode 100644 index 000000000..1c6f1fff6 --- /dev/null +++ b/doc/html/cronhooks_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/cronhooks.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
cronhooks.php File Reference
+
+
+ + + + +

+Functions

 cronhooks_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
cronhooks_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/cronhooks_8php.js b/doc/html/cronhooks_8php.js new file mode 100644 index 000000000..e2b6234e2 --- /dev/null +++ b/doc/html/cronhooks_8php.js @@ -0,0 +1,4 @@ +var cronhooks_8php = +[ + [ "cronhooks_run", "cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca", null ] +]; \ No newline at end of file diff --git a/doc/html/crypto_8php.html b/doc/html/crypto_8php.html new file mode 100644 index 000000000..afa019568 --- /dev/null +++ b/doc/html/crypto_8php.html @@ -0,0 +1,708 @@ + + + + + + +The Red Project: include/crypto.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
crypto.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 rsa_sign ($data, $key, $alg= 'sha256')
 
 rsa_verify ($data, $sig, $key, $alg= 'sha256')
 
 DerToPem ($Der, $Private=false)
 
 DerToRsa ($Der)
 
 pkcs8_encode ($Modulus, $PublicExponent)
 
 pkcs1_encode ($Modulus, $PublicExponent)
 
 metopem ($m, $e)
 
 pubrsatome ($key, &$m, &$e)
 
 rsatopem ($key)
 
 pemtorsa ($key)
 
 pemtome ($key, &$m, &$e)
 
 metorsa ($m, $e)
 
 salmon_key ($pubkey)
 
if(!function_exists('aes_decrypt'))
+if(!function_exists('aes_encrypt')) 
pkcs5_pad ($text, $blocksize)
 
 pkcs5_unpad ($text)
 
 AES256CBC_encrypt ($data, $key, $iv)
 
 AES256CBC_decrypt ($data, $key, $iv)
 
 aes_encapsulate ($data, $pubkey)
 
 aes_unencapsulate ($data, $prvkey)
 
 new_keypair ($bits)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
AES256CBC_decrypt ( $data,
 $key,
 $iv 
)
+
+ +

Referenced by aes_unencapsulate().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
AES256CBC_encrypt ( $data,
 $key,
 $iv 
)
+
+ +

Referenced by aes_encapsulate().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
aes_encapsulate ( $data,
 $pubkey 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
aes_unencapsulate ( $data,
 $prvkey 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
DerToPem ( $Der,
 $Private = false 
)
+
+ +

Referenced by metopem().

+ +
+
+ +
+
+ + + + + + + + +
DerToRsa ( $Der)
+
+ +

Referenced by metorsa().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
metopem ( $m,
 $e 
)
+
+ +

Referenced by rsatopem().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
metorsa ( $m,
 $e 
)
+
+ +

Referenced by pemtorsa().

+ +
+
+ +
+
+ + + + + + + + +
new_keypair ( $bits)
+
+ +

Referenced by create_identity(), and hostxrd_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
pemtome ( $key,
$m,
$e 
)
+
+ +

Referenced by pemtorsa(), and salmon_key().

+ +
+
+ +
+
+ + + + + + + + +
pemtorsa ( $key)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
pkcs1_encode ( $Modulus,
 $PublicExponent 
)
+
+ +

Referenced by metorsa().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
if (!function_exists('aes_decrypt')) if (!function_exists('aes_encrypt')) pkcs5_pad ( $text,
 $blocksize 
)
+
+ +

Referenced by AES256CBC_encrypt().

+ +
+
+ +
+
+ + + + + + + + +
pkcs5_unpad ( $text)
+
+ +

Referenced by AES256CBC_decrypt().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
pkcs8_encode ( $Modulus,
 $PublicExponent 
)
+
+ +

Referenced by metopem().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
pubrsatome ( $key,
$m,
$e 
)
+
+ +

Referenced by rsatopem().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
rsa_sign ( $data,
 $key,
 $alg = 'sha256' 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
rsa_verify ( $data,
 $sig,
 $key,
 $alg = 'sha256' 
)
+
+ +

Referenced by import_xchan(), post_post(), and zfinger_init().

+ +
+
+ +
+
+ + + + + + + + +
rsatopem ( $key)
+
+ +
+
+ +
+
+ + + + + + + + +
salmon_key ( $pubkey)
+
+ +

Referenced by hostxrd_init(), and xrd_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/crypto_8php.js b/doc/html/crypto_8php.js new file mode 100644 index 000000000..2a191777a --- /dev/null +++ b/doc/html/crypto_8php.js @@ -0,0 +1,23 @@ +var crypto_8php = +[ + [ "AES256CBC_decrypt", "crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9", null ], + [ "AES256CBC_encrypt", "crypto_8php.html#a5c61821d205f95f127114159cbffa764", null ], + [ "aes_encapsulate", "crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286", null ], + [ "aes_unencapsulate", "crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914", null ], + [ "DerToPem", "crypto_8php.html#a630e1574554f34e7c38511585d9e71a2", null ], + [ "DerToRsa", "crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839", null ], + [ "metopem", "crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85", null ], + [ "metorsa", "crypto_8php.html#a573f02517abe4ac9241268263063b2a0", null ], + [ "new_keypair", "crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a", null ], + [ "pemtome", "crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c", null ], + [ "pemtorsa", "crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8", null ], + [ "pkcs1_encode", "crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5", null ], + [ "pkcs5_pad", "crypto_8php.html#a3398666e184faf8e516c8e5d91de86eb", null ], + [ "pkcs5_unpad", "crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85", null ], + [ "pkcs8_encode", "crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2", null ], + [ "pubrsatome", "crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287", null ], + [ "rsa_sign", "crypto_8php.html#a920e5f222d0020f47556033d8b2b6552", null ], + [ "rsa_verify", "crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96", null ], + [ "rsatopem", "crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26", null ], + [ "salmon_key", "crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5", null ] +]; \ No newline at end of file diff --git a/doc/html/datetime_8php.html b/doc/html/datetime_8php.html new file mode 100644 index 000000000..2b0acc37c --- /dev/null +++ b/doc/html/datetime_8php.html @@ -0,0 +1,571 @@ + + + + + + +The Red Project: include/datetime.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
datetime.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 timezone_cmp ($a, $b)
 
 select_timezone ($current= 'America/Los_Angeles')
 
 field_timezone ($name='timezone', $label='', $current= 'America/Los_Angeles', $help)
 
 datetime_convert ($from= 'UTC', $to= 'UTC', $s= 'now', $fmt="Y-m-d H:i:s")
 
 dob ($dob)
 
 datesel_format ($f)
 
 datesel ($f, $pre, $ymin, $ymax, $allow_blank, $y, $m, $d)
 
 timesel ($pre, $h, $m)
 
 relative_date ($posted_date, $format=null)
 
 age ($dob, $owner_tz= '', $viewer_tz= '')
 
 get_dim ($y, $m)
 
 get_first_dim ($y, $m)
 
 cal ($y=0, $m=0, $links=false, $class='')
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
age ( $dob,
 $owner_tz = '',
 $viewer_tz = '' 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
cal ( $y = 0,
 $m = 0,
 $links = false,
 $class = '' 
)
+
+ +

Referenced by events_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
datesel ( $f,
 $pre,
 $ymin,
 $ymax,
 $allow_blank,
 $y,
 $m,
 $d 
)
+
+ +

Referenced by dob(), and events_content().

+ +
+
+ +
+
+ + + + + + + + +
datesel_format ( $f)
+
+ +

Referenced by events_content(), and profiles_content().

+ +
+
+ + + +
+
+ + + + + + + + +
dob ( $dob)
+
+ +

Referenced by profiles_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
field_timezone ( $name = 'timezone',
 $label = '',
 $current = 'America/Los_Angeles',
 $help 
)
+
+ +

Referenced by setup_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
get_dim ( $y,
 $m 
)
+
+ +

Referenced by cal(), events_content(), and posted_dates().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
get_first_dim ( $y,
 $m 
)
+
+ +

Referenced by cal().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
relative_date ( $posted_date,
 $format = null 
)
+
+
+ +
+
+ + + + + + + + +
select_timezone ( $current = 'America/Los_Angeles')
+
+ +

Referenced by field_timezone().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
timesel ( $pre,
 $h,
 $m 
)
+
+ +

Referenced by events_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
timezone_cmp ( $a,
 $b 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/datetime_8php.js b/doc/html/datetime_8php.js new file mode 100644 index 000000000..4a9260091 --- /dev/null +++ b/doc/html/datetime_8php.js @@ -0,0 +1,16 @@ +var datetime_8php = +[ + [ "age", "datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df", null ], + [ "cal", "datetime_8php.html#aea356409ba69f9de412298c998595dd2", null ], + [ "datesel", "datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8", null ], + [ "datesel_format", "datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa", null ], + [ "datetime_convert", "datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226", null ], + [ "dob", "datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8", null ], + [ "field_timezone", "datetime_8php.html#a03900dcf0f9e3c58793a031673a70326", null ], + [ "get_dim", "datetime_8php.html#a7df24d72ea05922d3127363e2295174c", null ], + [ "get_first_dim", "datetime_8php.html#aba971b67f17fecf050813f1eba72367f", null ], + [ "relative_date", "datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82", null ], + [ "select_timezone", "datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f", null ], + [ "timesel", "datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1", null ], + [ "timezone_cmp", "datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865", null ] +]; \ No newline at end of file diff --git a/doc/html/db__update_8php.html b/doc/html/db__update_8php.html new file mode 100644 index 000000000..04f8d30f2 --- /dev/null +++ b/doc/html/db__update_8php.html @@ -0,0 +1,199 @@ + + + + + + +The Red Project: util/db_update.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
db_update.php File Reference
+
+
+ + + + +

+Namespaces

namespace  util
 
+ + + + + + + + + +

+Variables

 $a = new App
 
 $lang = get_best_language()
 
 $db = new dba($db_host, $db_user, $db_pass, $db_data, false)
 
 $build = get_config('system','build')
 
+

Variable Documentation

+ +
+
+ + + + +
$a = new App
+
+ +

Referenced by FriendicaSmarty\__construct(), Item\__construct(), Template\_replcb_if(), Template\_replcb_inc(), _well_known_init(), acl_init(), admin_content(), admin_page_dbsync(), 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(), allfriends_content(), allowed_email(), allowed_url(), api_account_verify_credentials(), 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_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(), atom_entry(), authenticate_success(), avatar_img(), bbcode(), best_link_url(), cal(), categories_widget(), channel_aside(), channel_content(), channel_init(), channel_remove(), chanview_content(), check_config(), check_form_security_token(), check_form_security_token_ForbiddenOnErr(), check_form_security_token_redirectOnErr(), check_htaccess(), clean_urls(), cli_startup(), common_aside(), common_content(), common_friends_visitor_widget(), common_init(), community_content(), connections_aside(), connections_content(), connections_init(), connections_post(), construct_page(), consume_feed(), contact_select(), create_identity(), crepair_content(), crepair_init(), crepair_post(), current_theme(), current_theme_url(), del_config(), del_pconfig(), delegate_content(), deliver_run(), dfrn_deliver(), directory_aside(), directory_content(), directory_init(), dirfind_content(), dirfind_init(), dirsearch_init(), display_content(), drop_item(), editpost_content(), ev_compare(), event_store(), events_content(), events_post(), expand_groups(), fbrowser_content(), fetch_url(), fileas_widget(), filer_content(), filerm_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_events(), get_feed_for(), get_form_security_token(), get_max_import_size(), get_pconfig(), Item\get_template_data(), get_theme_screenshot(), gprobe_run(), group_aside(), group_content(), group_post(), group_select(), guess_image_type(), handle_tag(), hcard_aside(), hcard_init(), help_content(), hostxrd_init(), import_channel_photo(), import_profile_photo(), info(), intro_aside(), intro_content(), invite_content(), invite_post(), is_site_admin(), item_content(), item_post(), like_content(), load_config(), load_contact_links(), load_database(), load_pconfig(), local_delivery(), login(), login_content(), FKOAuth1\loginUser(), lostpass_content(), lostpass_post(), lrdd(), magic_init(), manual_config(), match_content(), message_aside(), message_content(), message_post(), mood_init(), msearch_post(), nav(), nav_set_selected(), network_content(), network_init(), network_query(), new_contact(), new_follower(), nogroup_content(), nogroup_init(), notice(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oembed_fetch_url(), oembed_format_object(), oembed_iframe(), oexchange_content(), oexchange_init(), onepoll_run(), opensearch_init(), page_content(), photos_content(), photos_init(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), pop_lang(), post_init(), post_url(), probe_content(), probe_url(), proc_run(), profile_activity(), profile_aside(), profile_content(), profile_create_sidebar(), profile_init(), profile_load(), profile_photo_aside(), profile_photo_init(), profile_photo_post(), profile_sidebar(), profile_tabs(), profiles_aside(), profiles_content(), profiles_init(), profiles_post(), profperm_aside(), profperm_content(), profperm_init(), push_lang(), dba\q(), queue_run(), randprof_init(), redbasic_form(), redbasic_init(), redir_init(), register_content(), regmod_content(), relative_date(), removeme_content(), removeme_post(), rmagic_post(), saved_searches(), scale_external_images(), search_ac_init(), search_content(), search_init(), search_post(), send_message(), service_class_allows(), service_class_fetch(), set_config(), Conversation\set_mode(), set_pconfig(), settings_aside(), settings_post(), setup_content(), setup_post(), siteinfo_content(), siteinfo_init(), subthread_content(), suggest_content(), tag_deliver(), tagger_content(), tagrm_content(), tagrm_post(), terminate_friendship(), test_init(), tgroup_check(), theme_content(), theme_include(), timezone_cmp(), toggle_mobile_init(), uexport_init(), update_channel_content(), update_community_content(), update_display_content(), update_network_content(), update_suggestions(), user_allow(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), viewsrc_content(), wall_upload_post(), what_next(), xrd_init(), z_fetch_url(), z_path(), z_root(), zid_init(), and zotfeed_init().

+ +
+
+ +
+
+ + + + +
$build = get_config('system','build')
+
+ +

Referenced by check_config().

+ +
+
+ +
+
+ + + + +
$db = new dba($db_host, $db_user, $db_pass, $db_data, false)
+
+
+ +
+
+ + + + +
$lang = get_best_language()
+
+
+
+
+ + + + diff --git a/doc/html/db__update_8php.js b/doc/html/db__update_8php.js new file mode 100644 index 000000000..a94d2d63d --- /dev/null +++ b/doc/html/db__update_8php.js @@ -0,0 +1,7 @@ +var db__update_8php = +[ + [ "$a", "db__update_8php.html#acebf83966ef6d7e5645a6b62ba368f9f", null ], + [ "$build", "db__update_8php.html#a502b15db084ae270b52e03c8075916de", null ], + [ "$db", "db__update_8php.html#a1fa3127fc82f96b1436d871ef02be319", null ], + [ "$lang", "db__update_8php.html#a7714b111b644017933931ec69a154102", null ] +]; \ No newline at end of file diff --git a/doc/html/dba_8php.html b/doc/html/dba_8php.html new file mode 100644 index 000000000..e99043d00 --- /dev/null +++ b/doc/html/dba_8php.html @@ -0,0 +1,283 @@ + + + + + + +The Red Project: include/dba.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
dba.php File Reference
+
+
+ + + + +

+Classes

class  dba
 
+ + + + + + + + + + + + + + + +

+Functions

 printable ($s)
 
 dbg ($state)
 
 dbesc ($str)
 
 q ($sql)
 
 dbq ($sql)
 
 dbesc_array_cb (&$item, $key)
 
 dbesc_array (&$arr)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
dbesc ( $str)
+
+ +

Referenced by account_verify_password(), acl_init(), add_fcontact(), allowed_public_recips(), api_direct_messages_new(), api_get_user(), api_status_show(), api_statuses_mentions(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), change_channel(), channel_content(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_webbie(), Cache\clear(), common_friends(), connections_content(), consume_feed(), contact_remove(), contactgroup_content(), count_common_friends(), create_account(), create_identity(), crepair_post(), dbesc_array_cb(), del_config(), del_pconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dirsearch_content(), display_content(), event_store(), events_content(), expand_groups(), fbrowser_content(), fcontact_store(), feed_init(), fetch_post_tags(), file_tag_file_query(), file_tag_save_file(), file_tag_unsave_file(), filerm_content(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config(), get_events(), get_feed_for(), get_pconfig(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_post(), group_rmv(), group_rmv_member(), groups_containing(), handle_tag(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), invite_post(), item_permissions_sql(), item_post(), item_store(), like_content(), load_config(), load_pconfig(), local_delivery(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), member_of(), msearch_post(), network_content(), network_init(), network_query(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), new_follower(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifier_run(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), perm_is_allowed(), permissions_sql(), photo_init(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_init(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), process_delivery(), process_mail_delivery(), profile_init(), profile_load(), profile_photo_post(), profiles_init(), profiles_post(), public_permissions_sql(), public_recips(), qsearch_init(), queue_run(), redir_init(), register_post(), remove_all_xchan_resources(), remove_queue_item(), rmagic_init(), rmagic_post(), search_ac_init(), search_content(), search_init(), send_message(), send_reg_approval_email(), send_status_notifications(), Cache\set(), set_config(), set_pconfig(), settings_post(), siteinfo_init(), Photo\store(), store_item_tag(), stringify_array_elms(), subthread_content(), syncdirs(), tag_deliver(), tagger_content(), tagrm_post(), term_query(), update_queue_time(), user_allow(), user_deny(), vcard_from_xchan(), wall_attach_post(), wall_upload_post(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), zfinger_init(), zid_init(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_process_response(), zot_refresh(), zotfeed_init(), and zperms_init().

+ +
+
+ +
+
+ + + + + + + + +
dbesc_array ($arr)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
dbesc_array_cb ($item,
 $key 
)
+
+ +
+
+ +
+
+ + + + + + + + +
dbg ( $state)
+
+ +
+
+ +
+
+ + + + + + + + +
dbq ( $sql)
+
+

Raw db query, no arguments

+ +

Referenced by import_post(), item_store(), local_delivery(), mail_store(), and profiles_init().

+ +
+
+ +
+
+ + + + + + + + +
printable ( $s)
+
+ +

Referenced by dba\q().

+ +
+
+ +
+
+ + + + + + + + +
q ( $sql)
+
+

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

+ +

Referenced by abook_connections(), abook_self(), abook_toggle_flag(), account_total(), account_verify_password(), acl_init(), add_fcontact(), admin_content(), admin_page_dbsync(), admin_page_summary(), admin_page_users(), admin_page_users_post(), all_friends(), allfriends_content(), 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_f(), api_statuses_home_timeline(), api_statuses_mentions(), api_statuses_public_timeline(), api_statuses_repeat(), api_statuses_show(), api_statuses_user_timeline(), api_user(), api_users_show(), attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), attach_store(), authenticate_success(), categories_widget(), change_channel(), channel_content(), channel_remove(), channelx_by_hash(), channelx_by_n(), channelx_by_nick(), chanview_content(), check_account_email(), check_account_invite(), check_config(), check_webbie(), Cache\clear(), collect_recipients(), common_friends(), common_friends_zcid(), common_init(), community_content(), connections_content(), connections_init(), connections_post(), consume_feed(), contact_profile_assign(), contact_remove(), contact_select(), contactgroup_content(), contacts_not_grouped(), count_all_friends(), count_common_friends(), count_common_friends_zcid(), create_account(), create_identity(), crepair_content(), crepair_init(), crepair_post(), del_config(), del_pconfig(), delegate_content(), delete_imported_item(), delete_item_lowlevel(), deliver_run(), dfrn_deliver(), directory_run(), dirsearch_content(), display_content(), drop_item(), editpost_content(), encode_item(), event_store(), events_content(), expand_groups(), expire_run(), fbrowser_content(), fcontact_store(), feed_init(), fetch_post_tags(), ffinder_store(), file_tag_save_file(), file_tag_unsave_file(), file_tag_update_pconfig(), fileas_widget(), filer_content(), filerm_content(), first_post_date(), fix_attached_photo_permissions(), fix_contact_ssl_policy(), fix_private_photos(), fsuggest_content(), fsuggest_post(), generate_user_guid(), Cache\get(), get_all_perms(), get_birthdays(), get_config(), get_events(), get_feed_for(), get_pconfig(), gprobe_run(), group_add(), group_add_member(), group_byname(), group_content(), group_get_members(), group_post(), group_rmv(), group_rmv_member(), group_select(), group_side(), groups_containing(), handle_tag(), identity_basic_export(), identity_check_service_class(), import_author_xchan(), import_directory_keywords(), import_directory_profile(), import_post(), import_profile_photo(), import_xchan(), intro_content(), intro_post(), invite_post(), item_expire(), item_post(), item_store(), like_content(), load_config(), load_contact_links(), load_pconfig(), local_delivery(), lockview_content(), FKOAuth1\loginUser(), FKOAuthDataStore\lookup_consumer(), FKOAuthDataStore\lookup_nonce(), FKOAuthDataStore\lookup_token(), lose_follower(), lose_sharer(), lostpass_content(), lostpass_post(), magic_init(), mail_store(), manage_content(), match_content(), member_of(), message_content(), mini_group_select(), mood_init(), msearch_post(), network_content(), network_init(), network_query(), FKOAuthDataStore\new_access_token(), new_contact(), new_cookie(), new_follower(), FKOAuthDataStore\new_request_token(), notification(), notifications_content(), notifications_post(), notifier_run(), notify_content(), notify_init(), oauth_get_client(), onepoll_run(), page_content(), perm_is_allowed(), photo_init(), photo_upload(), photos_album_exists(), photos_album_get_db_idstr(), photos_album_rename(), photos_albums_list(), photos_content(), photos_post(), ping_init(), poco_init(), poco_load(), poke_content(), poke_init(), poller_run(), post_init(), post_post(), private_messages_drop(), private_messages_fetch_conversation(), private_messages_fetch_message(), private_messages_list(), probe_url(), process_delivery(), process_mail_delivery(), profile_content(), profile_init(), profile_load(), profile_photo_post(), profile_sidebar(), profiles_content(), profiles_init(), profiles_post(), profperm_content(), public_recips(), qsearch_init(), queue_run(), random_profile(), redir_init(), register_content(), register_post(), remove_all_xchan_resources(), remove_queue_item(), rmagic_init(), rmagic_post(), saved_searches(), search_ac_init(), search_content(), search_init(), search_saved_searches(), 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(), settings_aside(), settings_post(), setup_content(), share_init(), siteinfo_content(), siteinfo_init(), starred_init(), Photo\store(), store_item_tag(), stream_perms_api_uids(), subthread_content(), suggest_init(), suggestion_query(), syncdirs(), tag_deliver(), tagadelic(), tagger_content(), tagrm_content(), tagrm_post(), tgroup_check(), update_queue_time(), update_suggestions(), user_allow(), user_deny(), vcard_from_xchan(), viewconnections_content(), viewsrc_content(), wall_attach_post(), wall_upload_post(), xchan_content(), xchan_mail_query(), xchan_query(), xrd_init(), zfinger_init(), zid_init(), zot_feed(), zot_finger(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), zot_refresh(), zotfeed_init(), and zperms_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/dba_8php.js b/doc/html/dba_8php.js new file mode 100644 index 000000000..92ae4c2e4 --- /dev/null +++ b/doc/html/dba_8php.js @@ -0,0 +1,11 @@ +var dba_8php = +[ + [ "dba", "classdba.html", "classdba" ], + [ "dbesc", "dba_8php.html#ab222aa1dbf9ea93b320f82028739127e", null ], + [ "dbesc_array", "dba_8php.html#a65b83462bd26968106aebd43f16540e4", null ], + [ "dbesc_array_cb", "dba_8php.html#af531546fac5f0836a8557a4f6dfee930", null ], + [ "dbg", "dba_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb", null ], + [ "dbq", "dba_8php.html#aa377074e70981e8c4e82ca0accd068ee", null ], + [ "printable", "dba_8php.html#a55bf30d8176967e682656b5be4ad9249", null ], + [ "q", "dba_8php.html#a2c09a731d3b4fef41fed0e83db01be1f", null ] +]; \ No newline at end of file diff --git a/doc/html/default_8php.html b/doc/html/default_8php.html new file mode 100644 index 000000000..b1c88bc60 --- /dev/null +++ b/doc/html/default_8php.html @@ -0,0 +1,143 @@ + + + + + + +The Red Project: view/php/default.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
default.php File Reference
+
+
+ + + + +

+Variables

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

Variable Documentation

+ +
+
+ + + + +
if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body ><?php if(x($page
+
+ +
+
+
+
+ + + + diff --git a/doc/html/default_8php.js b/doc/html/default_8php.js new file mode 100644 index 000000000..164421dc5 --- /dev/null +++ b/doc/html/default_8php.js @@ -0,0 +1,4 @@ +var default_8php = +[ + [ "if", "default_8php.html#a23bc1996b18e69c1a3ab44536613a762", null ] +]; \ No newline at end of file diff --git a/doc/html/delegate_8php.html b/doc/html/delegate_8php.html new file mode 100644 index 000000000..8eee17a62 --- /dev/null +++ b/doc/html/delegate_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/delegate.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
delegate.php File Reference
+
+
+ + + + +

+Functions

 delegate_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
delegate_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/delegate_8php.js b/doc/html/delegate_8php.js new file mode 100644 index 000000000..0c96c49de --- /dev/null +++ b/doc/html/delegate_8php.js @@ -0,0 +1,4 @@ +var delegate_8php = +[ + [ "delegate_content", "delegate_8php.html#a943eea8996ef348eb845c498f9f354dd", null ] +]; \ No newline at end of file diff --git a/doc/html/deliver_8php.html b/doc/html/deliver_8php.html new file mode 100644 index 000000000..669207aa9 --- /dev/null +++ b/doc/html/deliver_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/deliver.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
deliver.php File Reference
+
+
+ + + + +

+Functions

 deliver_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
deliver_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/deliver_8php.js b/doc/html/deliver_8php.js new file mode 100644 index 000000000..7e8a08223 --- /dev/null +++ b/doc/html/deliver_8php.js @@ -0,0 +1,4 @@ +var deliver_8php = +[ + [ "deliver_run", "deliver_8php.html#a397afcb9afecf0c1816b0951189dd346", null ] +]; \ No newline at end of file diff --git a/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.html b/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.html new file mode 100644 index 000000000..b554c5f44 --- /dev/null +++ b/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.html @@ -0,0 +1,126 @@ + + + + + + +The Red Project: view/theme/redbasic/php Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
php Directory Reference
+
+
+ + + + + + + + +

+Files

file  config.php
 
file  style.php
 
file  theme.php
 
+
+
+ + + + diff --git a/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.js b/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.js new file mode 100644 index 000000000..a36af4cea --- /dev/null +++ b/doc/html/dir_032dd9e2cfe278a2cfa5eb9547448eb9.js @@ -0,0 +1,6 @@ +var dir_032dd9e2cfe278a2cfa5eb9547448eb9 = +[ + [ "config.php", "view_2theme_2redbasic_2php_2config_8php.html", "view_2theme_2redbasic_2php_2config_8php" ], + [ "style.php", "style_8php.html", "style_8php" ], + [ "theme.php", "redbasic_2php_2theme_8php.html", "redbasic_2php_2theme_8php" ] +]; \ No newline at end of file diff --git a/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.html b/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.html new file mode 100644 index 000000000..04f4a8c3c --- /dev/null +++ b/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: util/fpostit Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
fpostit Directory Reference
+
+
+ + + + +

+Files

file  fpostit.php
 
+
+
+ + + + diff --git a/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.js b/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.js new file mode 100644 index 000000000..b73b33dda --- /dev/null +++ b/doc/html/dir_0eaa4a0adae8ba4811e133c6e594aeee.js @@ -0,0 +1,4 @@ +var dir_0eaa4a0adae8ba4811e133c6e594aeee = +[ + [ "fpostit.php", "fpostit_8php.html", "fpostit_8php" ] +]; \ No newline at end of file diff --git a/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.html b/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.html new file mode 100644 index 000000000..2bbdbe4cf --- /dev/null +++ b/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.html @@ -0,0 +1,143 @@ + + + + + + +The Red Project: util Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
util Directory Reference
+
+
+ + + + +

+Directories

directory  fpostit
 
+ + + + + + + + + + + + + + + + + + + +

+Files

file  db_update.php
 
file  docblox_errorchecker.php
 
file  extract.php
 
file  friendica-to-smarty-tpl.py
 
file  php2po.php
 
file  po2php.php
 
file  typo.php
 
file  typohelper.php
 
file  updatetpl.py
 
+
+
+ + + + diff --git a/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.js b/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.js new file mode 100644 index 000000000..396ae74e1 --- /dev/null +++ b/doc/html/dir_23ec12649285f9fabf3a6b7380226c28.js @@ -0,0 +1,13 @@ +var dir_23ec12649285f9fabf3a6b7380226c28 = +[ + [ "fpostit", "dir_0eaa4a0adae8ba4811e133c6e594aeee.html", "dir_0eaa4a0adae8ba4811e133c6e594aeee" ], + [ "db_update.php", "db__update_8php.html", "db__update_8php" ], + [ "docblox_errorchecker.php", "docblox__errorchecker_8php.html", "docblox__errorchecker_8php" ], + [ "extract.php", "extract_8php.html", "extract_8php" ], + [ "friendica-to-smarty-tpl.py", "friendica-to-smarty-tpl_8py.html", "friendica-to-smarty-tpl_8py" ], + [ "php2po.php", "php2po_8php.html", "php2po_8php" ], + [ "po2php.php", "po2php_8php.html", "po2php_8php" ], + [ "typo.php", "typo_8php.html", "typo_8php" ], + [ "typohelper.php", "typohelper_8php.html", "typohelper_8php" ], + [ "updatetpl.py", "updatetpl_8py.html", "updatetpl_8py" ] +]; \ No newline at end of file diff --git a/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.html b/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.html new file mode 100644 index 000000000..098d09240 --- /dev/null +++ b/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: view/theme/redbasic Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
redbasic Directory Reference
+
+
+ + + + +

+Directories

directory  php
 
+
+
+ + + + diff --git a/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.js b/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.js new file mode 100644 index 000000000..53796edd8 --- /dev/null +++ b/doc/html/dir_55dbaf9b7b53c4fc605c9011743a7353.js @@ -0,0 +1,4 @@ +var dir_55dbaf9b7b53c4fc605c9011743a7353 = +[ + [ "php", "dir_032dd9e2cfe278a2cfa5eb9547448eb9.html", "dir_032dd9e2cfe278a2cfa5eb9547448eb9" ] +]; \ No newline at end of file diff --git a/doc/html/dir_817f6d302394b98e59575acdb59998bc.html b/doc/html/dir_817f6d302394b98e59575acdb59998bc.html new file mode 100644 index 000000000..856ae975c --- /dev/null +++ b/doc/html/dir_817f6d302394b98e59575acdb59998bc.html @@ -0,0 +1,134 @@ + + + + + + +The Red Project: view/php Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
php Directory Reference
+
+
+ + + + + + + + + + + + + + + + +

+Files

file  default.php
 
file  full.php
 
file  minimal.php
 
file  mod_import.php
 
file  mod_new_channel.php
 
file  mod_register.php
 
file  theme_init.php
 
+
+
+ + + + diff --git a/doc/html/dir_817f6d302394b98e59575acdb59998bc.js b/doc/html/dir_817f6d302394b98e59575acdb59998bc.js new file mode 100644 index 000000000..f42b8d444 --- /dev/null +++ b/doc/html/dir_817f6d302394b98e59575acdb59998bc.js @@ -0,0 +1,10 @@ +var dir_817f6d302394b98e59575acdb59998bc = +[ + [ "default.php", "default_8php.html", "default_8php" ], + [ "full.php", "full_8php.html", "full_8php" ], + [ "minimal.php", "minimal_8php.html", null ], + [ "mod_import.php", "mod__import_8php.html", "mod__import_8php" ], + [ "mod_new_channel.php", "mod__new__channel_8php.html", "mod__new__channel_8php" ], + [ "mod_register.php", "mod__register_8php.html", "mod__register_8php" ], + [ "theme_init.php", "theme__init_8php.html", null ] +]; \ No newline at end of file diff --git a/doc/html/dir_8543001e5d25368a6edede3e63efb554.html b/doc/html/dir_8543001e5d25368a6edede3e63efb554.html new file mode 100644 index 000000000..64840b36b --- /dev/null +++ b/doc/html/dir_8543001e5d25368a6edede3e63efb554.html @@ -0,0 +1,124 @@ + + + + + + +The Red Project: view/theme Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
theme Directory Reference
+
+
+ + + + + + +

+Directories

directory  redbasic
 
directory  test
 
+
+
+ + + + diff --git a/doc/html/dir_8543001e5d25368a6edede3e63efb554.js b/doc/html/dir_8543001e5d25368a6edede3e63efb554.js new file mode 100644 index 000000000..a5b764d6e --- /dev/null +++ b/doc/html/dir_8543001e5d25368a6edede3e63efb554.js @@ -0,0 +1,5 @@ +var dir_8543001e5d25368a6edede3e63efb554 = +[ + [ "redbasic", "dir_55dbaf9b7b53c4fc605c9011743a7353.html", "dir_55dbaf9b7b53c4fc605c9011743a7353" ], + [ "test", "dir_8e4ceba158be32034f698ffd6810bb05.html", "dir_8e4ceba158be32034f698ffd6810bb05" ] +]; \ No newline at end of file diff --git a/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.html b/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.html new file mode 100644 index 000000000..1137622c3 --- /dev/null +++ b/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: view/theme/test Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
test Directory Reference
+
+
+ + + + +

+Directories

directory  php
 
+
+
+ + + + diff --git a/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.js b/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.js new file mode 100644 index 000000000..0b8eea955 --- /dev/null +++ b/doc/html/dir_8e4ceba158be32034f698ffd6810bb05.js @@ -0,0 +1,4 @@ +var dir_8e4ceba158be32034f698ffd6810bb05 = +[ + [ "php", "dir_955ae6074e6c84afe72925e364242b14.html", "dir_955ae6074e6c84afe72925e364242b14" ] +]; \ No newline at end of file diff --git a/doc/html/dir_955ae6074e6c84afe72925e364242b14.html b/doc/html/dir_955ae6074e6c84afe72925e364242b14.html new file mode 100644 index 000000000..398fd8719 --- /dev/null +++ b/doc/html/dir_955ae6074e6c84afe72925e364242b14.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: view/theme/test/php Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
php Directory Reference
+
+
+ + + + +

+Files

file  theme.php
 
+
+
+ + + + diff --git a/doc/html/dir_955ae6074e6c84afe72925e364242b14.js b/doc/html/dir_955ae6074e6c84afe72925e364242b14.js new file mode 100644 index 000000000..427747272 --- /dev/null +++ b/doc/html/dir_955ae6074e6c84afe72925e364242b14.js @@ -0,0 +1,4 @@ +var dir_955ae6074e6c84afe72925e364242b14 = +[ + [ "theme.php", "test_2php_2theme_8php.html", "test_2php_2theme_8php" ] +]; \ No newline at end of file diff --git a/doc/html/dir__fns_8php.html b/doc/html/dir__fns_8php.html new file mode 100644 index 000000000..c60df6cf4 --- /dev/null +++ b/doc/html/dir__fns_8php.html @@ -0,0 +1,169 @@ + + + + + + +The Red Project: include/dir_fns.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
dir_fns.php File Reference
+
+
+ + + + + + +

+Functions

 find_upstream_directory ($dirmode)
 
 syncdirs ($uid)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
find_upstream_directory ( $dirmode)
+
+
+ +
+
+ + + + + + + + +
syncdirs ( $uid)
+
+ +

Referenced by directory_run().

+ +
+
+
+
+ + + + diff --git a/doc/html/dir__fns_8php.js b/doc/html/dir__fns_8php.js new file mode 100644 index 000000000..9b40b1b0a --- /dev/null +++ b/doc/html/dir__fns_8php.js @@ -0,0 +1,5 @@ +var dir__fns_8php = +[ + [ "find_upstream_directory", "dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d", null ], + [ "syncdirs", "dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a", null ] +]; \ No newline at end of file diff --git a/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.html b/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.html new file mode 100644 index 000000000..9709e5c1c --- /dev/null +++ b/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.html @@ -0,0 +1,124 @@ + + + + + + +The Red Project: view Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
view Directory Reference
+
+
+ + + + + + +

+Directories

directory  php
 
directory  theme
 
+
+
+ + + + diff --git a/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.js b/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.js new file mode 100644 index 000000000..991623ea4 --- /dev/null +++ b/doc/html/dir_b2f003339c516cc00c8cadcafbe82f13.js @@ -0,0 +1,5 @@ +var dir_b2f003339c516cc00c8cadcafbe82f13 = +[ + [ "php", "dir_817f6d302394b98e59575acdb59998bc.html", "dir_817f6d302394b98e59575acdb59998bc" ], + [ "theme", "dir_8543001e5d25368a6edede3e63efb554.html", "dir_8543001e5d25368a6edede3e63efb554" ] +]; \ No newline at end of file diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.html b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html new file mode 100644 index 000000000..b4d09c8b4 --- /dev/null +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.html @@ -0,0 +1,332 @@ + + + + + + +The Red Project: mod Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
mod Directory Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

file  _well_known.php
 
file  acl.php
 
file  admin.php
 
file  allfriends.php
 
file  api.php
 
file  apps.php
 
file  attach.php
 
file  channel.php
 
file  chanview.php
 
file  common.php
 
file  community.php
 
file  connections.php
 
file  contactgroup.php
 
file  crepair.php
 
file  delegate.php
 
file  directory.php
 
file  dirfind.php
 
file  dirsearch.php
 
file  display.php
 
file  editpost.php
 
file  events.php
 
file  fbrowser.php
 
file  feed.php
 
file  filer.php
 
file  filerm.php
 
file  follow.php
 
file  fsuggest.php
 
file  group.php
 
file  hcard.php
 
file  help.php
 
file  home.php
 
file  hostxrd.php
 
file  import.php
 
file  intro.php
 
file  invite.php
 
file  item.php
 
file  like.php
 
file  lockview.php
 
file  login.php
 
file  lostpass.php
 
file  magic.php
 
file  manage.php
 
file  match.php
 
file  message.php
 
file  mood.php
 
file  msearch.php
 
file  network.php
 
file  new_channel.php
 
file  nogroup.php
 
file  notifications.php
 
file  notify.php
 
file  oembed.php
 
file  oexchange.php
 
file  opensearch.php
 
file  page.php
 
file  parse_url.php
 
file  photo.php
 
file  photos.php
 
file  ping.php
 
file  poco.php
 
file  poke.php
 
file  post.php
 
file  pretheme.php
 
file  probe.php
 
file  profile.php
 
file  profile_photo.php
 
file  profiles.php
 
file  profperm.php
 
file  qsearch.php
 
file  randprof.php
 
file  redir.php
 
file  register.php
 
file  regmod.php
 
file  removeme.php
 
file  rmagic.php
 
file  rsd_xml.php
 
file  search.php
 
file  search_ac.php
 
file  settings.php
 
file  setup.php
 
file  share.php
 
file  siteinfo.php
 
file  smilies.php
 
file  starred.php
 
file  subthread.php
 
file  suggest.php
 
file  tagger.php
 
file  tagrm.php
 
file  test.php
 
file  toggle_mobile.php
 
file  uexport.php
 
file  update_channel.php
 
file  update_community.php
 
file  update_display.php
 
file  update_network.php
 
file  view.php
 
file  viewconnections.php
 
file  viewsrc.php
 
file  wall_attach.php
 
file  wall_upload.php
 
file  webfinger.php
 
file  xchan.php
 
file  xrd.php
 
file  zfinger.php
 
file  zotfeed.php
 
file  zperms.php
 
+
+
+ + + + diff --git a/doc/html/dir_d41ce877eb409a4791b288730010abe2.js b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js new file mode 100644 index 000000000..5f9df67bd --- /dev/null +++ b/doc/html/dir_d41ce877eb409a4791b288730010abe2.js @@ -0,0 +1,109 @@ +var dir_d41ce877eb409a4791b288730010abe2 = +[ + [ "_well_known.php", "__well__known_8php.html", "__well__known_8php" ], + [ "acl.php", "acl_8php.html", "acl_8php" ], + [ "admin.php", "admin_8php.html", "admin_8php" ], + [ "allfriends.php", "allfriends_8php.html", "allfriends_8php" ], + [ "api.php", "mod_2api_8php.html", "mod_2api_8php" ], + [ "apps.php", "apps_8php.html", "apps_8php" ], + [ "attach.php", "mod_2attach_8php.html", "mod_2attach_8php" ], + [ "channel.php", "channel_8php.html", "channel_8php" ], + [ "chanview.php", "chanview_8php.html", "chanview_8php" ], + [ "common.php", "common_8php.html", "common_8php" ], + [ "community.php", "community_8php.html", "community_8php" ], + [ "connections.php", "connections_8php.html", "connections_8php" ], + [ "contactgroup.php", "contactgroup_8php.html", "contactgroup_8php" ], + [ "crepair.php", "crepair_8php.html", "crepair_8php" ], + [ "delegate.php", "delegate_8php.html", "delegate_8php" ], + [ "directory.php", "mod_2directory_8php.html", "mod_2directory_8php" ], + [ "dirfind.php", "dirfind_8php.html", "dirfind_8php" ], + [ "dirsearch.php", "dirsearch_8php.html", "dirsearch_8php" ], + [ "display.php", "display_8php.html", "display_8php" ], + [ "editpost.php", "editpost_8php.html", "editpost_8php" ], + [ "events.php", "events_8php.html", "events_8php" ], + [ "fbrowser.php", "fbrowser_8php.html", "fbrowser_8php" ], + [ "feed.php", "feed_8php.html", "feed_8php" ], + [ "filer.php", "filer_8php.html", "filer_8php" ], + [ "filerm.php", "filerm_8php.html", "filerm_8php" ], + [ "follow.php", "mod_2follow_8php.html", "mod_2follow_8php" ], + [ "fsuggest.php", "fsuggest_8php.html", "fsuggest_8php" ], + [ "group.php", "mod_2group_8php.html", "mod_2group_8php" ], + [ "hcard.php", "hcard_8php.html", "hcard_8php" ], + [ "help.php", "help_8php.html", "help_8php" ], + [ "home.php", "home_8php.html", null ], + [ "hostxrd.php", "hostxrd_8php.html", "hostxrd_8php" ], + [ "import.php", "import_8php.html", "import_8php" ], + [ "intro.php", "intro_8php.html", "intro_8php" ], + [ "invite.php", "invite_8php.html", "invite_8php" ], + [ "item.php", "item_8php.html", "item_8php" ], + [ "like.php", "like_8php.html", "like_8php" ], + [ "lockview.php", "lockview_8php.html", "lockview_8php" ], + [ "login.php", "login_8php.html", "login_8php" ], + [ "lostpass.php", "lostpass_8php.html", "lostpass_8php" ], + [ "magic.php", "magic_8php.html", "magic_8php" ], + [ "manage.php", "manage_8php.html", "manage_8php" ], + [ "match.php", "match_8php.html", "match_8php" ], + [ "message.php", "mod_2message_8php.html", "mod_2message_8php" ], + [ "mood.php", "mood_8php.html", "mood_8php" ], + [ "msearch.php", "msearch_8php.html", "msearch_8php" ], + [ "network.php", "mod_2network_8php.html", "mod_2network_8php" ], + [ "new_channel.php", "new__channel_8php.html", "new__channel_8php" ], + [ "nogroup.php", "nogroup_8php.html", "nogroup_8php" ], + [ "notifications.php", "notifications_8php.html", "notifications_8php" ], + [ "notify.php", "mod_2notify_8php.html", "mod_2notify_8php" ], + [ "oembed.php", "mod_2oembed_8php.html", "mod_2oembed_8php" ], + [ "oexchange.php", "oexchange_8php.html", "oexchange_8php" ], + [ "opensearch.php", "opensearch_8php.html", "opensearch_8php" ], + [ "page.php", "page_8php.html", "page_8php" ], + [ "parse_url.php", "parse__url_8php.html", "parse__url_8php" ], + [ "photo.php", "photo_8php.html", "photo_8php" ], + [ "photos.php", "mod_2photos_8php.html", "mod_2photos_8php" ], + [ "ping.php", "ping_8php.html", "ping_8php" ], + [ "poco.php", "poco_8php.html", "poco_8php" ], + [ "poke.php", "poke_8php.html", "poke_8php" ], + [ "post.php", "post_8php.html", "post_8php" ], + [ "pretheme.php", "pretheme_8php.html", "pretheme_8php" ], + [ "probe.php", "probe_8php.html", "probe_8php" ], + [ "profile.php", "profile_8php.html", "profile_8php" ], + [ "profile_photo.php", "profile__photo_8php.html", "profile__photo_8php" ], + [ "profiles.php", "profiles_8php.html", "profiles_8php" ], + [ "profperm.php", "profperm_8php.html", "profperm_8php" ], + [ "qsearch.php", "qsearch_8php.html", "qsearch_8php" ], + [ "randprof.php", "randprof_8php.html", "randprof_8php" ], + [ "redir.php", "redir_8php.html", "redir_8php" ], + [ "register.php", "register_8php.html", "register_8php" ], + [ "regmod.php", "regmod_8php.html", "regmod_8php" ], + [ "removeme.php", "removeme_8php.html", "removeme_8php" ], + [ "rmagic.php", "rmagic_8php.html", "rmagic_8php" ], + [ "rsd_xml.php", "rsd__xml_8php.html", "rsd__xml_8php" ], + [ "search.php", "search_8php.html", "search_8php" ], + [ "search_ac.php", "search__ac_8php.html", "search__ac_8php" ], + [ "settings.php", "settings_8php.html", "settings_8php" ], + [ "setup.php", "setup_8php.html", "setup_8php" ], + [ "share.php", "share_8php.html", "share_8php" ], + [ "siteinfo.php", "siteinfo_8php.html", "siteinfo_8php" ], + [ "smilies.php", "smilies_8php.html", "smilies_8php" ], + [ "starred.php", "starred_8php.html", "starred_8php" ], + [ "subthread.php", "subthread_8php.html", "subthread_8php" ], + [ "suggest.php", "suggest_8php.html", "suggest_8php" ], + [ "tagger.php", "tagger_8php.html", "tagger_8php" ], + [ "tagrm.php", "tagrm_8php.html", "tagrm_8php" ], + [ "test.php", "test_8php.html", "test_8php" ], + [ "toggle_mobile.php", "toggle__mobile_8php.html", "toggle__mobile_8php" ], + [ "uexport.php", "uexport_8php.html", "uexport_8php" ], + [ "update_channel.php", "update__channel_8php.html", "update__channel_8php" ], + [ "update_community.php", "update__community_8php.html", "update__community_8php" ], + [ "update_display.php", "update__display_8php.html", "update__display_8php" ], + [ "update_network.php", "update__network_8php.html", "update__network_8php" ], + [ "view.php", "view_8php.html", "view_8php" ], + [ "viewconnections.php", "viewconnections_8php.html", "viewconnections_8php" ], + [ "viewsrc.php", "viewsrc_8php.html", "viewsrc_8php" ], + [ "wall_attach.php", "wall__attach_8php.html", "wall__attach_8php" ], + [ "wall_upload.php", "wall__upload_8php.html", "wall__upload_8php" ], + [ "webfinger.php", "webfinger_8php.html", "webfinger_8php" ], + [ "xchan.php", "xchan_8php.html", "xchan_8php" ], + [ "xrd.php", "xrd_8php.html", "xrd_8php" ], + [ "zfinger.php", "zfinger_8php.html", "zfinger_8php" ], + [ "zotfeed.php", "zotfeed_8php.html", "zotfeed_8php" ], + [ "zperms.php", "zperms_8php.html", "zperms_8php" ] +]; \ No newline at end of file diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html new file mode 100644 index 000000000..78e7e326b --- /dev/null +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -0,0 +1,252 @@ + + + + + + +The Red Project: include Directory Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
include Directory Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

file  account.php
 
file  acl_selectors.php
 
file  activities.php
 
file  api.php
 
file  attach.php
 
file  auth.php
 
file  BaseObject.php
 
file  bb2diaspora.php
 
file  bbcode.php
 
file  cache.php
 
file  cli_startup.php
 
file  config.php
 
file  Contact.php
 
file  contact_selectors.php
 
file  contact_widgets.php
 
file  conversation.php
 
file  ConversationObject.php
 
file  cronhooks.php
 
file  crypto.php
 
file  datetime.php
 
file  dba.php
 
file  deliver.php
 
file  dir_fns.php
 
file  directory.php
 
file  enotify.php
 
file  event.php
 
file  expire.php
 
file  fcontact.php
 
file  features.php
 
file  follow.php
 
file  friendica_smarty.php
 
file  gprobe.php
 
file  group.php
 
file  html2bbcode.php
 
file  html2plain.php
 
file  identity.php
 
file  iquery.php
 
file  ItemObject.php
 
file  items.php
 
file  language.php
 
file  message.php
 
file  nav.php
 
file  network.php
 
file  notifier.php
 
file  notify.php
 
file  oauth.php
 
file  oembed.php
 
file  onepoll.php
 
file  permissions.php
 
file  Photo.php
 
file  photos.php
 
file  plugin.php
 
file  poller.php
 
file  profile_advanced.php
 
file  profile_selectors.php
 
file  ProtoDriver.php
 
file  queue.php
 
file  queue_fn.php
 
file  Scrape.php
 
file  security.php
 
file  session.php
 
file  socgraph.php
 
file  system_unavailable.php
 
file  template_processor.php
 
file  text.php
 
file  zot.php
 
+
+
+ + + + diff --git a/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js new file mode 100644 index 000000000..ebcb126cf --- /dev/null +++ b/doc/html/dir_d44c64559bbebec7f509842c48db8b23.js @@ -0,0 +1,82 @@ +var dir_d44c64559bbebec7f509842c48db8b23 = +[ + [ "account.php", "account_8php.html", "account_8php" ], + [ "acl_selectors.php", "acl__selectors_8php.html", "acl__selectors_8php" ], + [ "activities.php", "activities_8php.html", "activities_8php" ], + [ "api.php", "include_2api_8php.html", "include_2api_8php" ], + [ "attach.php", "include_2attach_8php.html", "include_2attach_8php" ], + [ "auth.php", "auth_8php.html", "auth_8php" ], + [ "BaseObject.php", "BaseObject_8php.html", [ + [ "BaseObject", "classBaseObject.html", "classBaseObject" ] + ] ], + [ "bb2diaspora.php", "bb2diaspora_8php.html", "bb2diaspora_8php" ], + [ "bbcode.php", "bbcode_8php.html", "bbcode_8php" ], + [ "cache.php", "cache_8php.html", [ + [ "Cache", "classCache.html", null ] + ] ], + [ "cli_startup.php", "cli__startup_8php.html", "cli__startup_8php" ], + [ "config.php", "include_2config_8php.html", "include_2config_8php" ], + [ "Contact.php", "Contact_8php.html", "Contact_8php" ], + [ "contact_selectors.php", "contact__selectors_8php.html", "contact__selectors_8php" ], + [ "contact_widgets.php", "contact__widgets_8php.html", "contact__widgets_8php" ], + [ "conversation.php", "conversation_8php.html", "conversation_8php" ], + [ "ConversationObject.php", "ConversationObject_8php.html", [ + [ "Conversation", "classConversation.html", "classConversation" ] + ] ], + [ "cronhooks.php", "cronhooks_8php.html", "cronhooks_8php" ], + [ "crypto.php", "crypto_8php.html", "crypto_8php" ], + [ "datetime.php", "datetime_8php.html", "datetime_8php" ], + [ "dba.php", "dba_8php.html", "dba_8php" ], + [ "deliver.php", "deliver_8php.html", "deliver_8php" ], + [ "dir_fns.php", "dir__fns_8php.html", "dir__fns_8php" ], + [ "directory.php", "include_2directory_8php.html", "include_2directory_8php" ], + [ "enotify.php", "enotify_8php.html", "enotify_8php" ], + [ "event.php", "event_8php.html", "event_8php" ], + [ "expire.php", "expire_8php.html", "expire_8php" ], + [ "fcontact.php", "fcontact_8php.html", "fcontact_8php" ], + [ "features.php", "features_8php.html", "features_8php" ], + [ "follow.php", "include_2follow_8php.html", "include_2follow_8php" ], + [ "friendica_smarty.php", "friendica__smarty_8php.html", [ + [ "FriendicaSmarty", "classFriendicaSmarty.html", "classFriendicaSmarty" ] + ] ], + [ "gprobe.php", "gprobe_8php.html", "gprobe_8php" ], + [ "group.php", "include_2group_8php.html", "include_2group_8php" ], + [ "html2bbcode.php", "html2bbcode_8php.html", "html2bbcode_8php" ], + [ "html2plain.php", "html2plain_8php.html", "html2plain_8php" ], + [ "identity.php", "identity_8php.html", "identity_8php" ], + [ "iquery.php", "iquery_8php.html", "iquery_8php" ], + [ "ItemObject.php", "ItemObject_8php.html", [ + [ "Item", "classItem.html", "classItem" ] + ] ], + [ "items.php", "items_8php.html", "items_8php" ], + [ "language.php", "language_8php.html", "language_8php" ], + [ "message.php", "include_2message_8php.html", "include_2message_8php" ], + [ "nav.php", "nav_8php.html", "nav_8php" ], + [ "network.php", "include_2network_8php.html", "include_2network_8php" ], + [ "notifier.php", "notifier_8php.html", "notifier_8php" ], + [ "notify.php", "include_2notify_8php.html", "include_2notify_8php" ], + [ "oauth.php", "oauth_8php.html", "oauth_8php" ], + [ "oembed.php", "include_2oembed_8php.html", "include_2oembed_8php" ], + [ "onepoll.php", "onepoll_8php.html", "onepoll_8php" ], + [ "permissions.php", "permissions_8php.html", "permissions_8php" ], + [ "Photo.php", "Photo_8php.html", "Photo_8php" ], + [ "photos.php", "include_2photos_8php.html", "include_2photos_8php" ], + [ "plugin.php", "plugin_8php.html", "plugin_8php" ], + [ "poller.php", "poller_8php.html", "poller_8php" ], + [ "profile_advanced.php", "profile__advanced_8php.html", "profile__advanced_8php" ], + [ "profile_selectors.php", "profile__selectors_8php.html", "profile__selectors_8php" ], + [ "ProtoDriver.php", "ProtoDriver_8php.html", [ + [ "ProtoDriver", "classProtoDriver.html", "classProtoDriver" ], + [ "ZotDriver", "classZotDriver.html", "classZotDriver" ] + ] ], + [ "queue.php", "queue_8php.html", "queue_8php" ], + [ "queue_fn.php", "queue__fn_8php.html", "queue__fn_8php" ], + [ "Scrape.php", "Scrape_8php.html", "Scrape_8php" ], + [ "security.php", "security_8php.html", "security_8php" ], + [ "session.php", "session_8php.html", "session_8php" ], + [ "socgraph.php", "socgraph_8php.html", "socgraph_8php" ], + [ "system_unavailable.php", "system__unavailable_8php.html", "system__unavailable_8php" ], + [ "template_processor.php", "template__processor_8php.html", "template__processor_8php" ], + [ "text.php", "text_8php.html", "text_8php" ], + [ "zot.php", "zot_8php.html", "zot_8php" ] +]; \ No newline at end of file diff --git a/doc/html/dirfind_8php.html b/doc/html/dirfind_8php.html new file mode 100644 index 000000000..a2bb86d73 --- /dev/null +++ b/doc/html/dirfind_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/dirfind.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
dirfind.php File Reference
+
+
+ + + + + + +

+Functions

 dirfind_init (&$a)
 
 dirfind_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
dirfind_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
dirfind_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/dirfind_8php.js b/doc/html/dirfind_8php.js new file mode 100644 index 000000000..133a7bcb3 --- /dev/null +++ b/doc/html/dirfind_8php.js @@ -0,0 +1,5 @@ +var dirfind_8php = +[ + [ "dirfind_content", "dirfind_8php.html#af22b0283f928c4c32e62248a5ae67cee", null ], + [ "dirfind_init", "dirfind_8php.html#ac689a812c84f161b3a0d42349f83981c", null ] +]; \ No newline at end of file diff --git a/doc/html/dirsearch_8php.html b/doc/html/dirsearch_8php.html new file mode 100644 index 000000000..86a2731e0 --- /dev/null +++ b/doc/html/dirsearch_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/dirsearch.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
dirsearch.php File Reference
+
+
+ + + + + + +

+Functions

 dirsearch_init (&$a)
 
 dirsearch_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
dirsearch_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
dirsearch_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/dirsearch_8php.js b/doc/html/dirsearch_8php.js new file mode 100644 index 000000000..0cb81668f --- /dev/null +++ b/doc/html/dirsearch_8php.js @@ -0,0 +1,5 @@ +var dirsearch_8php = +[ + [ "dirsearch_content", "dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c", null ], + [ "dirsearch_init", "dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752", null ] +]; \ No newline at end of file diff --git a/doc/html/display_8php.html b/doc/html/display_8php.html new file mode 100644 index 000000000..c2182f208 --- /dev/null +++ b/doc/html/display_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/display.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
display.php File Reference
+
+
+ + + + +

+Functions

 display_content (&$a, $update=0, $load=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
display_content ($a,
 $update = 0,
 $load = false 
)
+
+ +

Referenced by update_display_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/display_8php.js b/doc/html/display_8php.js new file mode 100644 index 000000000..3fb3beffb --- /dev/null +++ b/doc/html/display_8php.js @@ -0,0 +1,4 @@ +var display_8php = +[ + [ "display_content", "display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0", null ] +]; \ No newline at end of file diff --git a/doc/html/docblox__errorchecker_8php.html b/doc/html/docblox__errorchecker_8php.html new file mode 100644 index 000000000..e1a238635 --- /dev/null +++ b/doc/html/docblox__errorchecker_8php.html @@ -0,0 +1,324 @@ + + + + + + +The Red Project: util/docblox_errorchecker.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
docblox_errorchecker.php File Reference
+
+
+ + + + +

+Namespaces

namespace  util
 
+ + + + + + + +

+Functions

 namesList ($fileset)
 
 runs ($fileset)
 
 reduce ($fileset, $ps)
 
+ + + + + + + + + + + + + + + + + +

+Variables

 $dir ='..'
 
 $dirstack =array()
 
 $filelist =array()
 
while($dh=opendir($dir)) if(runs($filelist)) $res =$filelist
 
 $i =0
 
 do
 
 $needed =array()
 
 while (count($res)!=0)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
namesList ( $fileset)
+
+ +

Referenced by runs().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
reduce ( $fileset,
 $ps 
)
+
+ +
+
+ +
+
+ + + + + + + + +
runs ( $fileset)
+
+ +
+
+

Variable Documentation

+ +
+
+ + + + +
$dir ='..'
+
+ +
+
+ +
+
+ + + + +
$dirstack =array()
+
+ +
+
+ +
+
+ + + + +
$filelist =array()
+
+ +
+
+ + + +
+
+ + + + +
$needed =array()
+
+ +
+
+ + + +
+
+ + + + +
do
+
+Initial value:
{
+
$i=count($res)
+
+
+
+ +
+
+ + + + +
while(count($res)!=0)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/docblox__errorchecker_8php.js b/doc/html/docblox__errorchecker_8php.js new file mode 100644 index 000000000..17707e7c6 --- /dev/null +++ b/doc/html/docblox__errorchecker_8php.js @@ -0,0 +1,14 @@ +var docblox__errorchecker_8php = +[ + [ "namesList", "docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b", null ], + [ "reduce", "docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f", null ], + [ "runs", "docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec", null ], + [ "$dir", "docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62", null ], + [ "$dirstack", "docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6", null ], + [ "$filelist", "docblox__errorchecker_8php.html#a648a570b0f9f6e0e51b7267647c4b09b", null ], + [ "$i", "docblox__errorchecker_8php.html#a83018d9153d17d91fbcf3bc10158d34f", null ], + [ "$needed", "docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73", null ], + [ "$res", "docblox__errorchecker_8php.html#a49a8a4009b02e49717caa88b128affc5", null ], + [ "do", "docblox__errorchecker_8php.html#a721c6ff80a6d3e4ad4ffa52a04c60085", null ], + [ "while", "docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d", null ] +]; \ No newline at end of file diff --git a/doc/html/doxygen.css b/doc/html/doxygen.css new file mode 100644 index 000000000..dabaff2fd --- /dev/null +++ b/doc/html/doxygen.css @@ -0,0 +1,1184 @@ +/* The standard CSS for doxygen 1.8.3.1 */ + +body, table, div, p, dl { + font: 400 14px/19px Roboto,sans-serif; +} + +/* @group Heading Levels */ + +h1.groupheader { + font-size: 150%; +} + +.title { + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2.groupheader { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +div.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; +} + +p.startli, p.startdd, p.starttd { + margin-top: 2px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.qindex, div.navtab{ + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; +} + +div.qindex, div.navpath { + width: 100%; + line-height: 140%; +} + +div.navtab { + margin-right: 15px; +} + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: underline; +} + +a.qindex { + font-weight: bold; +} + +a.qindexHL { + font-weight: bold; + background-color: #9CAFD4; + color: #ffffff; + border: 1px double #869DCA; +} + +.contents a.qindexHL:visited { + color: #ffffff; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +pre.fragment { + border: 1px solid #C4CFE5; + background-color: #FBFCFD; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 4px; + margin: 4px; + background-color: #FBFCFD; + border: 1px solid #C4CFE5; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +div.ah { + background-color: black; + font-weight: bold; + color: #ffffff; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000); +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background-color: white; + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +td.indexkey { + background-color: #EBEFF6; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #EBEFF6; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #EEF1F7; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #A3B4D7; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #DEE4F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: bold; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + border-top-left-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + -moz-border-radius-topleft: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + -webkit-border-top-left-radius: 4px; + +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + background-color: #FBFCFD; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFFFF; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view when not used as main index */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #F7F8FB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + /*width: 100%;*/ + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 5px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + /*width: 100%;*/ +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 2px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image:url('tab_b.png'); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#8AA0CC; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: #283A5D; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#364D7C; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +dl +{ + padding: 0 0 0 10px; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ +dl.section +{ + margin-left: 0px; + padding-left: 0px; +} + +dl.note +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00D000; +} + +dl.deprecated +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #505050; +} + +dl.todo +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00C0E0; +} + +dl.test +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #3030E0; +} + +dl.bug +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; +} + +dl.citelist dd { + margin:2px 0; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 20px 10px 10px; + width: 200px; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + diff --git a/doc/html/doxygen.png b/doc/html/doxygen.png new file mode 100644 index 000000000..3ff17d807 Binary files /dev/null and b/doc/html/doxygen.png differ diff --git a/doc/html/dynsections.js b/doc/html/dynsections.js new file mode 100644 index 000000000..ed092c7f6 --- /dev/null +++ b/doc/html/dynsections.js @@ -0,0 +1,97 @@ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} +function toggleLevel(level) +{ + $('table.directory tr').each(function(){ + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l + + + + + +The Red Project: mod/editpost.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
editpost.php File Reference
+
+
+ + + + +

+Functions

 editpost_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
editpost_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/editpost_8php.js b/doc/html/editpost_8php.js new file mode 100644 index 000000000..5012045da --- /dev/null +++ b/doc/html/editpost_8php.js @@ -0,0 +1,4 @@ +var editpost_8php = +[ + [ "editpost_content", "editpost_8php.html#a34011690864d122680c802e9e748ccfb", null ] +]; \ No newline at end of file diff --git a/doc/html/enotify_8php.html b/doc/html/enotify_8php.html new file mode 100644 index 000000000..b72cf74e9 --- /dev/null +++ b/doc/html/enotify_8php.html @@ -0,0 +1,155 @@ + + + + + + +The Red Project: include/enotify.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
enotify.php File Reference
+
+
+ + + + +

+Classes

class  enotify
 
+ + + +

+Functions

 notification ($params)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
notification ( $params)
+
+
+
+
+ + + + diff --git a/doc/html/enotify_8php.js b/doc/html/enotify_8php.js new file mode 100644 index 000000000..2dd8c6299 --- /dev/null +++ b/doc/html/enotify_8php.js @@ -0,0 +1,5 @@ +var enotify_8php = +[ + [ "enotify", "classenotify.html", null ], + [ "notification", "enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc", null ] +]; \ No newline at end of file diff --git a/doc/html/event_8php.html b/doc/html/event_8php.html new file mode 100644 index 000000000..e11d4dd0f --- /dev/null +++ b/doc/html/event_8php.html @@ -0,0 +1,275 @@ + + + + + + +The Red Project: include/event.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
event.php File Reference
+
+
+ + + + + + + + + + + + + + + + +

+Functions

 format_event_html ($ev)
 
 format_event_bbcode ($ev)
 
 bbtovcal ($s)
 
 bbtoevent ($s)
 
 sort_by_date ($arr)
 
 ev_compare ($a, $b)
 
 event_store ($arr)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
bbtoevent ( $s)
+
+
+ +
+
+ + + + + + + + +
bbtovcal ( $s)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
ev_compare ( $a,
 $b 
)
+
+ +
+
+ +
+
+ + + + + + + + +
event_store ( $arr)
+
+
+ +
+
+ + + + + + + + +
format_event_bbcode ( $ev)
+
+ +

Referenced by event_store().

+ +
+
+ +
+
+ + + + + + + + +
format_event_html ( $ev)
+
+ +

Referenced by bbcode(), bbtovcal(), and events_content().

+ +
+
+ +
+
+ + + + + + + + +
sort_by_date ( $arr)
+
+ +

Referenced by events_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/event_8php.js b/doc/html/event_8php.js new file mode 100644 index 000000000..3d6ce5806 --- /dev/null +++ b/doc/html/event_8php.js @@ -0,0 +1,10 @@ +var event_8php = +[ + [ "bbtoevent", "event_8php.html#a180cccd63c2a2f00ff432b03113531f3", null ], + [ "bbtovcal", "event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279", null ], + [ "ev_compare", "event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850", null ], + [ "event_store", "event_8php.html#a89ef533faf345db8d64a58d4856bde3a", null ], + [ "format_event_bbcode", "event_8php.html#abb74206cf42d694307c3d7abb7af9869", null ], + [ "format_event_html", "event_8php.html#a2ac9f1b08de03250ecd794f705781d17", null ], + [ "sort_by_date", "event_8php.html#a018ea4484910a873a7c1eaa126de9b1a", null ] +]; \ No newline at end of file diff --git a/doc/html/events_8php.html b/doc/html/events_8php.html new file mode 100644 index 000000000..f894af448 --- /dev/null +++ b/doc/html/events_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/events.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
events.php File Reference
+
+
+ + + + + + +

+Functions

 events_post (&$a)
 
 events_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
events_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
events_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/events_8php.js b/doc/html/events_8php.js new file mode 100644 index 000000000..d53a51cbd --- /dev/null +++ b/doc/html/events_8php.js @@ -0,0 +1,5 @@ +var events_8php = +[ + [ "events_content", "events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec", null ], + [ "events_post", "events_8php.html#ab3e8a8f901175f8e40a8089eea45c075", null ] +]; \ No newline at end of file diff --git a/doc/html/expire_8php.html b/doc/html/expire_8php.html new file mode 100644 index 000000000..21a327d3e --- /dev/null +++ b/doc/html/expire_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/expire.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
expire.php File Reference
+
+
+ + + + +

+Functions

 expire_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
expire_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/expire_8php.js b/doc/html/expire_8php.js new file mode 100644 index 000000000..6ecd16ffe --- /dev/null +++ b/doc/html/expire_8php.js @@ -0,0 +1,4 @@ +var expire_8php = +[ + [ "expire_run", "expire_8php.html#a444e45c9b67727b27db4c779fd51a298", null ] +]; \ No newline at end of file diff --git a/doc/html/extract_8php.html b/doc/html/extract_8php.html new file mode 100644 index 000000000..db1ab2e6d --- /dev/null +++ b/doc/html/extract_8php.html @@ -0,0 +1,191 @@ + + + + + + +The Red Project: util/extract.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
extract.php File Reference
+
+
+ + + + + + + + + + +

+Variables

 $arr = array()
 
 $files = array('index.php','boot.php')
 
foreach($files as $file) $s = '<?php' . "\n"
 
foreach($arr as $a) $zones = timezone_identifiers_list()
 
+

Variable Documentation

+ +
+
+ + + + +
$arr = array()
+
+ +

Referenced by activity_sanitise(), add_fcontact(), api_rss_extra(), array_sanitise(), attach_store(), check_account_admin(), check_account_email(), check_account_invite(), check_account_password(), check_list_permissions(), check_webbie(), connections_content(), construct_page(), contact_select(), create_account(), create_identity(), dbesc_array(), directory_content(), event_store(), feature_enabled(), fetch_xrd_links(), find_xchan_in_array(), get_all_perms(), get_atom_elements(), 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(), identity_basic_import(), ids_to_querystr(), import_directory_profile(), import_post(), import_xchan(), item_getfeedattach(), item_store(), like_content(), load_database(), lrdd(), magic_init(), mail_store(), mood_init(), network_content(), network_query(), new_channel_post(), new_contact(), parse_url_content(), perm_is_allowed(), photo_upload(), photos_album_get_db_idstr(), photos_create_item(), photos_post(), ping_init(), po2php_run(), poke_init(), post_post(), proc_run(), process_delivery(), process_mail_delivery(), process_profile_delivery(), profile_activity(), profile_sidebar(), profile_tabs(), profiles_content(), register_post(), send_reg_approval_email(), service_class_allows(), service_class_fetch(), App\set_apps(), settings_post(), sort_by_date(), stringify_array_elms(), subthread_content(), tagger_content(), tagrm_content(), tagrm_post(), validate_channelname(), xchan_mail_query(), xchan_query(), xml2array(), xrd_init(), zfinger_init(), zid_init(), zot_fetch(), zot_get_hubloc(), zot_gethub(), zot_import(), zot_process_response(), and zot_register_hub().

+ +
+
+ +
+
+ + + + +
$files = array('index.php','boot.php')
+
+
+ + + +
+
+ + + + +
foreach ($arr as $a) $zones = timezone_identifiers_list()
+
+ +
+
+
+
+ + + + diff --git a/doc/html/extract_8php.js b/doc/html/extract_8php.js new file mode 100644 index 000000000..af6949603 --- /dev/null +++ b/doc/html/extract_8php.js @@ -0,0 +1,7 @@ +var extract_8php = +[ + [ "$arr", "extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb", null ], + [ "$files", "extract_8php.html#a9590b15215a21e9b42eb546aeef79704", null ], + [ "$s", "extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634", null ], + [ "$zones", "extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44", null ] +]; \ No newline at end of file diff --git a/doc/html/fbrowser_8php.html b/doc/html/fbrowser_8php.html new file mode 100644 index 000000000..dbfa7f091 --- /dev/null +++ b/doc/html/fbrowser_8php.html @@ -0,0 +1,159 @@ + + + + + + +The Red Project: mod/fbrowser.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
fbrowser.php File Reference
+
+
+ + + + +

+Namespaces

namespace  Friendica
 
+ + + +

+Functions

 fbrowser_content ($a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
fbrowser_content ( $a)
+
+
Parameters
+ + +
App$a
+
+
+ +
+
+
+
+ + + + diff --git a/doc/html/fbrowser_8php.js b/doc/html/fbrowser_8php.js new file mode 100644 index 000000000..5dbc20d7b --- /dev/null +++ b/doc/html/fbrowser_8php.js @@ -0,0 +1,4 @@ +var fbrowser_8php = +[ + [ "fbrowser_content", "fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4", null ] +]; \ No newline at end of file diff --git a/doc/html/fcontact_8php.html b/doc/html/fcontact_8php.html new file mode 100644 index 000000000..96006ee5b --- /dev/null +++ b/doc/html/fcontact_8php.html @@ -0,0 +1,197 @@ + + + + + + +The Red Project: include/fcontact.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
fcontact.php File Reference
+
+
+ + + + + + +

+Functions

 fcontact_store ($url, $name, $photo)
 
 ffinder_store ($uid, $cid, $fid)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
fcontact_store ( $url,
 $name,
 $photo 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
ffinder_store ( $uid,
 $cid,
 $fid 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/fcontact_8php.js b/doc/html/fcontact_8php.js new file mode 100644 index 000000000..de48747b1 --- /dev/null +++ b/doc/html/fcontact_8php.js @@ -0,0 +1,5 @@ +var fcontact_8php = +[ + [ "fcontact_store", "fcontact_8php.html#a4ce1d8d444c938790e0d50e003d04a15", null ], + [ "ffinder_store", "fcontact_8php.html#a4512592814dc7883b57bf01ac33353f6", null ] +]; \ No newline at end of file diff --git a/doc/html/features_8php.html b/doc/html/features_8php.html new file mode 100644 index 000000000..d7eb8e826 --- /dev/null +++ b/doc/html/features_8php.html @@ -0,0 +1,176 @@ + + + + + + +The Red Project: include/features.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
features.php File Reference
+
+
+ + + + + + +

+Functions

 feature_enabled ($uid, $feature)
 
 get_features ()
 
+

Function Documentation

+ + + +
+
+ + + + + + + +
get_features ()
+
+ +
+
+
+
+ + + + diff --git a/doc/html/features_8php.js b/doc/html/features_8php.js new file mode 100644 index 000000000..d5f51e5f7 --- /dev/null +++ b/doc/html/features_8php.js @@ -0,0 +1,5 @@ +var features_8php = +[ + [ "feature_enabled", "features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0", null ], + [ "get_features", "features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c", null ] +]; \ No newline at end of file diff --git a/doc/html/feed_8php.html b/doc/html/feed_8php.html new file mode 100644 index 000000000..4d49dfcee --- /dev/null +++ b/doc/html/feed_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/feed.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
feed.php File Reference
+
+
+ + + + +

+Functions

 feed_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
feed_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/feed_8php.js b/doc/html/feed_8php.js new file mode 100644 index 000000000..b218d275b --- /dev/null +++ b/doc/html/feed_8php.js @@ -0,0 +1,4 @@ +var feed_8php = +[ + [ "feed_init", "feed_8php.html#af86137700b56f33d1d5f25c8dec22c04", null ] +]; \ No newline at end of file diff --git a/doc/html/filer_8php.html b/doc/html/filer_8php.html new file mode 100644 index 000000000..e90c8fd82 --- /dev/null +++ b/doc/html/filer_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/filer.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
filer.php File Reference
+
+
+ + + + +

+Functions

 filer_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
filer_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/filer_8php.js b/doc/html/filer_8php.js new file mode 100644 index 000000000..be0098bdc --- /dev/null +++ b/doc/html/filer_8php.js @@ -0,0 +1,4 @@ +var filer_8php = +[ + [ "filer_content", "filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274", null ] +]; \ No newline at end of file diff --git a/doc/html/filerm_8php.html b/doc/html/filerm_8php.html new file mode 100644 index 000000000..2946182dd --- /dev/null +++ b/doc/html/filerm_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/filerm.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
filerm.php File Reference
+
+
+ + + + +

+Functions

 filerm_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
filerm_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/filerm_8php.js b/doc/html/filerm_8php.js new file mode 100644 index 000000000..bc36f3054 --- /dev/null +++ b/doc/html/filerm_8php.js @@ -0,0 +1,4 @@ +var filerm_8php = +[ + [ "filerm_content", "filerm_8php.html#ae2eb28d2054fa2c37e38689882172208", null ] +]; \ No newline at end of file diff --git a/doc/html/files.html b/doc/html/files.html new file mode 100644 index 000000000..d6dca4c05 --- /dev/null +++ b/doc/html/files.html @@ -0,0 +1,330 @@ + + + + + + +The Red Project: File List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
File List
+
+
+
Here is a list of all files with brief descriptions:
+
[detail level 12345]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
o+include
o+mod
o+util
o+view
\*boot.php
+
+
+
+ + + + diff --git a/doc/html/files.js b/doc/html/files.js new file mode 100644 index 000000000..705395136 --- /dev/null +++ b/doc/html/files.js @@ -0,0 +1,8 @@ +var files = +[ + [ "include", "dir_d44c64559bbebec7f509842c48db8b23.html", "dir_d44c64559bbebec7f509842c48db8b23" ], + [ "mod", "dir_d41ce877eb409a4791b288730010abe2.html", "dir_d41ce877eb409a4791b288730010abe2" ], + [ "util", "dir_23ec12649285f9fabf3a6b7380226c28.html", "dir_23ec12649285f9fabf3a6b7380226c28" ], + [ "view", "dir_b2f003339c516cc00c8cadcafbe82f13.html", "dir_b2f003339c516cc00c8cadcafbe82f13" ], + [ "boot.php", "boot_8php.html", "boot_8php" ] +]; \ No newline at end of file diff --git a/doc/html/fpostit_8php.html b/doc/html/fpostit_8php.html new file mode 100644 index 000000000..b8b9d2f06 --- /dev/null +++ b/doc/html/fpostit_8php.html @@ -0,0 +1,182 @@ + + + + + + +The Red Project: util/fpostit/fpostit.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
fpostit.php File Reference
+
+
+ + + + +

+Functions

 showForm ($error, $content)
 
+ + + +

+Variables

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
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
showForm ( $error,
 $content 
)
+
+ +
+
+

Variable Documentation

+ +
+
+ + + + +
if (isset($_POST['submit'])) else
+
+Initial value:
{
+
$content = $_POST['content']
+
+
+
+
+
+ + + + diff --git a/doc/html/fpostit_8php.js b/doc/html/fpostit_8php.js new file mode 100644 index 000000000..f1da198d9 --- /dev/null +++ b/doc/html/fpostit_8php.js @@ -0,0 +1,5 @@ +var fpostit_8php = +[ + [ "showForm", "fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443", null ], + [ "else", "fpostit_8php.html#a501b5ca82f287509fc691c88524064c1", null ] +]; \ No newline at end of file diff --git a/doc/html/fred-48.png b/doc/html/fred-48.png new file mode 100644 index 000000000..7cee38ef6 Binary files /dev/null and b/doc/html/fred-48.png differ diff --git a/doc/html/fresh_8md.html b/doc/html/fresh_8md.html new file mode 100644 index 000000000..6f33ecad2 --- /dev/null +++ b/doc/html/fresh_8md.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: util/fresh.md File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
util/fresh.md File Reference
+
+
+
+
+ + + + diff --git a/doc/html/friendica-to-smarty-tpl_8py.html b/doc/html/friendica-to-smarty-tpl_8py.html new file mode 100644 index 000000000..bd28e770a --- /dev/null +++ b/doc/html/friendica-to-smarty-tpl_8py.html @@ -0,0 +1,168 @@ + + + + + + +The Red Project: util/friendica-to-smarty-tpl.py File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
friendica-to-smarty-tpl.py File Reference
+
+
+ + + + +

+Namespaces

namespace  friendica-to-smarty-tpl
 
+ + + + + + + + + +

+Functions

def friendica-to-smarty-tpl.fToSmarty
 
def friendica-to-smarty-tpl.fix_element
 
def friendica-to-smarty-tpl.convert
 
def friendica-to-smarty-tpl.help
 
+ + + + + + + + + + + + + + + + + + + + + + + +

+Variables

string friendica-to-smarty-tpl.ldelim = '{{'
 
string friendica-to-smarty-tpl.rdelim = '}}'
 
string friendica-to-smarty-tpl.path = ''
 
string friendica-to-smarty-tpl.outpath = path+'smarty3/'
 
tuple friendica-to-smarty-tpl.files = os.listdir(path)
 
 friendica-to-smarty-tpl.php_tpl = True
 
tuple friendica-to-smarty-tpl.filename = os.path.join(path,a_file)
 
tuple friendica-to-smarty-tpl.ext = a_file.split('.')
 
tuple friendica-to-smarty-tpl.f = open(filename, 'r')
 
tuple friendica-to-smarty-tpl.newfilename = os.path.join(outpath,a_file)
 
tuple friendica-to-smarty-tpl.outf = open(newfilename, 'w')
 
+
+
+ + + + diff --git a/doc/html/friendica-to-smarty-tpl_8py.js b/doc/html/friendica-to-smarty-tpl_8py.js new file mode 100644 index 000000000..41fc17aef --- /dev/null +++ b/doc/html/friendica-to-smarty-tpl_8py.js @@ -0,0 +1,18 @@ +var friendica_to_smarty_tpl_8py = +[ + [ "convert", "friendica-to-smarty-tpl_8py.html#a38503e37fe68ac27c88cce91a9ac9efa", null ], + [ "fix_element", "friendica-to-smarty-tpl_8py.html#a3719dd46e286a57d315e6adae1845854", null ], + [ "fToSmarty", "friendica-to-smarty-tpl_8py.html#a89388ea9b2826e8218ed480e917d8105", null ], + [ "help", "friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749", null ], + [ "ext", "friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb", null ], + [ "f", "friendica-to-smarty-tpl_8py.html#a965e1d6d6293654a56e029a7e454dec7", null ], + [ "filename", "friendica-to-smarty-tpl_8py.html#a5f9bf7a67d955c0d6be70a82097611c5", null ], + [ "files", "friendica-to-smarty-tpl_8py.html#ae74419b16516956c66f7db714a93a6ac", null ], + [ "ldelim", "friendica-to-smarty-tpl_8py.html#a0b4cf73d1a8d201a28d269eeb62a5d5c", null ], + [ "newfilename", "friendica-to-smarty-tpl_8py.html#ad9ef87ccb2c9960501f5e02424a22d80", null ], + [ "outf", "friendica-to-smarty-tpl_8py.html#a87182a9bab47640428bd0b2b9946bef9", null ], + [ "outpath", "friendica-to-smarty-tpl_8py.html#a005c1b7a69cac31fad72a941974ba7bb", null ], + [ "path", "friendica-to-smarty-tpl_8py.html#a68d15934660cd1f4301ce251b1646f09", null ], + [ "php_tpl", "friendica-to-smarty-tpl_8py.html#a5dfc21ab8282dda8e3a7dff43cd0e283", null ], + [ "rdelim", "friendica-to-smarty-tpl_8py.html#a8540514fb7c4aa18ad2dffa2a975036b", null ] +]; \ No newline at end of file diff --git a/doc/html/friendica__smarty_8php.html b/doc/html/friendica__smarty_8php.html new file mode 100644 index 000000000..2bff5262f --- /dev/null +++ b/doc/html/friendica__smarty_8php.html @@ -0,0 +1,130 @@ + + + + + + +The Red Project: include/friendica_smarty.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
friendica_smarty.php File Reference
+
+
+ + + + +

+Classes

class  FriendicaSmarty
 
+
+
+ + + + diff --git a/doc/html/fsuggest_8php.html b/doc/html/fsuggest_8php.html new file mode 100644 index 000000000..3092078c0 --- /dev/null +++ b/doc/html/fsuggest_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/fsuggest.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
fsuggest.php File Reference
+
+
+ + + + + + +

+Functions

 fsuggest_post (&$a)
 
 fsuggest_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
fsuggest_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
fsuggest_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/fsuggest_8php.js b/doc/html/fsuggest_8php.js new file mode 100644 index 000000000..e2c0f9a50 --- /dev/null +++ b/doc/html/fsuggest_8php.js @@ -0,0 +1,5 @@ +var fsuggest_8php = +[ + [ "fsuggest_content", "fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998", null ], + [ "fsuggest_post", "fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d", null ] +]; \ No newline at end of file diff --git a/doc/html/ftv2blank.png b/doc/html/ftv2blank.png new file mode 100644 index 000000000..63c605bb4 Binary files /dev/null and b/doc/html/ftv2blank.png differ diff --git a/doc/html/ftv2cl.png b/doc/html/ftv2cl.png new file mode 100644 index 000000000..132f6577b Binary files /dev/null and b/doc/html/ftv2cl.png differ diff --git a/doc/html/ftv2doc.png b/doc/html/ftv2doc.png new file mode 100644 index 000000000..17edabff9 Binary files /dev/null and b/doc/html/ftv2doc.png differ diff --git a/doc/html/ftv2folderclosed.png b/doc/html/ftv2folderclosed.png new file mode 100644 index 000000000..bb8ab35ed Binary files /dev/null and b/doc/html/ftv2folderclosed.png differ diff --git a/doc/html/ftv2folderopen.png b/doc/html/ftv2folderopen.png new file mode 100644 index 000000000..d6c7f676a Binary files /dev/null and b/doc/html/ftv2folderopen.png differ diff --git a/doc/html/ftv2lastnode.png b/doc/html/ftv2lastnode.png new file mode 100644 index 000000000..63c605bb4 Binary files /dev/null and b/doc/html/ftv2lastnode.png differ diff --git a/doc/html/ftv2link.png b/doc/html/ftv2link.png new file mode 100644 index 000000000..17edabff9 Binary files /dev/null and b/doc/html/ftv2link.png differ diff --git a/doc/html/ftv2mlastnode.png b/doc/html/ftv2mlastnode.png new file mode 100644 index 000000000..0b63f6d38 Binary files /dev/null and b/doc/html/ftv2mlastnode.png differ diff --git a/doc/html/ftv2mnode.png b/doc/html/ftv2mnode.png new file mode 100644 index 000000000..0b63f6d38 Binary files /dev/null and b/doc/html/ftv2mnode.png differ diff --git a/doc/html/ftv2mo.png b/doc/html/ftv2mo.png new file mode 100644 index 000000000..4bfb80f76 Binary files /dev/null and b/doc/html/ftv2mo.png differ diff --git a/doc/html/ftv2node.png b/doc/html/ftv2node.png new file mode 100644 index 000000000..63c605bb4 Binary files /dev/null and b/doc/html/ftv2node.png differ diff --git a/doc/html/ftv2ns.png b/doc/html/ftv2ns.png new file mode 100644 index 000000000..72e3d71c2 Binary files /dev/null and b/doc/html/ftv2ns.png differ diff --git a/doc/html/ftv2plastnode.png b/doc/html/ftv2plastnode.png new file mode 100644 index 000000000..c6ee22f93 Binary files /dev/null and b/doc/html/ftv2plastnode.png differ diff --git a/doc/html/ftv2pnode.png b/doc/html/ftv2pnode.png new file mode 100644 index 000000000..c6ee22f93 Binary files /dev/null and b/doc/html/ftv2pnode.png differ diff --git a/doc/html/ftv2splitbar.png b/doc/html/ftv2splitbar.png new file mode 100644 index 000000000..fe895f2c5 Binary files /dev/null and b/doc/html/ftv2splitbar.png differ diff --git a/doc/html/ftv2vertline.png b/doc/html/ftv2vertline.png new file mode 100644 index 000000000..63c605bb4 Binary files /dev/null and b/doc/html/ftv2vertline.png differ diff --git a/doc/html/full_8php.html b/doc/html/full_8php.html new file mode 100644 index 000000000..4c282c6ba --- /dev/null +++ b/doc/html/full_8php.html @@ -0,0 +1,143 @@ + + + + + + +The Red Project: view/php/full.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
full.php File Reference
+
+
+ + + + +

+Variables

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

Variable Documentation

+ +
+
+ + + + +
if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< nav ><?php if(x($page
+
+ +
+
+
+
+ + + + diff --git a/doc/html/full_8php.js b/doc/html/full_8php.js new file mode 100644 index 000000000..c63a31b79 --- /dev/null +++ b/doc/html/full_8php.js @@ -0,0 +1,4 @@ +var full_8php = +[ + [ "if", "full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db", null ] +]; \ No newline at end of file diff --git a/doc/html/functions.html b/doc/html/functions.html new file mode 100644 index 000000000..3f0e7801f --- /dev/null +++ b/doc/html/functions.html @@ -0,0 +1,438 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- $ -

+
+
+ + + + diff --git a/doc/html/functions_0x5f.html b/doc/html/functions_0x5f.html new file mode 100644 index 000000000..83e3dab66 --- /dev/null +++ b/doc/html/functions_0x5f.html @@ -0,0 +1,198 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- _ -

+
+
+ + + + diff --git a/doc/html/functions_0x61.html b/doc/html/functions_0x61.html new file mode 100644 index 000000000..f2c0772c7 --- /dev/null +++ b/doc/html/functions_0x61.html @@ -0,0 +1,162 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- a -

+
+
+ + + + diff --git a/doc/html/functions_0x62.html b/doc/html/functions_0x62.html new file mode 100644 index 000000000..06d3882a3 --- /dev/null +++ b/doc/html/functions_0x62.html @@ -0,0 +1,155 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- b -

    +
  • build_pagehead() +: App +
  • +
+
+
+ + + + diff --git a/doc/html/functions_0x63.html b/doc/html/functions_0x63.html new file mode 100644 index 000000000..83a936c71 --- /dev/null +++ b/doc/html/functions_0x63.html @@ -0,0 +1,176 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- c -

+
+
+ + + + diff --git a/doc/html/functions_0x64.html b/doc/html/functions_0x64.html new file mode 100644 index 000000000..5f0b432fb --- /dev/null +++ b/doc/html/functions_0x64.html @@ -0,0 +1,167 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- d -

+
+
+ + + + diff --git a/doc/html/functions_0x65.html b/doc/html/functions_0x65.html new file mode 100644 index 000000000..e467e2577 --- /dev/null +++ b/doc/html/functions_0x65.html @@ -0,0 +1,155 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- e -

    +
  • escape() +: dba +
  • +
+
+
+ + + + diff --git a/doc/html/functions_0x66.html b/doc/html/functions_0x66.html new file mode 100644 index 000000000..ac3ed0d35 --- /dev/null +++ b/doc/html/functions_0x66.html @@ -0,0 +1,155 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- f -

+
+
+ + + + diff --git a/doc/html/functions_0x67.html b/doc/html/functions_0x67.html new file mode 100644 index 000000000..52230312c --- /dev/null +++ b/doc/html/functions_0x67.html @@ -0,0 +1,282 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- g -

    +
  • gen_token() +: FKOAuthDataStore +
  • +
  • get() +: Cache +
  • +
  • get_account() +: App +
  • +
  • get_app() +: BaseObject +
  • +
  • get_apps() +: App +
  • +
  • get_baseurl() +: App +
  • +
  • get_channel() +: App +
  • +
  • get_child() +: Item +
  • +
  • get_children() +: Item +
  • +
  • get_comment_box() +: Item +
  • +
  • get_comment_box_template() +: Item +
  • +
  • get_conversation() +: Item +
  • +
  • get_curl_code() +: App +
  • +
  • get_curl_headers() +: App +
  • +
  • get_data() +: Item +
  • +
  • get_data_value() +: Item +
  • +
  • get_FormatsMap() +: Photo +
  • +
  • get_groups() +: App +
  • +
  • get_hostname() +: App +
  • +
  • get_id() +: Item +
  • +
  • get_mode() +: Conversation +
  • +
  • get_observer() +: App +
  • +
  • get_owner_name() +: Item +
  • +
  • get_owner_photo() +: Item +
  • +
  • get_owner_url() +: Item +
  • +
  • get_parent() +: Item +
  • +
  • get_path() +: App +
  • +
  • get_perms() +: App +
  • +
  • get_profile_owner() +: Conversation +
  • +
  • get_redirect_url() +: Item +
  • +
  • get_template() +: Item +
  • +
  • get_template_data() +: Conversation +, Item +
  • +
  • get_template_engine() +: App +
  • +
  • get_template_ldelim() +: App +
  • +
  • get_template_rdelim() +: App +
  • +
  • get_thread() +: Conversation +
  • +
  • get_widgets() +: App +
  • +
  • getdb() +: dba +
  • +
  • getExt() +: Photo +
  • +
  • getHeight() +: Photo +
  • +
  • getImage() +: Photo +
  • +
  • getType() +: Photo +
  • +
  • getWidth() +: Photo +
  • +
+
+
+ + + + diff --git a/doc/html/functions_0x69.html b/doc/html/functions_0x69.html new file mode 100644 index 000000000..eda1a28ec --- /dev/null +++ b/doc/html/functions_0x69.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- i -

+
+
+ + + + diff --git a/doc/html/functions_0x6c.html b/doc/html/functions_0x6c.html new file mode 100644 index 000000000..9dfaac55f --- /dev/null +++ b/doc/html/functions_0x6c.html @@ -0,0 +1,164 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- l -

+
+
+ + + + diff --git a/doc/html/functions_0x6e.html b/doc/html/functions_0x6e.html new file mode 100644 index 000000000..0b045e4ed --- /dev/null +++ b/doc/html/functions_0x6e.html @@ -0,0 +1,158 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- n -

+
+
+ + + + diff --git a/doc/html/functions_0x6f.html b/doc/html/functions_0x6f.html new file mode 100644 index 000000000..b83d86b32 --- /dev/null +++ b/doc/html/functions_0x6f.html @@ -0,0 +1,155 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- o -

+
+
+ + + + diff --git a/doc/html/functions_0x70.html b/doc/html/functions_0x70.html new file mode 100644 index 000000000..ea5d976ba --- /dev/null +++ b/doc/html/functions_0x70.html @@ -0,0 +1,155 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- p -

+
+
+ + + + diff --git a/doc/html/functions_0x71.html b/doc/html/functions_0x71.html new file mode 100644 index 000000000..0d20cad6e --- /dev/null +++ b/doc/html/functions_0x71.html @@ -0,0 +1,155 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- q -

    +
  • q() +: dba +
  • +
+
+
+ + + + diff --git a/doc/html/functions_0x72.html b/doc/html/functions_0x72.html new file mode 100644 index 000000000..8601c044e --- /dev/null +++ b/doc/html/functions_0x72.html @@ -0,0 +1,164 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- r -

+
+
+ + + + diff --git a/doc/html/functions_0x73.html b/doc/html/functions_0x73.html new file mode 100644 index 000000000..2e0ea0533 --- /dev/null +++ b/doc/html/functions_0x73.html @@ -0,0 +1,233 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- s -

    +
  • saveImage() +: Photo +
  • +
  • scaleImage() +: Photo +
  • +
  • scaleImageSquare() +: Photo +
  • +
  • scaleImageUp() +: Photo +
  • +
  • send() +: enotify +
  • +
  • set() +: Cache +
  • +
  • set_account() +: App +
  • +
  • set_app() +: BaseObject +
  • +
  • set_apps() +: App +
  • +
  • set_baseurl() +: App +
  • +
  • set_channel() +: App +
  • +
  • set_conversation() +: Item +
  • +
  • set_curl_code() +: App +
  • +
  • set_curl_headers() +: App +
  • +
  • set_groups() +: App +
  • +
  • set_hostname() +: App +
  • +
  • set_mode() +: Conversation +
  • +
  • set_observer() +: App +
  • +
  • set_pager_itemspage() +: App +
  • +
  • set_pager_total() +: App +
  • +
  • set_parent() +: Item +
  • +
  • set_path() +: App +
  • +
  • set_perms() +: App +
  • +
  • set_template_engine() +: App +
  • +
  • set_widget() +: App +
  • +
  • store() +: Photo +
  • +
  • supportedTypes() +: Photo +
  • +
+
+
+ + + + diff --git a/doc/html/functions_0x76.html b/doc/html/functions_0x76.html new file mode 100644 index 000000000..99527c526 --- /dev/null +++ b/doc/html/functions_0x76.html @@ -0,0 +1,155 @@ + + + + + + +The Red Project: Class Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all class members with links to the classes they belong to:
+ +

- v -

+
+
+ + + + diff --git a/doc/html/functions_dup.js b/doc/html/functions_dup.js new file mode 100644 index 000000000..44058b59d --- /dev/null +++ b/doc/html/functions_dup.js @@ -0,0 +1,21 @@ +var functions_dup = +[ + [ "$", "functions.html", null ], + [ "_", "functions_0x5f.html", null ], + [ "a", "functions_0x61.html", null ], + [ "b", "functions_0x62.html", null ], + [ "c", "functions_0x63.html", null ], + [ "d", "functions_0x64.html", null ], + [ "e", "functions_0x65.html", null ], + [ "f", "functions_0x66.html", null ], + [ "g", "functions_0x67.html", null ], + [ "i", "functions_0x69.html", null ], + [ "l", "functions_0x6c.html", null ], + [ "n", "functions_0x6e.html", null ], + [ "o", "functions_0x6f.html", null ], + [ "p", "functions_0x70.html", null ], + [ "q", "functions_0x71.html", null ], + [ "r", "functions_0x72.html", null ], + [ "s", "functions_0x73.html", null ], + [ "v", "functions_0x76.html", null ] +]; \ No newline at end of file diff --git a/doc/html/functions_func.html b/doc/html/functions_func.html new file mode 100644 index 000000000..59d491fee --- /dev/null +++ b/doc/html/functions_func.html @@ -0,0 +1,603 @@ + + + + + + +The Red Project: Class Members - Functions + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- _ -

+ + +

- a -

+ + +

- b -

    +
  • build_pagehead() +: App +
  • +
+ + +

- c -

+ + +

- d -

+ + +

- e -

    +
  • escape() +: dba +
  • +
+ + +

- f -

+ + +

- g -

    +
  • gen_token() +: FKOAuthDataStore +
  • +
  • get() +: Cache +
  • +
  • get_account() +: App +
  • +
  • get_app() +: BaseObject +
  • +
  • get_apps() +: App +
  • +
  • get_baseurl() +: App +
  • +
  • get_channel() +: App +
  • +
  • get_child() +: Item +
  • +
  • get_children() +: Item +
  • +
  • get_comment_box() +: Item +
  • +
  • get_comment_box_template() +: Item +
  • +
  • get_conversation() +: Item +
  • +
  • get_curl_code() +: App +
  • +
  • get_curl_headers() +: App +
  • +
  • get_data() +: Item +
  • +
  • get_data_value() +: Item +
  • +
  • get_FormatsMap() +: Photo +
  • +
  • get_groups() +: App +
  • +
  • get_hostname() +: App +
  • +
  • get_id() +: Item +
  • +
  • get_mode() +: Conversation +
  • +
  • get_observer() +: App +
  • +
  • get_owner_name() +: Item +
  • +
  • get_owner_photo() +: Item +
  • +
  • get_owner_url() +: Item +
  • +
  • get_parent() +: Item +
  • +
  • get_path() +: App +
  • +
  • get_perms() +: App +
  • +
  • get_profile_owner() +: Conversation +
  • +
  • get_redirect_url() +: Item +
  • +
  • get_template() +: Item +
  • +
  • get_template_data() +: Conversation +, Item +
  • +
  • get_template_engine() +: App +
  • +
  • get_template_ldelim() +: App +
  • +
  • get_template_rdelim() +: App +
  • +
  • get_thread() +: Conversation +
  • +
  • get_widgets() +: App +
  • +
  • getdb() +: dba +
  • +
  • getExt() +: Photo +
  • +
  • getHeight() +: Photo +
  • +
  • getImage() +: Photo +
  • +
  • getType() +: Photo +
  • +
  • getWidth() +: Photo +
  • +
+ + +

- i -

+ + +

- l -

+ + +

- n -

+ + +

- o -

+ + +

- p -

+ + +

- q -

    +
  • q() +: dba +
  • +
+ + +

- r -

+ + +

- s -

    +
  • saveImage() +: Photo +
  • +
  • scaleImage() +: Photo +
  • +
  • scaleImageSquare() +: Photo +
  • +
  • scaleImageUp() +: Photo +
  • +
  • send() +: enotify +
  • +
  • set() +: Cache +
  • +
  • set_account() +: App +
  • +
  • set_app() +: BaseObject +
  • +
  • set_apps() +: App +
  • +
  • set_baseurl() +: App +
  • +
  • set_channel() +: App +
  • +
  • set_conversation() +: Item +
  • +
  • set_curl_code() +: App +
  • +
  • set_curl_headers() +: App +
  • +
  • set_groups() +: App +
  • +
  • set_hostname() +: App +
  • +
  • set_mode() +: Conversation +
  • +
  • set_observer() +: App +
  • +
  • set_pager_itemspage() +: App +
  • +
  • set_pager_total() +: App +
  • +
  • set_parent() +: Item +
  • +
  • set_path() +: App +
  • +
  • set_perms() +: App +
  • +
  • set_template_engine() +: App +
  • +
  • set_widget() +: App +
  • +
  • store() +: Photo +
  • +
  • supportedTypes() +: Photo +
  • +
+ + +

- v -

+
+
+ + + + diff --git a/doc/html/functions_vars.html b/doc/html/functions_vars.html new file mode 100644 index 000000000..26ad1c270 --- /dev/null +++ b/doc/html/functions_vars.html @@ -0,0 +1,421 @@ + + + + + + +The Red Project: Class Members - Variables + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- $ -

+
+
+ + + + diff --git a/doc/html/globals.html b/doc/html/globals.html new file mode 100644 index 000000000..adee817fb --- /dev/null +++ b/doc/html/globals.html @@ -0,0 +1,299 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- $ -

+
+
+ + + + diff --git a/doc/html/globals_0x5f.html b/doc/html/globals_0x5f.html new file mode 100644 index 000000000..fcdc30cde --- /dev/null +++ b/doc/html/globals_0x5f.html @@ -0,0 +1,162 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- _ -

+
+
+ + + + diff --git a/doc/html/globals_0x61.html b/doc/html/globals_0x61.html new file mode 100644 index 000000000..c5e8f0be7 --- /dev/null +++ b/doc/html/globals_0x61.html @@ -0,0 +1,579 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- a -

+
+
+ + + + diff --git a/doc/html/globals_0x62.html b/doc/html/globals_0x62.html new file mode 100644 index 000000000..687120a83 --- /dev/null +++ b/doc/html/globals_0x62.html @@ -0,0 +1,204 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- b -

+
+
+ + + + diff --git a/doc/html/globals_0x63.html b/doc/html/globals_0x63.html new file mode 100644 index 000000000..61fed9d2a --- /dev/null +++ b/doc/html/globals_0x63.html @@ -0,0 +1,402 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- c -

+
+
+ + + + diff --git a/doc/html/globals_0x64.html b/doc/html/globals_0x64.html new file mode 100644 index 000000000..a5db48d60 --- /dev/null +++ b/doc/html/globals_0x64.html @@ -0,0 +1,294 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- d -

+
+
+ + + + diff --git a/doc/html/globals_0x65.html b/doc/html/globals_0x65.html new file mode 100644 index 000000000..84117e670 --- /dev/null +++ b/doc/html/globals_0x65.html @@ -0,0 +1,217 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- e -

+
+
+ + + + diff --git a/doc/html/globals_0x66.html b/doc/html/globals_0x66.html new file mode 100644 index 000000000..0168ee313 --- /dev/null +++ b/doc/html/globals_0x66.html @@ -0,0 +1,300 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- f -

+
+
+ + + + diff --git a/doc/html/globals_0x67.html b/doc/html/globals_0x67.html new file mode 100644 index 000000000..c9961f7a5 --- /dev/null +++ b/doc/html/globals_0x67.html @@ -0,0 +1,321 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- g -

+
+
+ + + + diff --git a/doc/html/globals_0x68.html b/doc/html/globals_0x68.html new file mode 100644 index 000000000..25d2d4ca2 --- /dev/null +++ b/doc/html/globals_0x68.html @@ -0,0 +1,207 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- h -

+
+
+ + + + diff --git a/doc/html/globals_0x69.html b/doc/html/globals_0x69.html new file mode 100644 index 000000000..e98b9cf34 --- /dev/null +++ b/doc/html/globals_0x69.html @@ -0,0 +1,309 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- i -

+
+
+ + + + diff --git a/doc/html/globals_0x6a.html b/doc/html/globals_0x6a.html new file mode 100644 index 000000000..35f1c1326 --- /dev/null +++ b/doc/html/globals_0x6a.html @@ -0,0 +1,168 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- j -

+
+
+ + + + diff --git a/doc/html/globals_0x6b.html b/doc/html/globals_0x6b.html new file mode 100644 index 000000000..17f25c18f --- /dev/null +++ b/doc/html/globals_0x6b.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- k -

+
+
+ + + + diff --git a/doc/html/globals_0x6c.html b/doc/html/globals_0x6c.html new file mode 100644 index 000000000..1b8a9e029 --- /dev/null +++ b/doc/html/globals_0x6c.html @@ -0,0 +1,234 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- l -

+
+
+ + + + diff --git a/doc/html/globals_0x6d.html b/doc/html/globals_0x6d.html new file mode 100644 index 000000000..c2d40aa57 --- /dev/null +++ b/doc/html/globals_0x6d.html @@ -0,0 +1,234 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- m -

+
+
+ + + + diff --git a/doc/html/globals_0x6e.html b/doc/html/globals_0x6e.html new file mode 100644 index 000000000..c77c3ee65 --- /dev/null +++ b/doc/html/globals_0x6e.html @@ -0,0 +1,366 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- n -

+
+
+ + + + diff --git a/doc/html/globals_0x6f.html b/doc/html/globals_0x6f.html new file mode 100644 index 000000000..f90c16d83 --- /dev/null +++ b/doc/html/globals_0x6f.html @@ -0,0 +1,201 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- o -

+
+
+ + + + diff --git a/doc/html/globals_0x70.html b/doc/html/globals_0x70.html new file mode 100644 index 000000000..16fdebfc2 --- /dev/null +++ b/doc/html/globals_0x70.html @@ -0,0 +1,473 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- p -

+
+
+ + + + diff --git a/doc/html/globals_0x71.html b/doc/html/globals_0x71.html new file mode 100644 index 000000000..7016ac524 --- /dev/null +++ b/doc/html/globals_0x71.html @@ -0,0 +1,171 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- q -

+
+
+ + + + diff --git a/doc/html/globals_0x72.html b/doc/html/globals_0x72.html new file mode 100644 index 000000000..cecd2ca57 --- /dev/null +++ b/doc/html/globals_0x72.html @@ -0,0 +1,261 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- r -

+
+
+ + + + diff --git a/doc/html/globals_0x73.html b/doc/html/globals_0x73.html new file mode 100644 index 000000000..3a6f69aeb --- /dev/null +++ b/doc/html/globals_0x73.html @@ -0,0 +1,318 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- s -

+
+
+ + + + diff --git a/doc/html/globals_0x74.html b/doc/html/globals_0x74.html new file mode 100644 index 000000000..1b6feaa2e --- /dev/null +++ b/doc/html/globals_0x74.html @@ -0,0 +1,264 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- t -

+
+
+ + + + diff --git a/doc/html/globals_0x75.html b/doc/html/globals_0x75.html new file mode 100644 index 000000000..f0ec7a479 --- /dev/null +++ b/doc/html/globals_0x75.html @@ -0,0 +1,213 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- u -

+
+
+ + + + diff --git a/doc/html/globals_0x76.html b/doc/html/globals_0x76.html new file mode 100644 index 000000000..b140ed80a --- /dev/null +++ b/doc/html/globals_0x76.html @@ -0,0 +1,189 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- v -

+
+
+ + + + diff --git a/doc/html/globals_0x77.html b/doc/html/globals_0x77.html new file mode 100644 index 000000000..9b1b19092 --- /dev/null +++ b/doc/html/globals_0x77.html @@ -0,0 +1,180 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- w -

+
+
+ + + + diff --git a/doc/html/globals_0x78.html b/doc/html/globals_0x78.html new file mode 100644 index 000000000..2cf07b980 --- /dev/null +++ b/doc/html/globals_0x78.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- x -

+
+
+ + + + diff --git a/doc/html/globals_0x7a.html b/doc/html/globals_0x7a.html new file mode 100644 index 000000000..c602fbcfa --- /dev/null +++ b/doc/html/globals_0x7a.html @@ -0,0 +1,237 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all file members with links to the files they belong to:
+ +

- z -

+
+
+ + + + diff --git a/doc/html/globals_dup.js b/doc/html/globals_dup.js new file mode 100644 index 000000000..6f7377056 --- /dev/null +++ b/doc/html/globals_dup.js @@ -0,0 +1,30 @@ +var globals_dup = +[ + [ "$", "globals.html", null ], + [ "_", "globals_0x5f.html", null ], + [ "a", "globals_0x61.html", null ], + [ "b", "globals_0x62.html", null ], + [ "c", "globals_0x63.html", null ], + [ "d", "globals_0x64.html", null ], + [ "e", "globals_0x65.html", null ], + [ "f", "globals_0x66.html", null ], + [ "g", "globals_0x67.html", null ], + [ "h", "globals_0x68.html", null ], + [ "i", "globals_0x69.html", null ], + [ "j", "globals_0x6a.html", null ], + [ "k", "globals_0x6b.html", null ], + [ "l", "globals_0x6c.html", null ], + [ "m", "globals_0x6d.html", null ], + [ "n", "globals_0x6e.html", null ], + [ "o", "globals_0x6f.html", null ], + [ "p", "globals_0x70.html", null ], + [ "q", "globals_0x71.html", null ], + [ "r", "globals_0x72.html", null ], + [ "s", "globals_0x73.html", null ], + [ "t", "globals_0x74.html", null ], + [ "u", "globals_0x75.html", null ], + [ "v", "globals_0x76.html", null ], + [ "w", "globals_0x77.html", null ], + [ "x", "globals_0x78.html", null ], + [ "z", "globals_0x7a.html", null ] +]; \ No newline at end of file diff --git a/doc/html/globals_func.html b/doc/html/globals_func.html new file mode 100644 index 000000000..8e5d81a40 --- /dev/null +++ b/doc/html/globals_func.html @@ -0,0 +1,161 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- _ -

+
+
+ + + + diff --git a/doc/html/globals_func.js b/doc/html/globals_func.js new file mode 100644 index 000000000..1a7a97c5f --- /dev/null +++ b/doc/html/globals_func.js @@ -0,0 +1,29 @@ +var globals_func = +[ + [ "_", "globals_func.html", null ], + [ "a", "globals_func_0x61.html", null ], + [ "b", "globals_func_0x62.html", null ], + [ "c", "globals_func_0x63.html", null ], + [ "d", "globals_func_0x64.html", null ], + [ "e", "globals_func_0x65.html", null ], + [ "f", "globals_func_0x66.html", null ], + [ "g", "globals_func_0x67.html", null ], + [ "h", "globals_func_0x68.html", null ], + [ "i", "globals_func_0x69.html", null ], + [ "j", "globals_func_0x6a.html", null ], + [ "k", "globals_func_0x6b.html", null ], + [ "l", "globals_func_0x6c.html", null ], + [ "m", "globals_func_0x6d.html", null ], + [ "n", "globals_func_0x6e.html", null ], + [ "o", "globals_func_0x6f.html", null ], + [ "p", "globals_func_0x70.html", null ], + [ "q", "globals_func_0x71.html", null ], + [ "r", "globals_func_0x72.html", null ], + [ "s", "globals_func_0x73.html", null ], + [ "t", "globals_func_0x74.html", null ], + [ "u", "globals_func_0x75.html", null ], + [ "v", "globals_func_0x76.html", null ], + [ "w", "globals_func_0x77.html", null ], + [ "x", "globals_func_0x78.html", null ], + [ "z", "globals_func_0x7a.html", null ] +]; \ No newline at end of file diff --git a/doc/html/globals_func_0x61.html b/doc/html/globals_func_0x61.html new file mode 100644 index 000000000..b91655c2a --- /dev/null +++ b/doc/html/globals_func_0x61.html @@ -0,0 +1,452 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- a -

+
+
+ + + + diff --git a/doc/html/globals_func_0x62.html b/doc/html/globals_func_0x62.html new file mode 100644 index 000000000..c30557a55 --- /dev/null +++ b/doc/html/globals_func_0x62.html @@ -0,0 +1,203 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- b -

+
+
+ + + + diff --git a/doc/html/globals_func_0x63.html b/doc/html/globals_func_0x63.html new file mode 100644 index 000000000..f0db994a0 --- /dev/null +++ b/doc/html/globals_func_0x63.html @@ -0,0 +1,392 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- c -

+
+
+ + + + diff --git a/doc/html/globals_func_0x64.html b/doc/html/globals_func_0x64.html new file mode 100644 index 000000000..1d0a41e13 --- /dev/null +++ b/doc/html/globals_func_0x64.html @@ -0,0 +1,266 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- d -

+
+
+ + + + diff --git a/doc/html/globals_func_0x65.html b/doc/html/globals_func_0x65.html new file mode 100644 index 000000000..bed6109f0 --- /dev/null +++ b/doc/html/globals_func_0x65.html @@ -0,0 +1,206 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- e -

+
+
+ + + + diff --git a/doc/html/globals_func_0x66.html b/doc/html/globals_func_0x66.html new file mode 100644 index 000000000..91a293b28 --- /dev/null +++ b/doc/html/globals_func_0x66.html @@ -0,0 +1,290 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- f -

+
+
+ + + + diff --git a/doc/html/globals_func_0x67.html b/doc/html/globals_func_0x67.html new file mode 100644 index 000000000..d25608e67 --- /dev/null +++ b/doc/html/globals_func_0x67.html @@ -0,0 +1,311 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- g -

+
+
+ + + + diff --git a/doc/html/globals_func_0x68.html b/doc/html/globals_func_0x68.html new file mode 100644 index 000000000..ac1611df7 --- /dev/null +++ b/doc/html/globals_func_0x68.html @@ -0,0 +1,200 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- h -

+
+
+ + + + diff --git a/doc/html/globals_func_0x69.html b/doc/html/globals_func_0x69.html new file mode 100644 index 000000000..47ebe0635 --- /dev/null +++ b/doc/html/globals_func_0x69.html @@ -0,0 +1,245 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- i -

+
+
+ + + + diff --git a/doc/html/globals_func_0x6a.html b/doc/html/globals_func_0x6a.html new file mode 100644 index 000000000..bfe5975be --- /dev/null +++ b/doc/html/globals_func_0x6a.html @@ -0,0 +1,164 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- j -

+
+
+ + + + diff --git a/doc/html/globals_func_0x6b.html b/doc/html/globals_func_0x6b.html new file mode 100644 index 000000000..282536903 --- /dev/null +++ b/doc/html/globals_func_0x6b.html @@ -0,0 +1,161 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- k -

+
+
+ + + + diff --git a/doc/html/globals_func_0x6c.html b/doc/html/globals_func_0x6c.html new file mode 100644 index 000000000..ee889fbac --- /dev/null +++ b/doc/html/globals_func_0x6c.html @@ -0,0 +1,212 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- l -

+
+
+ + + + diff --git a/doc/html/globals_func_0x6d.html b/doc/html/globals_func_0x6d.html new file mode 100644 index 000000000..e2f7a2205 --- /dev/null +++ b/doc/html/globals_func_0x6d.html @@ -0,0 +1,215 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- m -

+
+
+ + + + diff --git a/doc/html/globals_func_0x6e.html b/doc/html/globals_func_0x6e.html new file mode 100644 index 000000000..cb4ccd5d5 --- /dev/null +++ b/doc/html/globals_func_0x6e.html @@ -0,0 +1,245 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- n -

+
+
+ + + + diff --git a/doc/html/globals_func_0x6f.html b/doc/html/globals_func_0x6f.html new file mode 100644 index 000000000..b23c79921 --- /dev/null +++ b/doc/html/globals_func_0x6f.html @@ -0,0 +1,200 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- o -

+
+
+ + + + diff --git a/doc/html/globals_func_0x70.html b/doc/html/globals_func_0x70.html new file mode 100644 index 000000000..b7bc9e320 --- /dev/null +++ b/doc/html/globals_func_0x70.html @@ -0,0 +1,383 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- p -

+
+
+ + + + diff --git a/doc/html/globals_func_0x71.html b/doc/html/globals_func_0x71.html new file mode 100644 index 000000000..c43117b8b --- /dev/null +++ b/doc/html/globals_func_0x71.html @@ -0,0 +1,170 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- q -

+
+
+ + + + diff --git a/doc/html/globals_func_0x72.html b/doc/html/globals_func_0x72.html new file mode 100644 index 000000000..d84014756 --- /dev/null +++ b/doc/html/globals_func_0x72.html @@ -0,0 +1,242 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- r -

+
+
+ + + + diff --git a/doc/html/globals_func_0x73.html b/doc/html/globals_func_0x73.html new file mode 100644 index 000000000..be259c8a6 --- /dev/null +++ b/doc/html/globals_func_0x73.html @@ -0,0 +1,308 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- s -

+
+
+ + + + diff --git a/doc/html/globals_func_0x74.html b/doc/html/globals_func_0x74.html new file mode 100644 index 000000000..ca04881ff --- /dev/null +++ b/doc/html/globals_func_0x74.html @@ -0,0 +1,233 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- t -

+
+
+ + + + diff --git a/doc/html/globals_func_0x75.html b/doc/html/globals_func_0x75.html new file mode 100644 index 000000000..f2de6baad --- /dev/null +++ b/doc/html/globals_func_0x75.html @@ -0,0 +1,206 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- u -

+
+
+ + + + diff --git a/doc/html/globals_func_0x76.html b/doc/html/globals_func_0x76.html new file mode 100644 index 000000000..05a427c8c --- /dev/null +++ b/doc/html/globals_func_0x76.html @@ -0,0 +1,188 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- v -

+
+
+ + + + diff --git a/doc/html/globals_func_0x77.html b/doc/html/globals_func_0x77.html new file mode 100644 index 000000000..5c5de8101 --- /dev/null +++ b/doc/html/globals_func_0x77.html @@ -0,0 +1,176 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- w -

+
+
+ + + + diff --git a/doc/html/globals_func_0x78.html b/doc/html/globals_func_0x78.html new file mode 100644 index 000000000..c5ab784d5 --- /dev/null +++ b/doc/html/globals_func_0x78.html @@ -0,0 +1,179 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- x -

+
+
+ + + + diff --git a/doc/html/globals_func_0x7a.html b/doc/html/globals_func_0x7a.html new file mode 100644 index 000000000..b2953b14d --- /dev/null +++ b/doc/html/globals_func_0x7a.html @@ -0,0 +1,230 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- z -

+
+
+ + + + diff --git a/doc/html/globals_vars.html b/doc/html/globals_vars.html new file mode 100644 index 000000000..c573bfbf4 --- /dev/null +++ b/doc/html/globals_vars.html @@ -0,0 +1,294 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- $ -

+
+
+ + + + diff --git a/doc/html/globals_vars.js b/doc/html/globals_vars.js new file mode 100644 index 000000000..f614b41fa --- /dev/null +++ b/doc/html/globals_vars.js @@ -0,0 +1,25 @@ +var globals_vars = +[ + [ "$", "globals_vars.html", null ], + [ "a", "globals_vars_0x61.html", null ], + [ "c", "globals_vars_0x63.html", null ], + [ "d", "globals_vars_0x64.html", null ], + [ "e", "globals_vars_0x65.html", null ], + [ "f", "globals_vars_0x66.html", null ], + [ "g", "globals_vars_0x67.html", null ], + [ "h", "globals_vars_0x68.html", null ], + [ "i", "globals_vars_0x69.html", null ], + [ "j", "globals_vars_0x6a.html", null ], + [ "k", "globals_vars_0x6b.html", null ], + [ "l", "globals_vars_0x6c.html", null ], + [ "m", "globals_vars_0x6d.html", null ], + [ "n", "globals_vars_0x6e.html", null ], + [ "p", "globals_vars_0x70.html", null ], + [ "r", "globals_vars_0x72.html", null ], + [ "s", "globals_vars_0x73.html", null ], + [ "t", "globals_vars_0x74.html", null ], + [ "u", "globals_vars_0x75.html", null ], + [ "w", "globals_vars_0x77.html", null ], + [ "x", "globals_vars_0x78.html", null ], + [ "z", "globals_vars_0x7a.html", null ] +]; \ No newline at end of file diff --git a/doc/html/globals_vars_0x61.html b/doc/html/globals_vars_0x61.html new file mode 100644 index 000000000..4e2c7bfa3 --- /dev/null +++ b/doc/html/globals_vars_0x61.html @@ -0,0 +1,280 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- a -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x63.html b/doc/html/globals_vars_0x63.html new file mode 100644 index 000000000..2501a616d --- /dev/null +++ b/doc/html/globals_vars_0x63.html @@ -0,0 +1,163 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- c -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x64.html b/doc/html/globals_vars_0x64.html new file mode 100644 index 000000000..fe43094c1 --- /dev/null +++ b/doc/html/globals_vars_0x64.html @@ -0,0 +1,181 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- d -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x65.html b/doc/html/globals_vars_0x65.html new file mode 100644 index 000000000..f9087146d --- /dev/null +++ b/doc/html/globals_vars_0x65.html @@ -0,0 +1,164 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- e -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x66.html b/doc/html/globals_vars_0x66.html new file mode 100644 index 000000000..87a1212f5 --- /dev/null +++ b/doc/html/globals_vars_0x66.html @@ -0,0 +1,163 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- f -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x67.html b/doc/html/globals_vars_0x67.html new file mode 100644 index 000000000..90af0ba1b --- /dev/null +++ b/doc/html/globals_vars_0x67.html @@ -0,0 +1,163 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- g -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x68.html b/doc/html/globals_vars_0x68.html new file mode 100644 index 000000000..8e99e28e1 --- /dev/null +++ b/doc/html/globals_vars_0x68.html @@ -0,0 +1,160 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- h -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x69.html b/doc/html/globals_vars_0x69.html new file mode 100644 index 000000000..8690537dd --- /dev/null +++ b/doc/html/globals_vars_0x69.html @@ -0,0 +1,217 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- i -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x6a.html b/doc/html/globals_vars_0x6a.html new file mode 100644 index 000000000..4360e000d --- /dev/null +++ b/doc/html/globals_vars_0x6a.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- j -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x6b.html b/doc/html/globals_vars_0x6b.html new file mode 100644 index 000000000..8f9b26839 --- /dev/null +++ b/doc/html/globals_vars_0x6b.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- k -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x6c.html b/doc/html/globals_vars_0x6c.html new file mode 100644 index 000000000..d64a0396b --- /dev/null +++ b/doc/html/globals_vars_0x6c.html @@ -0,0 +1,175 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- l -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x6d.html b/doc/html/globals_vars_0x6d.html new file mode 100644 index 000000000..7fcacade1 --- /dev/null +++ b/doc/html/globals_vars_0x6d.html @@ -0,0 +1,172 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- m -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x6e.html b/doc/html/globals_vars_0x6e.html new file mode 100644 index 000000000..950827e39 --- /dev/null +++ b/doc/html/globals_vars_0x6e.html @@ -0,0 +1,274 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- n -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x70.html b/doc/html/globals_vars_0x70.html new file mode 100644 index 000000000..b248fa639 --- /dev/null +++ b/doc/html/globals_vars_0x70.html @@ -0,0 +1,243 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- p -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x72.html b/doc/html/globals_vars_0x72.html new file mode 100644 index 000000000..44bf1694e --- /dev/null +++ b/doc/html/globals_vars_0x72.html @@ -0,0 +1,172 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- r -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x73.html b/doc/html/globals_vars_0x73.html new file mode 100644 index 000000000..4a643de03 --- /dev/null +++ b/doc/html/globals_vars_0x73.html @@ -0,0 +1,163 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- s -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x74.html b/doc/html/globals_vars_0x74.html new file mode 100644 index 000000000..5f86a34f2 --- /dev/null +++ b/doc/html/globals_vars_0x74.html @@ -0,0 +1,184 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- t -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x75.html b/doc/html/globals_vars_0x75.html new file mode 100644 index 000000000..52442f46f --- /dev/null +++ b/doc/html/globals_vars_0x75.html @@ -0,0 +1,160 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- u -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x77.html b/doc/html/globals_vars_0x77.html new file mode 100644 index 000000000..bb1714981 --- /dev/null +++ b/doc/html/globals_vars_0x77.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ + + + + + diff --git a/doc/html/globals_vars_0x78.html b/doc/html/globals_vars_0x78.html new file mode 100644 index 000000000..abce699e7 --- /dev/null +++ b/doc/html/globals_vars_0x78.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- x -

+
+
+ + + + diff --git a/doc/html/globals_vars_0x7a.html b/doc/html/globals_vars_0x7a.html new file mode 100644 index 000000000..abfdb6f61 --- /dev/null +++ b/doc/html/globals_vars_0x7a.html @@ -0,0 +1,160 @@ + + + + + + +The Red Project: File Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+  + +

- z -

+
+
+ + + + diff --git a/doc/html/gprobe_8php.html b/doc/html/gprobe_8php.html new file mode 100644 index 000000000..bdb480bb3 --- /dev/null +++ b/doc/html/gprobe_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/gprobe.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
gprobe.php File Reference
+
+
+ + + + +

+Functions

 gprobe_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
gprobe_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/gprobe_8php.js b/doc/html/gprobe_8php.js new file mode 100644 index 000000000..1c0c6e44a --- /dev/null +++ b/doc/html/gprobe_8php.js @@ -0,0 +1,4 @@ +var gprobe_8php = +[ + [ "gprobe_run", "gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1", null ] +]; \ No newline at end of file diff --git a/doc/html/hcard_8php.html b/doc/html/hcard_8php.html new file mode 100644 index 000000000..07b4d861a --- /dev/null +++ b/doc/html/hcard_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/hcard.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
hcard.php File Reference
+
+
+ + + + + + +

+Functions

 hcard_init (&$a)
 
 hcard_aside (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
hcard_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
hcard_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/hcard_8php.js b/doc/html/hcard_8php.js new file mode 100644 index 000000000..fe7ffda18 --- /dev/null +++ b/doc/html/hcard_8php.js @@ -0,0 +1,5 @@ +var hcard_8php = +[ + [ "hcard_aside", "hcard_8php.html#a956c7cae2009652a37900306e5b7b73d", null ], + [ "hcard_init", "hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d", null ] +]; \ No newline at end of file diff --git a/doc/html/help_8php.html b/doc/html/help_8php.html new file mode 100644 index 000000000..f612cc723 --- /dev/null +++ b/doc/html/help_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/help.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
help.php File Reference
+
+
+ + + + +

+Functions

if(!function_exists('load_doc_file')) help_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
if (!function_exists('load_doc_file')) help_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/help_8php.js b/doc/html/help_8php.js new file mode 100644 index 000000000..1178a13f2 --- /dev/null +++ b/doc/html/help_8php.js @@ -0,0 +1,4 @@ +var help_8php = +[ + [ "help_content", "help_8php.html#af055e15f600ffa6fbca9386fdf715224", null ] +]; \ No newline at end of file diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html new file mode 100644 index 000000000..9fb20ea95 --- /dev/null +++ b/doc/html/hierarchy.html @@ -0,0 +1,144 @@ + + + + + + +The Red Project: Class Hierarchy + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Class Hierarchy
+
+
+
This inheritance list is sorted roughly, but not completely, alphabetically:
+
[detail level 12]
+ + + + + + + + + + + + + + + + + +
oCApp
oCBaseObject
|oCConversation
|\CItem
oCCache
oCdba
oCenotify
oCOAuthDataStore
|\CFKOAuthDataStore
oCOAuthServer
|\CFKOAuth1
oCPhoto
oCProtoDriver
|\CZotDriver
oCSmarty
|\CFriendicaSmarty
\CTemplate
+
+
+
+ + + + diff --git a/doc/html/hierarchy.js b/doc/html/hierarchy.js new file mode 100644 index 000000000..3c9bf291a --- /dev/null +++ b/doc/html/hierarchy.js @@ -0,0 +1,25 @@ +var hierarchy = +[ + [ "App", "classApp.html", null ], + [ "BaseObject", "classBaseObject.html", [ + [ "Conversation", "classConversation.html", null ], + [ "Item", "classItem.html", null ] + ] ], + [ "Cache", "classCache.html", null ], + [ "dba", "classdba.html", null ], + [ "enotify", "classenotify.html", null ], + [ "OAuthDataStore", null, [ + [ "FKOAuthDataStore", "classFKOAuthDataStore.html", null ] + ] ], + [ "OAuthServer", null, [ + [ "FKOAuth1", "classFKOAuth1.html", null ] + ] ], + [ "Photo", "classPhoto.html", null ], + [ "ProtoDriver", "classProtoDriver.html", [ + [ "ZotDriver", "classZotDriver.html", null ] + ] ], + [ "Smarty", null, [ + [ "FriendicaSmarty", "classFriendicaSmarty.html", null ] + ] ], + [ "Template", "classTemplate.html", null ] +]; \ No newline at end of file diff --git a/doc/html/home_8php.html b/doc/html/home_8php.html new file mode 100644 index 000000000..fbfdf2bf5 --- /dev/null +++ b/doc/html/home_8php.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: mod/home.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
home.php File Reference
+
+
+
+
+ + + + diff --git a/doc/html/hostxrd_8php.html b/doc/html/hostxrd_8php.html new file mode 100644 index 000000000..5b22242ae --- /dev/null +++ b/doc/html/hostxrd_8php.html @@ -0,0 +1,149 @@ + + + + + + +The Red Project: mod/hostxrd.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
hostxrd.php File Reference
+
+
+ + + + +

+Functions

 hostxrd_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
hostxrd_init ($a)
+
+ +

Referenced by _well_known_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/hostxrd_8php.js b/doc/html/hostxrd_8php.js new file mode 100644 index 000000000..442e3dfac --- /dev/null +++ b/doc/html/hostxrd_8php.js @@ -0,0 +1,4 @@ +var hostxrd_8php = +[ + [ "hostxrd_init", "hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92", null ] +]; \ No newline at end of file diff --git a/doc/html/html2bbcode_8php.html b/doc/html/html2bbcode_8php.html new file mode 100644 index 000000000..63b861072 --- /dev/null +++ b/doc/html/html2bbcode_8php.html @@ -0,0 +1,275 @@ + + + + + + +The Red Project: include/html2bbcode.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
html2bbcode.php File Reference
+
+
+ + + + + + + + + + +

+Functions

 node2bbcode (&$doc, $oldnode, $attributes, $startbb, $endbb)
 
 node2bbcodesub (&$doc, $oldnode, $attributes, $startbb, $endbb)
 
 deletenode (&$doc, $node)
 
 html2bbcode ($message)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
deletenode ($doc,
 $node 
)
+
+ +

Referenced by html2bbcode(), and parseurl_getsiteinfo().

+ +
+
+ +
+
+ + + + + + + + +
html2bbcode ( $message)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
node2bbcode ($doc,
 $oldnode,
 $attributes,
 $startbb,
 $endbb 
)
+
+ +

Referenced by html2bbcode(), and html2plain().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
node2bbcodesub ($doc,
 $oldnode,
 $attributes,
 $startbb,
 $endbb 
)
+
+ +

Referenced by node2bbcode().

+ +
+
+
+
+ + + + diff --git a/doc/html/html2bbcode_8php.js b/doc/html/html2bbcode_8php.js new file mode 100644 index 000000000..18f333bc5 --- /dev/null +++ b/doc/html/html2bbcode_8php.js @@ -0,0 +1,7 @@ +var html2bbcode_8php = +[ + [ "deletenode", "html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2", null ], + [ "html2bbcode", "html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837", null ], + [ "node2bbcode", "html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8", null ], + [ "node2bbcodesub", "html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7", null ] +]; \ No newline at end of file diff --git a/doc/html/html2plain_8php.html b/doc/html/html2plain_8php.html new file mode 100644 index 000000000..bcfde73b5 --- /dev/null +++ b/doc/html/html2plain_8php.html @@ -0,0 +1,251 @@ + + + + + + +The Red Project: include/html2plain.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
html2plain.php File Reference
+
+
+ + + + + + + + + + +

+Functions

 breaklines ($line, $level, $wraplength=75)
 
 quotelevel ($message, $wraplength=75)
 
 collecturls ($message)
 
 html2plain ($html, $wraplength=75, $compact=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
breaklines ( $line,
 $level,
 $wraplength = 75 
)
+
+ +

Referenced by quotelevel().

+ +
+
+ +
+
+ + + + + + + + +
collecturls ( $message)
+
+ +

Referenced by html2plain().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
html2plain ( $html,
 $wraplength = 75,
 $compact = false 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
quotelevel ( $message,
 $wraplength = 75 
)
+
+ +

Referenced by html2plain().

+ +
+
+
+
+ + + + diff --git a/doc/html/html2plain_8php.js b/doc/html/html2plain_8php.js new file mode 100644 index 000000000..377ba004e --- /dev/null +++ b/doc/html/html2plain_8php.js @@ -0,0 +1,7 @@ +var html2plain_8php = +[ + [ "breaklines", "html2plain_8php.html#a3214912e3d00cf0a948072daccf16740", null ], + [ "collecturls", "html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201", null ], + [ "html2plain", "html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04", null ], + [ "quotelevel", "html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0", null ] +]; \ No newline at end of file diff --git a/doc/html/identity_8php.html b/doc/html/identity_8php.html new file mode 100644 index 000000000..49f2fa487 --- /dev/null +++ b/doc/html/identity_8php.html @@ -0,0 +1,271 @@ + + + + + + +The Red Project: include/identity.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
identity.php File Reference
+
+
+ + + + + + + + + + + + + + +

+Functions

 identity_check_service_class ($account_id)
 
 validate_channelname ($name)
 
 create_identity ($arr)
 
 set_default_login_identity ($account_id, $channel_id, $force=true)
 
 identity_basic_export ($channel_id)
 
 identity_basic_import ($arr, $seize_primary=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
create_identity ( $arr)
+
+ +

Referenced by new_channel_post().

+ +
+
+ +
+
+ + + + + + + + +
identity_basic_export ( $channel_id)
+
+ +

Referenced by api_export_basic(), and uexport_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
identity_basic_import ( $arr,
 $seize_primary = false 
)
+
+ +
+
+ +
+
+ + + + + + + + +
identity_check_service_class ( $account_id)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
set_default_login_identity ( $account_id,
 $channel_id,
 $force = true 
)
+
+ +

Referenced by create_identity().

+ +
+
+ +
+
+ + + + + + + + +
validate_channelname ( $name)
+
+ +

Referenced by create_identity(), and settings_post().

+ +
+
+
+
+ + + + diff --git a/doc/html/identity_8php.js b/doc/html/identity_8php.js new file mode 100644 index 000000000..ca564b9a7 --- /dev/null +++ b/doc/html/identity_8php.js @@ -0,0 +1,9 @@ +var identity_8php = +[ + [ "create_identity", "identity_8php.html#a345f4c943d84de502ec6e72d2c813945", null ], + [ "identity_basic_export", "identity_8php.html#a3570a4eb77332b292d394c4132cb8f03", null ], + [ "identity_basic_import", "identity_8php.html#a77ee7d66eb0758f7e7882f70ad0f9485", null ], + [ "identity_check_service_class", "identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633", null ], + [ "set_default_login_identity", "identity_8php.html#a78151baf4407a8482d2681a91a9c486b", null ], + [ "validate_channelname", "identity_8php.html#af2802bc13a00a17b867bba7978ba8f58", null ] +]; \ No newline at end of file diff --git a/doc/html/import_8php.html b/doc/html/import_8php.html new file mode 100644 index 000000000..77a622884 --- /dev/null +++ b/doc/html/import_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/import.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
import.php File Reference
+
+
+ + + + + + +

+Functions

 import_post (&$a)
 
 import_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
import_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
import_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/import_8php.js b/doc/html/import_8php.js new file mode 100644 index 000000000..906bce463 --- /dev/null +++ b/doc/html/import_8php.js @@ -0,0 +1,5 @@ +var import_8php = +[ + [ "import_content", "import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184", null ], + [ "import_post", "import_8php.html#af17fef0410518f7eac205d0ea416eaa2", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2api_8php.html b/doc/html/include_2api_8php.html new file mode 100644 index 000000000..6c6254dc2 --- /dev/null +++ b/doc/html/include_2api_8php.html @@ -0,0 +1,1523 @@ + + + + + + +The Red Project: include/api.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
api.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 api_user ()
 
 api_date ($str)
 
 api_register_func ($path, $func, $auth=false)
 
 api_login (&$a)
 
 api_call (&$a)
 
 api_rss_extra (&$a, $arr, $user_info)
 
 api_get_user (&$a, $contact_id=Null)
 
 api_item_get_user (&$a, $item)
 
 api_apply_template ($templatename, $type, $data)
 
 api_account_verify_credentials (&$a, $type)
 
 api_account_logout (&$a, $type)
 
 requestdata ($k)
 
 api_export_basic (&$a, $type)
 
 api_statuses_mediap (&$a, $type)
 
 api_statuses_update (&$a, $type)
 
 api_status_show (&$a, $type)
 
 api_users_show (&$a, $type)
 
 api_statuses_home_timeline (&$a, $type)
 
 api_statuses_public_timeline (&$a, $type)
 
 api_statuses_show (&$a, $type)
 
 api_statuses_repeat (&$a, $type)
 
 api_statuses_destroy (&$a, $type)
 
 api_statuses_mentions (&$a, $type)
 
 api_statuses_user_timeline (&$a, $type)
 
 api_favorites (&$a, $type)
 
 api_format_as ($a, $ret, $user_info)
 
 api_format_messages ($item, $recipient, $sender)
 
 api_format_items ($r, $user_info)
 
 api_account_rate_limit_status (&$a, $type)
 
 api_help_test (&$a, $type)
 
 api_statuses_f (&$a, $type, $qtype)
 
 api_statuses_friends (&$a, $type)
 
 api_statuses_followers (&$a, $type)
 
 api_statusnet_config (&$a, $type)
 
 api_statusnet_version (&$a, $type)
 
 api_friendica_version (&$a, $type)
 
 api_ff_ids (&$a, $type, $qtype)
 
 api_friends_ids (&$a, $type)
 
 api_followers_ids (&$a, $type)
 
 api_direct_messages_new (&$a, $type)
 
 api_direct_messages_box (&$a, $type, $box)
 
 api_direct_messages_sentbox (&$a, $type)
 
 api_direct_messages_inbox (&$a, $type)
 
 api_direct_messages_all (&$a, $type)
 
 api_direct_messages_conversation (&$a, $type)
 
 api_oauth_request_token (&$a, $type)
 
 api_oauth_access_token (&$a, $type)
 
+ + + + + +

+Variables

 $API = array()
 
 $called_api = Null
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
api_account_logout ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_account_rate_limit_status ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_account_verify_credentials ($a,
 $type 
)
+
+

Returns an HTTP 200 OK response code and a representation of the requesting user if authentication was successful; returns a 401 status code and an error message if not. http://developer.twitter.com/doc/get/account/verify_credentials

+ +
+
+ + + +
+
+ + + + + + + + +
api_call ($a)
+
+ +

Referenced by api_content().

+ +
+
+ +
+
+ + + + + + + + +
api_date ( $str)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_direct_messages_all ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
api_direct_messages_box ($a,
 $type,
 $box 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_direct_messages_conversation ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_direct_messages_inbox ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_direct_messages_new ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_direct_messages_sentbox ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_export_basic ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_favorites ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
api_ff_ids ($a,
 $type,
 $qtype 
)
+
+ +

Referenced by api_followers_ids(), and api_friends_ids().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_followers_ids ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
api_format_as ( $a,
 $ret,
 $user_info 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_format_items ( $r,
 $user_info 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
api_format_messages ( $item,
 $recipient,
 $sender 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_friendica_version ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_friends_ids ($a,
 $type 
)
+
+ +
+
+ + + +
+
+ + + + + + + + + + + + + + + + + + +
api_help_test ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_item_get_user ($a,
 $item 
)
+
+ +

Referenced by api_format_items().

+ +
+
+ +
+
+ + + + + + + + +
api_login ($a)
+
+

Simple HTTP Login

+ +

Referenced by api_call(), and api_get_user().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_oauth_access_token ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_oauth_request_token ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
api_register_func ( $path,
 $func,
 $auth = false 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
api_rss_extra ($a,
 $arr,
 $user_info 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_status_show ($a,
 $type 
)
+
+ +

Referenced by api_statuses_mediap(), and api_statuses_update().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_destroy ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
api_statuses_f ($a,
 $type,
 $qtype 
)
+
+

https://dev.twitter.com/docs/api/1/get/statuses/friends This function is deprecated by Twitter returns: json, xml

+ +

Referenced by api_statuses_followers(), and api_statuses_friends().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_followers ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_friends ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_home_timeline ($a,
 $type 
)
+
+

http://developer.twitter.com/doc/get/statuses/home_timeline

+

TODO: Optional parameters TODO: Add reply info

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_mediap ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_mentions ($a,
 $type 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_public_timeline ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_repeat ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_show ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_update ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statuses_user_timeline ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statusnet_config ($a,
 $type 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
api_statusnet_version ($a,
 $type 
)
+
+ +
+
+ + + +
+
+ + + + + + + + + + + + + + + + + + +
api_users_show ($a,
 $type 
)
+
+

Returns extended information of a given user, specified by ID or screen name as per the required id parameter. The author's most recent status will be returned inline. http://developer.twitter.com/doc/get/users/show

+ +
+
+ +
+
+ + + + + + + + +
requestdata ( $k)
+
+

get data from $_REQUEST ( e.g. $_POST or $_GET )

+ +

Referenced by api_statuses_mediap(), and api_statuses_update().

+ +
+
+

Variable Documentation

+ +
+
+ + + + +
$API = array()
+
+

TWITTER API

+ +

Referenced by api_call(), and api_register_func().

+ +
+
+ +
+
+ + + + +
$called_api = Null
+
+ +

Referenced by api_call(), and api_get_user().

+ +
+
+
+
+ + + + diff --git a/doc/html/include_2api_8php.js b/doc/html/include_2api_8php.js new file mode 100644 index 000000000..6b46b3f41 --- /dev/null +++ b/doc/html/include_2api_8php.js @@ -0,0 +1,52 @@ +var include_2api_8php = +[ + [ "api_account_logout", "include_2api_8php.html#a2e94eab9d6c164bfef7a1b2ab87b339b", null ], + [ "api_account_rate_limit_status", "include_2api_8php.html#ae8f5863e18d69421005c71441c9d99a5", null ], + [ "api_account_verify_credentials", "include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad", null ], + [ "api_apply_template", "include_2api_8php.html#a5990101034e7abf6404feba3cd273629", null ], + [ "api_call", "include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5", null ], + [ "api_date", "include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25", null ], + [ "api_direct_messages_all", "include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705", null ], + [ "api_direct_messages_box", "include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5", null ], + [ "api_direct_messages_conversation", "include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3", null ], + [ "api_direct_messages_inbox", "include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2", null ], + [ "api_direct_messages_new", "include_2api_8php.html#a0991f72554f821255397d615e76f3203", null ], + [ "api_direct_messages_sentbox", "include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d", null ], + [ "api_export_basic", "include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53", null ], + [ "api_favorites", "include_2api_8php.html#a2c71b1226ef1283b5370bd1c200fee5f", null ], + [ "api_ff_ids", "include_2api_8php.html#a36344c80b8e9755da2f2dd3a0e28cce8", null ], + [ "api_followers_ids", "include_2api_8php.html#ab1ecb58954f722444bfe03233345cb1b", null ], + [ "api_format_as", "include_2api_8php.html#a18cab7c6391df5c421753463f5d2a879", null ], + [ "api_format_items", "include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea", null ], + [ "api_format_messages", "include_2api_8php.html#ae82608c317421f27446465aa6724733d", null ], + [ "api_friendica_version", "include_2api_8php.html#a53b0680b682ae6078f2e1ed18cfb3f74", null ], + [ "api_friends_ids", "include_2api_8php.html#acafd2899309a005fcb725289173dc7fe", null ], + [ "api_get_user", "include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa", null ], + [ "api_help_test", "include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23", null ], + [ "api_item_get_user", "include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1", null ], + [ "api_login", "include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73", null ], + [ "api_oauth_access_token", "include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0", null ], + [ "api_oauth_request_token", "include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3", null ], + [ "api_register_func", "include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a", null ], + [ "api_rss_extra", "include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f", null ], + [ "api_status_show", "include_2api_8php.html#a645397787618b5c548a31e8686e8cca4", null ], + [ "api_statuses_destroy", "include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4", null ], + [ "api_statuses_f", "include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410", null ], + [ "api_statuses_followers", "include_2api_8php.html#a6951c690d87775eb37e569c66011988e", null ], + [ "api_statuses_friends", "include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e", null ], + [ "api_statuses_home_timeline", "include_2api_8php.html#a528d8070ee74ea800102936ce73cf366", null ], + [ "api_statuses_mediap", "include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95", null ], + [ "api_statuses_mentions", "include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e", null ], + [ "api_statuses_public_timeline", "include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22", null ], + [ "api_statuses_repeat", "include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8", null ], + [ "api_statuses_show", "include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63", null ], + [ "api_statuses_update", "include_2api_8php.html#ad4d1634df6b35126552324683caaffa2", null ], + [ "api_statuses_user_timeline", "include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283", null ], + [ "api_statusnet_config", "include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08", null ], + [ "api_statusnet_version", "include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d", null ], + [ "api_user", "include_2api_8php.html#afb99daa6b731bf497b81f2128084852c", null ], + [ "api_users_show", "include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76", null ], + [ "requestdata", "include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e", null ], + [ "$API", "include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8", null ], + [ "$called_api", "include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2attach_8php.html b/doc/html/include_2attach_8php.html new file mode 100644 index 000000000..254918105 --- /dev/null +++ b/doc/html/include_2attach_8php.html @@ -0,0 +1,361 @@ + + + + + + +The Red Project: include/attach.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
attach.php File Reference
+
+
+ + + + + + + + + + + + + + +

+Functions

 z_mime_content_type ($filename)
 
 attach_count_files ($channel_id, $observer, $hash= '', $filename= '', $filetype= '')
 
 attach_list_files ($channel_id, $observer, $hash= '', $filename= '', $filetype= '', $orderby= 'created desc', $start=0, $entries=0)
 
 attach_by_hash ($hash, $rev=0)
 
 attach_by_hash_nodata ($hash, $rev=0)
 
 attach_store ($channel, $observer_hash, $options= '', $arr=null)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
attach_by_hash ( $hash,
 $rev = 0 
)
+
+ +

Referenced by attach_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
attach_by_hash_nodata ( $hash,
 $rev = 0 
)
+
+ +

Referenced by item_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
attach_count_files ( $channel_id,
 $observer,
 $hash = '',
 $filename = '',
 $filetype = '' 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
attach_list_files ( $channel_id,
 $observer,
 $hash = '',
 $filename = '',
 $filetype = '',
 $orderby = 'created desc',
 $start = 0,
 $entries = 0 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
attach_store ( $channel,
 $observer_hash,
 $options = '',
 $arr = null 
)
+
+
+ +
+
+ + + + + + + + +
z_mime_content_type ( $filename)
+
+ +

Referenced by attach_store().

+ +
+
+
+
+ + + + diff --git a/doc/html/include_2attach_8php.js b/doc/html/include_2attach_8php.js new file mode 100644 index 000000000..2ec78d98c --- /dev/null +++ b/doc/html/include_2attach_8php.js @@ -0,0 +1,9 @@ +var include_2attach_8php = +[ + [ "attach_by_hash", "include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36", null ], + [ "attach_by_hash_nodata", "include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932", null ], + [ "attach_count_files", "include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3", null ], + [ "attach_list_files", "include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d", null ], + [ "attach_store", "include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f", null ], + [ "z_mime_content_type", "include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2config_8php.html b/doc/html/include_2config_8php.html new file mode 100644 index 000000000..d6419b49c --- /dev/null +++ b/doc/html/include_2config_8php.html @@ -0,0 +1,399 @@ + + + + + + +The Red Project: include/config.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
config.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

 load_config ($family)
 
 get_config ($family, $key, $instore=false)
 
 set_config ($family, $key, $value)
 
 load_pconfig ($uid, $family)
 
 get_pconfig ($uid, $family, $key, $instore=false)
 
 del_config ($family, $key)
 
 set_pconfig ($uid, $family, $key, $value)
 
 del_pconfig ($uid, $family, $key)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
del_config ( $family,
 $key 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
del_pconfig ( $uid,
 $family,
 $key 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
get_config ( $family,
 $key,
 $instore = false 
)
+
+ +

Referenced by Photo\__construct(), admin_page_dbsync(), admin_page_logs(), admin_page_site(), admin_page_summary(), admin_page_themes(), allowed_email(), allowed_url(), api_statuses_mentions(), api_statusnet_config(), attach_store(), channel_content(), check_account_admin(), check_account_invite(), check_config(), cli_startup(), community_content(), create_account(), create_identity(), detect_language(), dfrn_deliver(), directory_content(), directory_run(), dirfind_content(), dirsearch_content(), display_content(), dob(), events_content(), expire_run(), feed_init(), fetch_url(), fetch_xrd_links(), findpeople_widget(), Item\get_comment_box(), group_content(), hcard_init(), hostxrd_init(), Photo\imageString(), import_post(), import_xchan(), invite_content(), invite_post(), login(), lostpass_content(), lostpass_post(), match_content(), nav(), navbar_complete(), FKOAuthDataStore\new_access_token(), new_channel_post(), new_keypair(), notification(), notifier_run(), oembed_bbcode2html(), parse_url_content(), photo_upload(), photos_content(), photos_init(), poco_init(), poller_run(), post_post(), post_url(), proc_run(), profile_content(), profile_create_sidebar(), profile_photo_post(), profiles_content(), profperm_content(), qsearch_init(), register_content(), register_post(), scale_external_images(), search_content(), send_reg_approval_email(), send_verification_email(), service_class_allows(), service_class_fetch(), set_config(), settings_post(), siteinfo_content(), upgrade_link(), user_allow(), validate_email(), viewconnections_aside(), viewconnections_content(), viewconnections_init(), z_fetch_url(), z_post_url(), zfinger_init(), zot_fetch(), zot_import(), zot_refresh(), and zotfeed_init().

+ +
+
+ + + +
+
+ + + + + + + + +
load_config ( $family)
+
+

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

+

There are a few places in the code (such as the admin panel) where boolean configurations need to be fixed as of 10/08/2011.

+ +

Referenced by api_statusnet_config(), check_config(), and cli_startup().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
load_pconfig ( $uid,
 $family 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
set_config ( $family,
 $key,
 $value 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
set_pconfig ( $uid,
 $family,
 $key,
 $value 
)
+
+
+
+
+ + + + diff --git a/doc/html/include_2config_8php.js b/doc/html/include_2config_8php.js new file mode 100644 index 000000000..7f74f1627 --- /dev/null +++ b/doc/html/include_2config_8php.js @@ -0,0 +1,11 @@ +var include_2config_8php = +[ + [ "del_config", "include_2config_8php.html#a549910227348003efc3c05c9105c42da", null ], + [ "del_pconfig", "include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941", null ], + [ "get_config", "include_2config_8php.html#a5d19130818ea4c6b8726ab62cd989c15", null ], + [ "get_pconfig", "include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad", null ], + [ "load_config", "include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1", null ], + [ "load_pconfig", "include_2config_8php.html#ab012f852866a0aff9b5180daffa454f5", null ], + [ "set_config", "include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a", null ], + [ "set_pconfig", "include_2config_8php.html#a61591371cb18764138655d67dc817ab2", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2directory_8php.html b/doc/html/include_2directory_8php.html new file mode 100644 index 000000000..c1f2d532a --- /dev/null +++ b/doc/html/include_2directory_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/directory.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
directory.php File Reference
+
+
+ + + + +

+Functions

 directory_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
directory_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/include_2directory_8php.js b/doc/html/include_2directory_8php.js new file mode 100644 index 000000000..d5acd0735 --- /dev/null +++ b/doc/html/include_2directory_8php.js @@ -0,0 +1,4 @@ +var include_2directory_8php = +[ + [ "directory_run", "include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2follow_8php.html b/doc/html/include_2follow_8php.html new file mode 100644 index 000000000..159e39d99 --- /dev/null +++ b/doc/html/include_2follow_8php.html @@ -0,0 +1,171 @@ + + + + + + +The Red Project: include/follow.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
follow.php File Reference
+
+
+ + + + +

+Functions

 new_contact ($uid, $url, $channel, $interactive=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
new_contact ( $uid,
 $url,
 $channel,
 $interactive = false 
)
+
+ +

Referenced by follow_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/include_2follow_8php.js b/doc/html/include_2follow_8php.js new file mode 100644 index 000000000..a44d66d5b --- /dev/null +++ b/doc/html/include_2follow_8php.js @@ -0,0 +1,4 @@ +var include_2follow_8php = +[ + [ "new_contact", "include_2follow_8php.html#a6553a7650fae55f95660510d90983144", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2group_8php.html b/doc/html/include_2group_8php.html new file mode 100644 index 000000000..dabb08a26 --- /dev/null +++ b/doc/html/include_2group_8php.html @@ -0,0 +1,461 @@ + + + + + + +The Red Project: include/group.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
group.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 group_add ($uid, $name)
 
 group_rmv ($uid, $name)
 
 group_byname ($uid, $name)
 
 group_rmv_member ($uid, $name, $member)
 
 group_add_member ($uid, $name, $member, $gid=0)
 
 group_get_members ($gid)
 
 mini_group_select ($uid, $gid=0)
 
 group_side ($every="contacts", $each="group", $edit=false, $group_id=0, $cid= '')
 
 expand_groups ($a)
 
 member_of ($c)
 
 groups_containing ($uid, $c)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
expand_groups ( $a)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
group_add ( $uid,
 $name 
)
+
+ +

Referenced by create_identity(), and group_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
group_add_member ( $uid,
 $name,
 $member,
 $gid = 0 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
group_byname ( $uid,
 $name 
)
+
+
+ +
+
+ + + + + + + + +
group_get_members ( $gid)
+
+ +

Referenced by contactgroup_content(), and group_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
group_rmv ( $uid,
 $name 
)
+
+ +

Referenced by group_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
group_rmv_member ( $uid,
 $name,
 $member 
)
+
+ +

Referenced by contactgroup_content(), and group_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
group_side ( $every = "contacts",
 $each = "group",
 $edit = false,
 $group_id = 0,
 $cid = '' 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
groups_containing ( $uid,
 $c 
)
+
+ +

Referenced by group_side().

+ +
+
+ +
+
+ + + + + + + + +
member_of ( $c)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
mini_group_select ( $uid,
 $gid = 0 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/include_2group_8php.js b/doc/html/include_2group_8php.js new file mode 100644 index 000000000..e584a75b9 --- /dev/null +++ b/doc/html/include_2group_8php.js @@ -0,0 +1,14 @@ +var include_2group_8php = +[ + [ "expand_groups", "include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345", null ], + [ "group_add", "include_2group_8php.html#a0a515d42ec78aa0066aac4c278ead5b0", null ], + [ "group_add_member", "include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b", null ], + [ "group_byname", "include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb", null ], + [ "group_get_members", "include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09", null ], + [ "group_rmv", "include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5", null ], + [ "group_rmv_member", "include_2group_8php.html#a540e3ef36f47d47532646be4241f6518", null ], + [ "group_side", "include_2group_8php.html#a1042d74055bafe54a6a30103d87a7f17", null ], + [ "groups_containing", "include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f", null ], + [ "member_of", "include_2group_8php.html#a048f6892bfd28852de1b76470df411de", null ], + [ "mini_group_select", "include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2message_8php.html b/doc/html/include_2message_8php.html new file mode 100644 index 000000000..37c1f827b --- /dev/null +++ b/doc/html/include_2message_8php.html @@ -0,0 +1,326 @@ + + + + + + +The Red Project: include/message.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
message.php File Reference
+
+
+ + + + + + + + + + + + +

+Functions

 send_message ($uid=0, $recipient='', $body='', $subject='', $replyto='')
 
 private_messages_list ($uid, $mailbox= '', $start=0, $numitems=0)
 
 private_messages_fetch_message ($channel_id, $messageitem_id, $updateseen=false)
 
 private_messages_drop ($channel_id, $messageitem_id, $drop_conversation=false)
 
 private_messages_fetch_conversation ($channel_id, $messageitem_id, $updateseen=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
private_messages_drop ( $channel_id,
 $messageitem_id,
 $drop_conversation = false 
)
+
+ +

Referenced by message_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
private_messages_fetch_conversation ( $channel_id,
 $messageitem_id,
 $updateseen = false 
)
+
+ +

Referenced by message_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
private_messages_fetch_message ( $channel_id,
 $messageitem_id,
 $updateseen = false 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
private_messages_list ( $uid,
 $mailbox = '',
 $start = 0,
 $numitems = 0 
)
+
+ +

Referenced by message_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
send_message ( $uid = 0,
 $recipient = '',
 $body = '',
 $subject = '',
 $replyto = '' 
)
+
+

When a photo was uploaded into the message using the (profile wall) ajax uploader, The permissions are initially set to disallow anybody but the owner from seeing it. This is because the permissions may not yet have been set for the post. If it's private, the photo permissions should be set appropriately. But we didn't know the final permissions on the post until now. So now we'll look for links of uploaded messages that are in the post and set them to the same permissions as the post itself.

+ +

Referenced by api_direct_messages_new(), and message_post().

+ +
+
+
+
+ + + + diff --git a/doc/html/include_2message_8php.js b/doc/html/include_2message_8php.js new file mode 100644 index 000000000..ac91159ba --- /dev/null +++ b/doc/html/include_2message_8php.js @@ -0,0 +1,8 @@ +var include_2message_8php = +[ + [ "private_messages_drop", "include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1", null ], + [ "private_messages_fetch_conversation", "include_2message_8php.html#a5f8de9847e203329e317ac38dc646898", null ], + [ "private_messages_fetch_message", "include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091", null ], + [ "private_messages_list", "include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e", null ], + [ "send_message", "include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2network_8php.html b/doc/html/include_2network_8php.html new file mode 100644 index 000000000..53778c2aa --- /dev/null +++ b/doc/html/include_2network_8php.html @@ -0,0 +1,894 @@ + + + + + + +The Red Project: include/network.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
network.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 get_capath ()
 
 fetch_url ($url, $binary=false, &$redirects=0, $timeout=0, $accept_content=Null)
 
 post_url ($url, $params, $headers=null, &$redirects=0, $timeout=0)
 
 z_fetch_url ($url, $binary=false, $redirects=0, $opts=array())
 
 z_post_url ($url, $params, $headers=null, $redirects=0, $timeout=0)
 
 json_return_and_die ($x)
 
 xml_status ($st, $message= '')
 
 http_status_exit ($val)
 
 convert_xml_element_to_array ($xml_element, &$recursion_depth=0)
 
 webfinger_dfrn ($s, &$hcard)
 
 webfinger ($s, $debug=false)
 
 lrdd ($uri, $debug=false)
 
 fetch_lrdd_template ($host)
 
 fetch_xrd_links ($url)
 
 validate_url (&$url)
 
 validate_email ($addr)
 
 allowed_url ($url)
 
 allowed_email ($email)
 
 avatar_img ($email)
 
 parse_xml_string ($s, $strict=true)
 
 add_fcontact ($arr, $update=false)
 
 scale_external_images ($s, $include_link=true, $scale_replace=false)
 
 fix_contact_ssl_policy (&$contact, $new_policy)
 
 xml2array ($contents, $namespaces=true, $get_attributes=1, $priority= 'attribute')
 
 email_header_encode ($in_str, $charset)
 
 email_send ($addr, $subject, $headers, $item)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
add_fcontact ( $arr,
 $update = false 
)
+
+ +
+
+ +
+
+ + + + + + + + +
allowed_email ( $email)
+
+ +

Referenced by check_account_email().

+ +
+
+ +
+
+ + + + + + + + +
allowed_url ( $url)
+
+ +

Referenced by new_contact().

+ +
+
+ +
+
+ + + + + + + + +
avatar_img ( $email)
+
+ +

Referenced by probe_url().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
convert_xml_element_to_array ( $xml_element,
$recursion_depth = 0 
)
+
+ +

Referenced by lrdd().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
email_header_encode ( $in_str,
 $charset 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
email_send ( $addr,
 $subject,
 $headers,
 $item 
)
+
+ +
+
+ +
+
+ + + + + + + + +
fetch_lrdd_template ( $host)
+
+ +

Referenced by webfinger().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
fetch_url ( $url,
 $binary = false,
$redirects = 0,
 $timeout = 0,
 $accept_content = Null 
)
+
+

fetch_url is deprecated and being replaced by the more capable z_fetch_url please use that function instead. Once all occurrences of fetch_url are removed from the codebase we will remove this function and perhaps rename z_fetch_url back to fetch_url

+ +

Referenced by consume_feed(), dfrn_deliver(), dirfind_content(), fetch_xrd_links(), local_delivery(), lrdd(), oembed_fetch_url(), oexchange_content(), post_url(), probe_url(), and scale_external_images().

+ +
+
+ +
+
+ + + + + + + + +
fetch_xrd_links ( $url)
+
+ +

Referenced by fetch_lrdd_template(), lrdd(), and webfinger().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
fix_contact_ssl_policy ($contact,
 $new_policy 
)
+
+ +
+
+ +
+
+ + + + + + + +
get_capath ()
+
+ +

Referenced by fetch_url(), post_url(), z_fetch_url(), and z_post_url().

+ +
+
+ +
+
+ + + + + + + + +
http_status_exit ( $val)
+
+ +

Referenced by _well_known_init(), and poco_init().

+ +
+
+ +
+
+ + + + + + + + +
json_return_and_die ( $x)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
lrdd ( $uri,
 $debug = false 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
parse_xml_string ( $s,
 $strict = true 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
post_url ( $url,
 $params,
 $headers = null,
$redirects = 0,
 $timeout = 0 
)
+
+ +

Referenced by dfrn_deliver(), and match_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
scale_external_images ( $s,
 $include_link = true,
 $scale_replace = false 
)
+
+ +

Referenced by diaspora2bb(), and item_post().

+ +
+
+ +
+
+ + + + + + + + +
validate_email ( $addr)
+
+ +

Referenced by check_account_email(), probe_url(), and zid_init().

+ +
+
+ +
+
+ + + + + + + + +
validate_url ($url)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
webfinger ( $s,
 $debug = false 
)
+
+ +

Referenced by lrdd(), webfinger_content(), and webfinger_dfrn().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
webfinger_dfrn ( $s,
$hcard 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
xml2array ( $contents,
 $namespaces = true,
 $get_attributes = 1,
 $priority = 'attribute' 
)
+
+

xml2array() will convert the given XML text to an array in the XML structure. Link: http://www.bin-co.com/php/scripts/xml2array/ Portions significantly re-written by mike@.nosp@m.macg.nosp@m.irvin.nosp@m..com for Friendica (namespaces, lowercase tags, get_attribute default changed, more...) Arguments : $contents - The XML text $namespaces - true or false include namespace information in the returned array as array elements. $get_attributes - 1 or 0. If this is 1 the function will get the attributes as well as the tag values - this results in a different array structure in the return value. $priority - Can be 'tag' or 'attribute'. This will change the way the resulting array sturcture. For 'tag', the tags are given more importance. Return: The parsed XML in an array form. Use print_r() to see the resulting array structure. Examples: $array = xml2array(file_get_contents('feed.xml')); $array = xml2array(file_get_contents('feed.xml', true, 1, 'attribute'));

+ +

Referenced by fetch_xrd_links().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
xml_status ( $st,
 $message = '' 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
z_fetch_url ( $url,
 $binary = false,
 $redirects = 0,
 $opts = array() 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
z_post_url ( $url,
 $params,
 $headers = null,
 $redirects = 0,
 $timeout = 0 
)
+
+ +

Referenced by zot_finger(), zot_notify(), zot_refresh(), and zot_zot().

+ +
+
+
+
+ + + + diff --git a/doc/html/include_2network_8php.js b/doc/html/include_2network_8php.js new file mode 100644 index 000000000..9f1685de4 --- /dev/null +++ b/doc/html/include_2network_8php.js @@ -0,0 +1,29 @@ +var include_2network_8php = +[ + [ "add_fcontact", "include_2network_8php.html#a0bdc4b0bfc54797c249dc4eca25aeda4", null ], + [ "allowed_email", "include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694", null ], + [ "allowed_url", "include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7", null ], + [ "avatar_img", "include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7", null ], + [ "convert_xml_element_to_array", "include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246", null ], + [ "email_header_encode", "include_2network_8php.html#a540420ff3675a72cb781ef9a7e8c2cd9", null ], + [ "email_send", "include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0", null ], + [ "fetch_lrdd_template", "include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0", null ], + [ "fetch_url", "include_2network_8php.html#a37ddeb88a3fd1dee9e8339723f9edf9a", null ], + [ "fetch_xrd_links", "include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d", null ], + [ "fix_contact_ssl_policy", "include_2network_8php.html#a2729d012410e470c527a62a3f777ded8", null ], + [ "get_capath", "include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7", null ], + [ "http_status_exit", "include_2network_8php.html#abed1d466435a12b6a4dd7aa4a05e5ba9", null ], + [ "json_return_and_die", "include_2network_8php.html#a4c5d50079e089168d9248427018fffd4", null ], + [ "lrdd", "include_2network_8php.html#adbc7fe45cc7fd9cd78f6b2f425ee9041", null ], + [ "parse_xml_string", "include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6", null ], + [ "post_url", "include_2network_8php.html#aa44d9e33a579d930e9e79c4ebb3d6b5e", null ], + [ "scale_external_images", "include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f", null ], + [ "validate_email", "include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02", null ], + [ "validate_url", "include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2", null ], + [ "webfinger", "include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5", null ], + [ "webfinger_dfrn", "include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335", null ], + [ "xml2array", "include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff", null ], + [ "xml_status", "include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6", null ], + [ "z_fetch_url", "include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37", null ], + [ "z_post_url", "include_2network_8php.html#a6259181fec4d36722d1e91ac6210e876", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2notify_8php.html b/doc/html/include_2notify_8php.html new file mode 100644 index 000000000..d2326ce63 --- /dev/null +++ b/doc/html/include_2notify_8php.html @@ -0,0 +1,149 @@ + + + + + + +The Red Project: include/notify.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
notify.php File Reference
+
+
+ + + + +

+Functions

 format_notification ($item)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
format_notification ( $item)
+
+ +

Referenced by ping_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/include_2notify_8php.js b/doc/html/include_2notify_8php.js new file mode 100644 index 000000000..7e82eaf72 --- /dev/null +++ b/doc/html/include_2notify_8php.js @@ -0,0 +1,4 @@ +var include_2notify_8php = +[ + [ "format_notification", "include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2oembed_8php.html b/doc/html/include_2oembed_8php.html new file mode 100644 index 000000000..00351c9eb --- /dev/null +++ b/doc/html/include_2oembed_8php.html @@ -0,0 +1,316 @@ + + + + + + +The Red Project: include/oembed.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
oembed.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

 oembed_replacecb ($matches)
 
 oembed_fetch_url ($embedurl)
 
 oembed_format_object ($j)
 
 oembed_iframe ($src, $width, $height)
 
 oembed_bbcode2html ($text)
 
 oe_build_xpath ($attr, $value)
 
 oe_get_inner_html ($node)
 
 oembed_html2bbcode ($text)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
oe_build_xpath ( $attr,
 $value 
)
+
+ +

Referenced by oembed_fetch_url(), and oembed_html2bbcode().

+ +
+
+ +
+
+ + + + + + + + +
oe_get_inner_html ( $node)
+
+ +

Referenced by oembed_html2bbcode().

+ +
+
+ +
+
+ + + + + + + + +
oembed_bbcode2html ( $text)
+
+ +

Referenced by bbcode().

+ +
+
+ +
+
+ + + + + + + + +
oembed_fetch_url ( $embedurl)
+
+ +

Referenced by oembed_init(), oembed_replacecb(), and tryoembed().

+ +
+
+ +
+
+ + + + + + + + +
oembed_format_object ( $j)
+
+ +

Referenced by oembed_replacecb(), and tryoembed().

+ +
+
+ +
+
+ + + + + + + + +
oembed_html2bbcode ( $text)
+
+

Find .... and replace it with [embed]url[/embed]

+ +

Referenced by get_atom_elements(), and oembed_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
oembed_iframe ( $src,
 $width,
 $height 
)
+
+ +

Referenced by oembed_format_object().

+ +
+
+ +
+
+ + + + + + + + +
oembed_replacecb ( $matches)
+
+ +

Referenced by oembed_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/include_2oembed_8php.js b/doc/html/include_2oembed_8php.js new file mode 100644 index 000000000..5f1e16330 --- /dev/null +++ b/doc/html/include_2oembed_8php.js @@ -0,0 +1,11 @@ +var include_2oembed_8php = +[ + [ "oe_build_xpath", "include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319", null ], + [ "oe_get_inner_html", "include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487", null ], + [ "oembed_bbcode2html", "include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2", null ], + [ "oembed_fetch_url", "include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2", null ], + [ "oembed_format_object", "include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3", null ], + [ "oembed_html2bbcode", "include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172", null ], + [ "oembed_iframe", "include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a", null ], + [ "oembed_replacecb", "include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0", null ] +]; \ No newline at end of file diff --git a/doc/html/include_2photos_8php.html b/doc/html/include_2photos_8php.html new file mode 100644 index 000000000..2778c9507 --- /dev/null +++ b/doc/html/include_2photos_8php.html @@ -0,0 +1,377 @@ + + + + + + +The Red Project: include/photos.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
photos.php File Reference
+
+
+ + + + + + + + + + + + + + + + +

+Functions

 photo_upload ($channel, $observer, $args)
 
 photos_albums_list ($channel, $observer)
 
 photos_album_widget ($channelx, $observer, $albums=null)
 
 photos_album_exists ($channel_id, $album)
 
 photos_album_rename ($channel_id, $oldname, $newname)
 
 photos_album_get_db_idstr ($channel_id, $album, $remote_xchan= '')
 
 photos_create_item ($channel, $creator_hash, $photo, $visible=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
photo_upload ( $channel,
 $observer,
 $args 
)
+
+

Determine the album to use

+

We create a wall item for every photo, but we don't want to overwhelm the data stream with a hundred newly uploaded photos. So we will make the first photo uploaded to this album in the last several hours visible by default, the rest will become visible over time when and if they acquire comments, likes, dislikes, and/or tags

+ +

Referenced by photos_post(), and wall_upload_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
photos_album_exists ( $channel_id,
 $album 
)
+
+ +

Referenced by photos_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
photos_album_get_db_idstr ( $channel_id,
 $album,
 $remote_xchan = '' 
)
+
+ +

Referenced by photos_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
photos_album_rename ( $channel_id,
 $oldname,
 $newname 
)
+
+ +

Referenced by photos_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
photos_album_widget ( $channelx,
 $observer,
 $albums = null 
)
+
+ +

Referenced by photos_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
photos_albums_list ( $channel,
 $observer 
)
+
+ +

Referenced by photos_album_widget(), and photos_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
photos_create_item ( $channel,
 $creator_hash,
 $photo,
 $visible = false 
)
+
+ +

Referenced by photos_post().

+ +
+
+
+
+ + + + diff --git a/doc/html/include_2photos_8php.js b/doc/html/include_2photos_8php.js new file mode 100644 index 000000000..06b22ceb6 --- /dev/null +++ b/doc/html/include_2photos_8php.js @@ -0,0 +1,10 @@ +var include_2photos_8php = +[ + [ "photo_upload", "include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109", null ], + [ "photos_album_exists", "include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35", null ], + [ "photos_album_get_db_idstr", "include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe", null ], + [ "photos_album_rename", "include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab", null ], + [ "photos_album_widget", "include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979", null ], + [ "photos_albums_list", "include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9", null ], + [ "photos_create_item", "include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274", null ] +]; \ No newline at end of file diff --git a/doc/html/index.html b/doc/html/index.html new file mode 100644 index 000000000..613ca9f6a --- /dev/null +++ b/doc/html/index.html @@ -0,0 +1,115 @@ + + + + + + +The Red Project: Main Page + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
The Red Project Documentation
+
+
+
+
+ + + + diff --git a/doc/html/intro_8php.html b/doc/html/intro_8php.html new file mode 100644 index 000000000..80f08575b --- /dev/null +++ b/doc/html/intro_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/intro.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
intro.php File Reference
+
+
+ + + + + + + + +

+Functions

 intro_post (&$a)
 
 intro_aside (&$a)
 
 intro_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
intro_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
intro_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
intro_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/intro_8php.js b/doc/html/intro_8php.js new file mode 100644 index 000000000..f93a2dcdc --- /dev/null +++ b/doc/html/intro_8php.js @@ -0,0 +1,6 @@ +var intro_8php = +[ + [ "intro_aside", "intro_8php.html#abc3abf25da64f98f215126eb08c7936b", null ], + [ "intro_content", "intro_8php.html#a3e2a523697633ddb4517b9266a515f5b", null ], + [ "intro_post", "intro_8php.html#af3681062183ccbdf065ae2647b07d6f1", null ] +]; \ No newline at end of file diff --git a/doc/html/invite_8php.html b/doc/html/invite_8php.html new file mode 100644 index 000000000..42d9ef379 --- /dev/null +++ b/doc/html/invite_8php.html @@ -0,0 +1,167 @@ + + + + + + +The Red Project: mod/invite.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
invite.php File Reference
+
+
+ + + + + + +

+Functions

 invite_post (&$a)
 
 invite_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
invite_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
invite_post ($a)
+
+

module: invite.php

+

send email invitations to join social network

+ +
+
+
+
+ + + + diff --git a/doc/html/invite_8php.js b/doc/html/invite_8php.js new file mode 100644 index 000000000..35604353d --- /dev/null +++ b/doc/html/invite_8php.js @@ -0,0 +1,5 @@ +var invite_8php = +[ + [ "invite_content", "invite_8php.html#a244385b28cfd021d308715f01158bfd9", null ], + [ "invite_post", "invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5", null ] +]; \ No newline at end of file diff --git a/doc/html/iquery_8php.html b/doc/html/iquery_8php.html new file mode 100644 index 000000000..210a6c3e6 --- /dev/null +++ b/doc/html/iquery_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/iquery.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
iquery.php File Reference
+
+
+ + + + +

+Functions

 network_query ($a, $arr)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
network_query ( $a,
 $arr 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/iquery_8php.js b/doc/html/iquery_8php.js new file mode 100644 index 000000000..d56bfffa6 --- /dev/null +++ b/doc/html/iquery_8php.js @@ -0,0 +1,4 @@ +var iquery_8php = +[ + [ "network_query", "iquery_8php.html#aa41c07bf856eb8b386430cc53d80d4ac", null ] +]; \ No newline at end of file diff --git a/doc/html/item_8php.html b/doc/html/item_8php.html new file mode 100644 index 000000000..bbc87f0bf --- /dev/null +++ b/doc/html/item_8php.html @@ -0,0 +1,358 @@ + + + + + + +The Red Project: mod/item.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
item.php File Reference
+
+
+ + + + + + + + + + + + +

+Functions

 item_post (&$a)
 
 item_content (&$a)
 
 handle_tag ($a, &$body, &$inform, &$str_tags, $profile_uid, $tag)
 
 fix_attached_photo_permissions ($uid, $xchan_hash, $body, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny)
 
 fix_attached_file_permissions ($channel, $observer_hash, $body, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
fix_attached_file_permissions ( $channel,
 $observer_hash,
 $body,
 $str_contact_allow,
 $str_group_allow,
 $str_contact_deny,
 $str_group_deny 
)
+
+ +

Referenced by item_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
fix_attached_photo_permissions ( $uid,
 $xchan_hash,
 $body,
 $str_contact_allow,
 $str_group_allow,
 $str_contact_deny,
 $str_group_deny 
)
+
+ +

Referenced by item_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
handle_tag ( $a,
$body,
$inform,
$str_tags,
 $profile_uid,
 $tag 
)
+
+

This function removes the tag $tag from the text $body and replaces it with the appropiate link.

+
Parameters
+ + + + + + +
unknown_type$bodythe text to replace the tag in
unknown_type$informa comma-seperated string containing everybody to inform
unknown_type$str_tagsstring to add the tag to
unknown_type$profile_uid
unknown_type$tagthe tag to replace
+
+
+
Returns
boolean true if replaced, false if not replaced
+ +

Referenced by item_post().

+ +
+
+ +
+
+ + + + + + + + +
item_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
item_post ($a)
+
+

This is the POST destination for most all locally posted text stuff. This function handles status, wall-to-wall status, local comments, and remote coments that are posted on this site (as opposed to being delivered in a feed). Also processed here are posts and comments coming through the statusnet/twitter API. All of these become an "item" which is our basic unit of information. Posts that originate externally or do not fall into the above posting categories go through item_store() instead of this function.

+

Is this a reply to something?

+

When a photo was uploaded into the message using the (profile wall) ajax uploader, The permissions are initially set to disallow anybody but the owner from seeing it. This is because the permissions may not yet have been set for the post. If it's private, the photo permissions should be set appropriately. But we didn't know the final permissions on the post until now. So now we'll look for links of uploaded messages that are in the post and set them to the same permissions as the post itself.

+

Fold multi-line [code] sequences

+

Look for any tags and linkify them

+ +

Referenced by api_statuses_mediap(), api_statuses_repeat(), api_statuses_update(), and oexchange_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/item_8php.js b/doc/html/item_8php.js new file mode 100644 index 000000000..39c3eba5f --- /dev/null +++ b/doc/html/item_8php.js @@ -0,0 +1,8 @@ +var item_8php = +[ + [ "fix_attached_file_permissions", "item_8php.html#a3daae7944f737bd30412a0d042207c0f", null ], + [ "fix_attached_photo_permissions", "item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10", null ], + [ "handle_tag", "item_8php.html#abd0e603a6696051af16476eb968d52e7", null ], + [ "item_content", "item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221", null ], + [ "item_post", "item_8php.html#a693cd09805755ab85bbb5ecae69a48c3", null ] +]; \ No newline at end of file diff --git a/doc/html/items_8php.html b/doc/html/items_8php.html new file mode 100644 index 000000000..cafb0fc1c --- /dev/null +++ b/doc/html/items_8php.html @@ -0,0 +1,1606 @@ + + + + + + +The Red Project: include/items.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
items.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 collect_recipients ($item, &$private)
 
 get_public_feed ($channel, $params)
 
 get_feed_for (&$a, $dfrn_id, $owner_nick, $last_update, $direction=0)
 
 construct_verb ($item)
 
 construct_activity_object ($item)
 
 construct_activity_target ($item)
 
if(!function_exists('limit_body_size')) title_is_body ($title, $body)
 
 get_item_elements ($x)
 
 import_author_xchan ($x)
 
 encode_item ($item)
 
 map_scope ($scope)
 
 encode_item_xchan ($xchan)
 
 encode_item_terms ($terms)
 
 termtype ($t)
 
 decode_tags ($t)
 
 activity_sanitise ($arr)
 
 array_sanitise ($arr)
 
 encode_item_flags ($item)
 
 encode_mail ($item)
 
 get_mail_elements ($x)
 
 get_profile_elements ($x)
 
 get_atom_elements ($feed, $item)
 
 encode_rel_links ($links)
 
 item_store ($arr, $force_parent=false)
 
 send_status_notifications ($post_id, $item)
 
 get_item_contact ($item, $contacts)
 
 tag_deliver ($uid, $item_id)
 
 tgroup_check ($uid, $item)
 
 mail_store ($arr)
 
 dfrn_deliver ($owner, $contact, $atom, $dissolve=false)
 
 consume_feed ($xml, $importer, &$contact, &$hub, $datedir=0, $pass=0)
 
 local_delivery ($importer, $data)
 
 new_follower ($importer, $contact, $datarray, $item, $sharing=false)
 
 lose_follower ($importer, $contact, $datarray, $item)
 
 lose_sharer ($importer, $contact, $datarray, $item)
 
 atom_author ($tag, $name, $uri, $h, $w, $photo)
 
 atom_entry ($item, $type, $author, $owner, $comment=false, $cid=0)
 
 fix_private_photos ($s, $uid, $item=null, $cid=0)
 
 has_permissions ($obj)
 
 compare_permissions ($obj1, $obj2)
 
 enumerate_permissions ($obj)
 
 item_getfeedtags ($item)
 
 item_getfeedattach ($item)
 
 item_expire ($uid, $days)
 
 drop_items ($items)
 
 drop_item ($id, $interactive=true)
 
 delete_item_lowlevel ($item)
 
 first_post_date ($uid, $wall=false)
 
 posted_dates ($uid, $wall)
 
 posted_date_widget ($url, $uid, $wall)
 
 fetch_post_tags ($items, $link=false)
 
 zot_feed ($uid, $observer_xchan, $mindate)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
activity_sanitise ( $arr)
+
+ +

Referenced by get_item_elements(), and item_store().

+ +
+
+ +
+
+ + + + + + + + +
array_sanitise ( $arr)
+
+ +

Referenced by get_profile_elements().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
atom_author ( $tag,
 $name,
 $uri,
 $h,
 $w,
 $photo 
)
+
+ +

Referenced by atom_entry().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
atom_entry ( $item,
 $type,
 $author,
 $owner,
 $comment = false,
 $cid = 0 
)
+
+ +

Referenced by get_feed_for().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
collect_recipients ( $item,
$private 
)
+
+ +

Referenced by notifier_run().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
compare_permissions ( $obj1,
 $obj2 
)
+
+ +

Referenced by fix_private_photos().

+ +
+
+ +
+
+ + + + + + + + +
construct_activity_object ( $item)
+
+ +

Referenced by atom_entry().

+ +
+
+ +
+
+ + + + + + + + +
construct_activity_target ( $item)
+
+ +

Referenced by atom_entry().

+ +
+
+ +
+
+ + + + + + + + +
construct_verb ( $item)
+
+ +

Referenced by atom_entry().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
consume_feed ( $xml,
 $importer,
$contact,
$hub,
 $datedir = 0,
 $pass = 0 
)
+
+

consume_feed - process atom feed and update anything/everything we might need to update

+

$xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.

+

$importer = the contact_record (joined to user_record) of the local user who owns this relationship. It is this person's stuff that is going to be updated. $contact = the person who is sending us stuff. If not set, we MAY be processing a "follow" activity from an external network and MAY create an appropriate contact record. Otherwise, we MUST have a contact record. $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or might not) try and subscribe to it. $datedir sorts in reverse order $pass - by default ($pass = 0) we cannot guarantee that a parent item has been imported prior to its children being seen in the stream unless we are certain of how the feed is arranged/ordered. With $pass = 1, we only pull parent items out of the stream. With $pass = 2, we only pull children (comments/likes).

+

So running this twice, first with pass 1 and then with pass 2 will do the right thing regardless of feed ordering. This won't be adequate in a fully-threaded model where comments can have sub-threads. That would require some massive sorting to get all the feed items into a mostly linear ordering, and might still require recursion.

+

Add new birthday event for this person

+

$bdtext is just a readable placeholder in case the event is shared with others. We will replace it during presentation to our $importer to contain a sparkle link and perhaps a photo.

+ +
+
+ +
+
+ + + + + + + + +
decode_tags ( $t)
+
+ +

Referenced by get_item_elements().

+ +
+
+ +
+
+ + + + + + + + +
delete_item_lowlevel ( $item)
+
+ +

Referenced by drop_item().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
dfrn_deliver ( $owner,
 $contact,
 $atom,
 $dissolve = false 
)
+
+ +

Referenced by terminate_friendship().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
drop_item ( $id,
 $interactive = true 
)
+
+
+ +
+
+ + + + + + + + +
drop_items ( $items)
+
+ +

Referenced by item_post().

+ +
+
+ +
+
+ + + + + + + + +
encode_item ( $item)
+
+ +

Referenced by notifier_run(), and zot_feed().

+ +
+
+ +
+
+ + + + + + + + +
encode_item_flags ( $item)
+
+ +

Referenced by encode_item().

+ +
+
+ +
+
+ + + + + + + + +
encode_item_terms ( $terms)
+
+ +

Referenced by encode_item().

+ +
+
+ +
+
+ + + + + + + + +
encode_item_xchan ( $xchan)
+
+ +

Referenced by encode_item(), and encode_mail().

+ +
+
+ +
+
+ + + + + + + + +
encode_mail ( $item)
+
+ +

Referenced by notifier_run().

+ +
+
+ +
+
+ + + + + + + + +
encode_rel_links ( $links)
+
+ +

Referenced by get_atom_elements().

+ +
+
+ +
+
+ + + + + + + + +
enumerate_permissions ( $obj)
+
+ +

Referenced by compare_permissions(), and fix_private_photos().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
fetch_post_tags ( $items,
 $link = false 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
first_post_date ( $uid,
 $wall = false 
)
+
+ +

Referenced by posted_dates().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
fix_private_photos ( $s,
 $uid,
 $item = null,
 $cid = 0 
)
+
+ +

Referenced by atom_entry().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
get_atom_elements ( $feed,
 $item 
)
+
+

If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.

+ +

Referenced by consume_feed(), and local_delivery().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
get_feed_for ($a,
 $dfrn_id,
 $owner_nick,
 $last_update,
 $direction = 0 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
get_item_contact ( $item,
 $contacts 
)
+
+ +
+
+ +
+
+ + + + + + + + +
get_item_elements ( $x)
+
+ +

Referenced by zot_import().

+ +
+
+ +
+
+ + + + + + + + +
get_mail_elements ( $x)
+
+ +

Referenced by zot_import().

+ +
+
+ +
+
+ + + + + + + + +
get_profile_elements ( $x)
+
+ +

Referenced by zot_import().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
get_public_feed ( $channel,
 $params 
)
+
+ +

Referenced by feed_init().

+ +
+
+ +
+
+ + + + + + + + +
has_permissions ( $obj)
+
+ +

Referenced by fix_private_photos().

+ +
+
+ +
+
+ + + + + + + + +
import_author_xchan ( $x)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
item_expire ( $uid,
 $days 
)
+
+ +

Referenced by expire_run().

+ +
+
+ +
+
+ + + + + + + + +
item_getfeedattach ( $item)
+
+ +

Referenced by atom_entry().

+ +
+
+ +
+
+ + + + + + + + +
item_getfeedtags ( $item)
+
+ +

Referenced by atom_entry().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
item_store ( $arr,
 $force_parent = false 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
local_delivery ( $importer,
 $data 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
lose_follower ( $importer,
 $contact,
 $datarray,
 $item 
)
+
+ +

Referenced by consume_feed().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
lose_sharer ( $importer,
 $contact,
 $datarray,
 $item 
)
+
+ +

Referenced by consume_feed().

+ +
+
+ +
+
+ + + + + + + + +
mail_store ( $arr)
+
+ +

Referenced by process_mail_delivery().

+ +
+
+ +
+
+ + + + + + + + +
map_scope ( $scope)
+
+ +

Referenced by encode_item().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
new_follower ( $importer,
 $contact,
 $datarray,
 $item,
 $sharing = false 
)
+
+ +

Referenced by consume_feed().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
posted_date_widget ( $url,
 $uid,
 $wall 
)
+
+ +

Referenced by channel_aside(), and network_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
posted_dates ( $uid,
 $wall 
)
+
+ +

Referenced by posted_date_widget().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
send_status_notifications ( $post_id,
 $item 
)
+
+ +

Referenced by item_store().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
tag_deliver ( $uid,
 $item_id 
)
+
+ +

Referenced by item_store().

+ +
+
+ +
+
+ + + + + + + + +
termtype ( $t)
+
+ +

Referenced by encode_item_terms().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
tgroup_check ( $uid,
 $item 
)
+
+ +

Referenced by consume_feed(), and local_delivery().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
if (!function_exists('limit_body_size')) title_is_body ( $title,
 $body 
)
+
+ +

Referenced by get_atom_elements().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
zot_feed ( $uid,
 $observer_xchan,
 $mindate 
)
+
+ +

Referenced by zotfeed_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/items_8php.js b/doc/html/items_8php.js new file mode 100644 index 000000000..4a69c0552 --- /dev/null +++ b/doc/html/items_8php.js @@ -0,0 +1,55 @@ +var items_8php = +[ + [ "activity_sanitise", "items_8php.html#a36e656667193c83aa2cc03a024fc131b", null ], + [ "array_sanitise", "items_8php.html#abf7a1b73eb352d79acd36309b0dababd", null ], + [ "atom_author", "items_8php.html#adc8bda87ba08626f2a8cde7748d1bdae", null ], + [ "atom_entry", "items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6", null ], + [ "collect_recipients", "items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70", null ], + [ "compare_permissions", "items_8php.html#a0790a4550b829e85504af548623002ca", null ], + [ "construct_activity_object", "items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee", null ], + [ "construct_activity_target", "items_8php.html#aa579bc4445d60098b1410961ca8e96b7", null ], + [ "construct_verb", "items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8", null ], + [ "consume_feed", "items_8php.html#a8794863cdf8ce1333040933d3a3f66bd", null ], + [ "decode_tags", "items_8php.html#a56b2a4abcadfac71175cd50555528cc3", null ], + [ "delete_item_lowlevel", "items_8php.html#a2b56a4c01bd22a648d52ec9af1a04259", null ], + [ "dfrn_deliver", "items_8php.html#a8395d189a36abfa0dfff81a2b0e70669", null ], + [ "drop_item", "items_8php.html#afa1db13c2a8b73b5b17b97f17e5a19d1", null ], + [ "drop_items", "items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55", null ], + [ "encode_item", "items_8php.html#a82955cc578f0fa600acec84475026194", null ], + [ "encode_item_flags", "items_8php.html#a5f690fc2484abec07840b4f9dd525bd9", null ], + [ "encode_item_terms", "items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a", null ], + [ "encode_item_xchan", "items_8php.html#a566c601726697e044e75284af7fb6f17", null ], + [ "encode_mail", "items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7", null ], + [ "encode_rel_links", "items_8php.html#aa723c0571e314a1853a24c5854b4f54f", null ], + [ "enumerate_permissions", "items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67", null ], + [ "fetch_post_tags", "items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9", null ], + [ "first_post_date", "items_8php.html#a0cf98bb619f07dd18f602683a55a5f59", null ], + [ "fix_private_photos", "items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87", null ], + [ "get_atom_elements", "items_8php.html#a896c1809d58f2d7a42cfe14577958ddf", null ], + [ "get_feed_for", "items_8php.html#a59abb61d7581dc6592257ef022cbfada", null ], + [ "get_item_contact", "items_8php.html#aab9c6bae4c40799867596bdaae9829fd", null ], + [ "get_item_elements", "items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361", null ], + [ "get_mail_elements", "items_8php.html#a94ddb1d6c8fa21dd7433677e85168037", null ], + [ "get_profile_elements", "items_8php.html#a251343637ff40a50cca93452cd530c26", null ], + [ "get_public_feed", "items_8php.html#a079e099e15d88d47aeb6ca6d60da7107", null ], + [ "has_permissions", "items_8php.html#a77051724d1784074ff187e73a4db93fe", null ], + [ "import_author_xchan", "items_8php.html#ae73794179b62d39bb597ff670ab1c1e5", null ], + [ "item_expire", "items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc", null ], + [ "item_getfeedattach", "items_8php.html#a09d425596b9f8663472cf7474ad36d96", null ], + [ "item_getfeedtags", "items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7", null ], + [ "item_store", "items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049", null ], + [ "local_delivery", "items_8php.html#ae1c27d1a6379231ac7c0435c8a791d45", null ], + [ "lose_follower", "items_8php.html#ade53043e7bc5ab9cc9ef1e4fed6569d4", null ], + [ "lose_sharer", "items_8php.html#a3a218d5e8ffbe261f773225ecded86a2", null ], + [ "mail_store", "items_8php.html#a77da7ce9a117601d49ac4a67c71b514f", null ], + [ "map_scope", "items_8php.html#ac1fcf621dce7370515b420a7753f4726", null ], + [ "new_follower", "items_8php.html#a53eb3d27e1c55083be93a32f392d54e7", null ], + [ "posted_date_widget", "items_8php.html#abe695dd89e1e10ed042c26b80114f0ed", null ], + [ "posted_dates", "items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0", null ], + [ "send_status_notifications", "items_8php.html#aab9e0c58247427126de0699c729c3b6c", null ], + [ "tag_deliver", "items_8php.html#ab1bce4261bcf75ad62753b498a144d17", null ], + [ "termtype", "items_8php.html#ad34827ed330898456783fb14c7b46154", null ], + [ "tgroup_check", "items_8php.html#a88c6cf7649ac836fbbed82a7a0315110", null ], + [ "title_is_body", "items_8php.html#a1f747db2277904f85ac7b9e64c024e4e", null ], + [ "zot_feed", "items_8php.html#a004e89d86b0f29b2c4da20108ecc4091", null ] +]; \ No newline at end of file diff --git a/doc/html/jquery.js b/doc/html/jquery.js new file mode 100644 index 000000000..78ad0bdff --- /dev/null +++ b/doc/html/jquery.js @@ -0,0 +1,77 @@ +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
a",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="
"+""+"
",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="
t
",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="
",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
","
"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")), +f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c) +{if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); +/*! + * jQuery UI 1.8.18 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI + */ +(function(a,b){function d(b){return!a(b).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}function c(b,c){var e=b.nodeName.toLowerCase();if("area"===e){var f=b.parentNode,g=f.name,h;if(!b.href||!g||f.nodeName.toLowerCase()!=="map")return!1;h=a("img[usemap=#"+g+"]")[0];return!!h&&d(h)}return(/input|select|textarea|button|object/.test(e)?!b.disabled:"a"==e?b.href||c:c)&&d(b)}a.ui=a.ui||{};a.ui.version||(a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}}),a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(b,c){return typeof b=="number"?this.each(function(){var d=this;setTimeout(function(){a(d).focus(),c&&c.call(d)},b)}):this._focus.apply(this,arguments)},scrollParent:function(){var b;a.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?b=this.parents().filter(function(){return/(relative|absolute|fixed)/.test(a.curCSS(this,"position",1))&&/(auto|scroll)/.test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0):b=this.parents().filter(function(){return/(auto|scroll)/.test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!b.length?a(document):b},zIndex:function(c){if(c!==b)return this.css("zIndex",c);if(this.length){var d=a(this[0]),e,f;while(d.length&&d[0]!==document){e=d.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){f=parseInt(d.css("zIndex"),10);if(!isNaN(f)&&f!==0)return f}d=d.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}}),a.each(["Width","Height"],function(c,d){function h(b,c,d,f){a.each(e,function(){c-=parseFloat(a.curCSS(b,"padding"+this,!0))||0,d&&(c-=parseFloat(a.curCSS(b,"border"+this+"Width",!0))||0),f&&(c-=parseFloat(a.curCSS(b,"margin"+this,!0))||0)});return c}var e=d==="Width"?["Left","Right"]:["Top","Bottom"],f=d.toLowerCase(),g={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};a.fn["inner"+d]=function(c){if(c===b)return g["inner"+d].call(this);return this.each(function(){a(this).css(f,h(this,c)+"px")})},a.fn["outer"+d]=function(b,c){if(typeof b!="number")return g["outer"+d].call(this,b);return this.each(function(){a(this).css(f,h(this,b,!0,c)+"px")})}}),a.extend(a.expr[":"],{data:function(b,c,d){return!!a.data(b,d[3])},focusable:function(b){return c(b,!isNaN(a.attr(b,"tabindex")))},tabbable:function(b){var d=a.attr(b,"tabindex"),e=isNaN(d);return(e||d>=0)&&c(b,!e)}}),a(function(){var b=document.body,c=b.appendChild(c=document.createElement("div"));c.offsetHeight,a.extend(c.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;for(var f in d)e.plugins[f]=e.plugins[f]||[],e.plugins[f].push([c,d[f]])},call:function(a,b,c){var d=a.plugins[b];if(!!d&&!!a.element[0].parentNode)for(var e=0;e0)return!0;b[d]=1,e=b[d]>0,b[d]=0;return e},isOverAxis:function(a,b,c){return a>b&&a=9)&&!b.button)return this._mouseUp(b);if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}this._mouseDistanceMet(b)&&this._mouseDelayMet(b)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,b)!==!1,this._mouseStarted?this._mouseDrag(b):this._mouseUp(b));return!this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,b.target==this._mouseDownEvent.target&&a.data(b.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(b));return!1},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(a){return this.mouseDelayMet},_mouseStart:function(a){},_mouseDrag:function(a){},_mouseStop:function(a){},_mouseCapture:function(a){return!0}})})(jQuery); +/* + * jQuery UI Resizable 1.8.18 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Resizables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function(a,b){a.widget("ui.resizable",a.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1e3},_create:function(){var b=this,c=this.options;this.element.addClass("ui-resizable"),a.extend(this,{_aspectRatio:!!c.aspectRatio,aspectRatio:c.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:c.helper||c.ghost||c.animate?c.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(a('
').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("resizable",this.element.data("resizable")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=c.handles||(a(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se");if(this.handles.constructor==String){this.handles=="all"&&(this.handles="n,e,s,w,se,sw,ne,nw");var d=this.handles.split(",");this.handles={};for(var e=0;e
');/sw|se|ne|nw/.test(f)&&h.css({zIndex:++c.zIndex}),"se"==f&&h.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[f]=".ui-resizable-"+f,this.element.append(h)}}this._renderAxis=function(b){b=b||this.element;for(var c in this.handles){this.handles[c].constructor==String&&(this.handles[c]=a(this.handles[c],this.element).show());if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var d=a(this.handles[c],this.element),e=0;e=/sw|ne|nw|se|n|s/.test(c)?d.outerHeight():d.outerWidth();var f=["padding",/ne|nw|n/.test(c)?"Top":/se|sw|s/.test(c)?"Bottom":/^e$/.test(c)?"Right":"Left"].join("");b.css(f,e),this._proportionallyResize()}if(!a(this.handles[c]).length)continue}},this._renderAxis(this.element),this._handles=a(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){if(!b.resizing){if(this.className)var a=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=a&&a[1]?a[1]:"se"}}),c.autoHide&&(this._handles.hide(),a(this.element).addClass("ui-resizable-autohide").hover(function(){c.disabled||(a(this).removeClass("ui-resizable-autohide"),b._handles.show())},function(){c.disabled||b.resizing||(a(this).addClass("ui-resizable-autohide"),b._handles.hide())})),this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(b){a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var c=this.element;c.after(this.originalElement.css({position:c.css("position"),width:c.outerWidth(),height:c.outerHeight(),top:c.css("top"),left:c.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle),b(this.originalElement);return this},_mouseCapture:function(b){var c=!1;for(var d in this.handles)a(this.handles[d])[0]==b.target&&(c=!0);return!this.options.disabled&&c},_mouseStart:function(b){var d=this.options,e=this.element.position(),f=this.element;this.resizing=!0,this.documentScroll={top:a(document).scrollTop(),left:a(document).scrollLeft()},(f.is(".ui-draggable")||/absolute/.test(f.css("position")))&&f.css({position:"absolute",top:e.top,left:e.left}),this._renderProxy();var g=c(this.helper.css("left")),h=c(this.helper.css("top"));d.containment&&(g+=a(d.containment).scrollLeft()||0,h+=a(d.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:g,top:h},this.size=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalSize=this._helper?{width:f.outerWidth(),height:f.outerHeight()}:{width:f.width(),height:f.height()},this.originalPosition={left:g,top:h},this.sizeDiff={width:f.outerWidth()-f.width(),height:f.outerHeight()-f.height()},this.originalMousePosition={left:b.pageX,top:b.pageY},this.aspectRatio=typeof d.aspectRatio=="number"?d.aspectRatio:this.originalSize.width/this.originalSize.height||1;var i=a(".ui-resizable-"+this.axis).css("cursor");a("body").css("cursor",i=="auto"?this.axis+"-resize":i),f.addClass("ui-resizable-resizing"),this._propagate("start",b);return!0},_mouseDrag:function(b){var c=this.helper,d=this.options,e={},f=this,g=this.originalMousePosition,h=this.axis,i=b.pageX-g.left||0,j=b.pageY-g.top||0,k=this._change[h];if(!k)return!1;var l=k.apply(this,[b,i,j]),m=a.browser.msie&&a.browser.version<7,n=this.sizeDiff;this._updateVirtualBoundaries(b.shiftKey);if(this._aspectRatio||b.shiftKey)l=this._updateRatio(l,b);l=this._respectSize(l,b),this._propagate("resize",b),c.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"}),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),this._updateCache(l),this._trigger("resize",b,this.ui());return!1},_mouseStop:function(b){this.resizing=!1;var c=this.options,d=this;if(this._helper){var e=this._proportionallyResizeElements,f=e.length&&/textarea/i.test(e[0].nodeName),g=f&&a.ui.hasScroll(e[0],"left")?0:d.sizeDiff.height,h=f?0:d.sizeDiff.width,i={width:d.helper.width()-h,height:d.helper.height()-g},j=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,k=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;c.animate||this.element.css(a.extend(i,{top:k,left:j})),d.helper.height(d.size.height),d.helper.width(d.size.width),this._helper&&!c.animate&&this._proportionallyResize()}a("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",b),this._helper&&this.helper.remove();return!1},_updateVirtualBoundaries:function(a){var b=this.options,c,e,f,g,h;h={minWidth:d(b.minWidth)?b.minWidth:0,maxWidth:d(b.maxWidth)?b.maxWidth:Infinity,minHeight:d(b.minHeight)?b.minHeight:0,maxHeight:d(b.maxHeight)?b.maxHeight:Infinity};if(this._aspectRatio||a)c=h.minHeight*this.aspectRatio,f=h.minWidth/this.aspectRatio,e=h.maxHeight*this.aspectRatio,g=h.maxWidth/this.aspectRatio,c>h.minWidth&&(h.minWidth=c),f>h.minHeight&&(h.minHeight=f),ea.width,k=d(a.height)&&e.minHeight&&e.minHeight>a.height;j&&(a.width=e.minWidth),k&&(a.height=e.minHeight),h&&(a.width=e.maxWidth),i&&(a.height=e.maxHeight);var l=this.originalPosition.left+this.originalSize.width,m=this.position.top+this.size.height,n=/sw|nw|w/.test(g),o=/nw|ne|n/.test(g);j&&n&&(a.left=l-e.minWidth),h&&n&&(a.left=l-e.maxWidth),k&&o&&(a.top=m-e.minHeight),i&&o&&(a.top=m-e.maxHeight);var p=!a.width&&!a.height;p&&!a.left&&a.top?a.top=null:p&&!a.top&&a.left&&(a.left=null);return a},_proportionallyResize:function(){var b=this.options;if(!!this._proportionallyResizeElements.length){var c=this.helper||this.element;for(var d=0;d');var d=a.browser.msie&&a.browser.version<7,e=d?1:0,f=d?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+f,height:this.element.outerHeight()+f,position:"absolute",left:this.elementOffset.left-e+"px",top:this.elementOffset.top-e+"px",zIndex:++c.zIndex}),this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(a,b,c){return{width:this.originalSize.width+b}},w:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{left:f.left+b,width:e.width-b}},n:function(a,b,c){var d=this.options,e=this.originalSize,f=this.originalPosition;return{top:f.top+c,height:e.height-c}},s:function(a,b,c){return{height:this.originalSize.height+c}},se:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},sw:function(b,c,d){return a.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,c,d]))},ne:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,c,d]))},nw:function(b,c,d){return a.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,c,d]))}},_propagate:function(b,c){a.ui.plugin.call(this,b,[c,this.ui()]),b!="resize"&&this._trigger(b,c,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),a.extend(a.ui.resizable,{version:"1.8.18"}),a.ui.plugin.add("resizable","alsoResize",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=function(b){a(b).each(function(){var b=a(this);b.data("resizable-alsoresize",{width:parseInt(b.width(),10),height:parseInt(b.height(),10),left:parseInt(b.css("left"),10),top:parseInt(b.css("top"),10)})})};typeof e.alsoResize=="object"&&!e.alsoResize.parentNode?e.alsoResize.length?(e.alsoResize=e.alsoResize[0],f(e.alsoResize)):a.each(e.alsoResize,function(a){f(a)}):f(e.alsoResize)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.originalSize,g=d.originalPosition,h={height:d.size.height-f.height||0,width:d.size.width-f.width||0,top:d.position.top-g.top||0,left:d.position.left-g.left||0},i=function(b,d){a(b).each(function(){var b=a(this),e=a(this).data("resizable-alsoresize"),f={},g=d&&d.length?d:b.parents(c.originalElement[0]).length?["width","height"]:["width","height","top","left"];a.each(g,function(a,b){var c=(e[b]||0)+(h[b]||0);c&&c>=0&&(f[b]=c||null)}),b.css(f)})};typeof e.alsoResize=="object"&&!e.alsoResize.nodeType?a.each(e.alsoResize,function(a,b){i(a,b)}):i(e.alsoResize)},stop:function(b,c){a(this).removeData("resizable-alsoresize")}}),a.ui.plugin.add("resizable","animate",{stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d._proportionallyResizeElements,g=f.length&&/textarea/i.test(f[0].nodeName),h=g&&a.ui.hasScroll(f[0],"left")?0:d.sizeDiff.height,i=g?0:d.sizeDiff.width,j={width:d.size.width-i,height:d.size.height-h},k=parseInt(d.element.css("left"),10)+(d.position.left-d.originalPosition.left)||null,l=parseInt(d.element.css("top"),10)+(d.position.top-d.originalPosition.top)||null;d.element.animate(a.extend(j,l&&k?{top:l,left:k}:{}),{duration:e.animateDuration,easing:e.animateEasing,step:function(){var c={width:parseInt(d.element.css("width"),10),height:parseInt(d.element.css("height"),10),top:parseInt(d.element.css("top"),10),left:parseInt(d.element.css("left"),10)};f&&f.length&&a(f[0]).css({width:c.width,height:c.height}),d._updateCache(c),d._propagate("resize",b)}})}}),a.ui.plugin.add("resizable","containment",{start:function(b,d){var e=a(this).data("resizable"),f=e.options,g=e.element,h=f.containment,i=h instanceof a?h.get(0):/parent/.test(h)?g.parent().get(0):h;if(!!i){e.containerElement=a(i);if(/document/.test(h)||h==document)e.containerOffset={left:0,top:0},e.containerPosition={left:0,top:0},e.parentData={element:a(document),left:0,top:0,width:a(document).width(),height:a(document).height()||document.body.parentNode.scrollHeight};else{var j=a(i),k=[];a(["Top","Right","Left","Bottom"]).each(function(a,b){k[a]=c(j.css("padding"+b))}),e.containerOffset=j.offset(),e.containerPosition=j.position(),e.containerSize={height:j.innerHeight()-k[3],width:j.innerWidth()-k[1]};var l=e.containerOffset,m=e.containerSize.height,n=e.containerSize.width,o=a.ui.hasScroll(i,"left")?i.scrollWidth:n,p=a.ui.hasScroll(i)?i.scrollHeight:m;e.parentData={element:i,left:l.left,top:l.top,width:o,height:p}}}},resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.containerSize,g=d.containerOffset,h=d.size,i=d.position,j=d._aspectRatio||b.shiftKey,k={top:0,left:0},l=d.containerElement;l[0]!=document&&/static/.test(l.css("position"))&&(k=g),i.left<(d._helper?g.left:0)&&(d.size.width=d.size.width+(d._helper?d.position.left-g.left:d.position.left-k.left),j&&(d.size.height=d.size.width/e.aspectRatio),d.position.left=e.helper?g.left:0),i.top<(d._helper?g.top:0)&&(d.size.height=d.size.height+(d._helper?d.position.top-g.top:d.position.top),j&&(d.size.width=d.size.height*e.aspectRatio),d.position.top=d._helper?g.top:0),d.offset.left=d.parentData.left+d.position.left,d.offset.top=d.parentData.top+d.position.top;var m=Math.abs((d._helper?d.offset.left-k.left:d.offset.left-k.left)+d.sizeDiff.width),n=Math.abs((d._helper?d.offset.top-k.top:d.offset.top-g.top)+d.sizeDiff.height),o=d.containerElement.get(0)==d.element.parent().get(0),p=/relative|absolute/.test(d.containerElement.css("position"));o&&p +&&(m-=d.parentData.left),m+d.size.width>=d.parentData.width&&(d.size.width=d.parentData.width-m,j&&(d.size.height=d.size.width/d.aspectRatio)),n+d.size.height>=d.parentData.height&&(d.size.height=d.parentData.height-n,j&&(d.size.width=d.size.height*d.aspectRatio))},stop:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.position,g=d.containerOffset,h=d.containerPosition,i=d.containerElement,j=a(d.helper),k=j.offset(),l=j.outerWidth()-d.sizeDiff.width,m=j.outerHeight()-d.sizeDiff.height;d._helper&&!e.animate&&/relative/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m}),d._helper&&!e.animate&&/static/.test(i.css("position"))&&a(this).css({left:k.left-h.left-g.left,width:l,height:m})}}),a.ui.plugin.add("resizable","ghost",{start:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size;d.ghost=d.originalElement.clone(),d.ghost.css({opacity:.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof e.ghost=="string"?e.ghost:""),d.ghost.appendTo(d.helper)},resize:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})},stop:function(b,c){var d=a(this).data("resizable"),e=d.options;d.ghost&&d.helper&&d.helper.get(0).removeChild(d.ghost.get(0))}}),a.ui.plugin.add("resizable","grid",{resize:function(b,c){var d=a(this).data("resizable"),e=d.options,f=d.size,g=d.originalSize,h=d.originalPosition,i=d.axis,j=e._aspectRatio||b.shiftKey;e.grid=typeof e.grid=="number"?[e.grid,e.grid]:e.grid;var k=Math.round((f.width-g.width)/(e.grid[0]||1))*(e.grid[0]||1),l=Math.round((f.height-g.height)/(e.grid[1]||1))*(e.grid[1]||1);/^(se|s|e)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l):/^(ne)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l):/^(sw)$/.test(i)?(d.size.width=g.width+k,d.size.height=g.height+l,d.position.left=h.left-k):(d.size.width=g.width+k,d.size.height=g.height+l,d.position.top=h.top-l,d.position.left=h.left-k)}});var c=function(a){return parseInt(a,10)||0},d=function(a){return!isNaN(parseInt(a,10))}})(jQuery); +/* + * jQuery hashchange event - v1.3 - 7/21/2010 + * http://benalman.com/projects/jquery-hashchange-plugin/ + * + * Copyright (c) 2010 "Cowboy" Ben Alman + * Dual licensed under the MIT and GPL licenses. + * http://benalman.com/about/license/ + */ +(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$(' + + +
+ +
+
language.php File Reference
+
+
+
+ + + + + + + + + +

+Functions

if(!function_exists('get_browser_language')) get_best_language ()
 
 push_lang ($language)
 
 pop_lang ()
 
if(!function_exists('load_translation_table'))
+if(!function_exists('t')) if(!function_exists('tt'))
+if(!function_exists('string_plural_select_default')) 
detect_language ($s)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
if (!function_exists('load_translation_table')) if (!function_exists('t')) if (!function_exists('tt')) if (!function_exists('string_plural_select_default')) detect_language ( $s)
+
+ +

Referenced by item_store().

+ +
+
+ +
+
+ + + + + + + +
if (!function_exists('get_browser_language')) get_best_language ()
+
+

translation support

+

Get the language setting directly from system variables, bypassing get_config() as database may not yet be configured.

+

If possible, we use the value from the browser.

+ +

Referenced by create_account().

+ +
+
+ +
+
+ + + + + + + +
pop_lang ()
+
+
+ +
+
+ + + + + + + + +
push_lang ( $language)
+
+
+ + + + + + diff --git a/doc/html/language_8php.js b/doc/html/language_8php.js new file mode 100644 index 000000000..9fa010e60 --- /dev/null +++ b/doc/html/language_8php.js @@ -0,0 +1,7 @@ +var language_8php = +[ + [ "detect_language", "language_8php.html#a2b07ec591277aaae57e4d03a12c929b7", null ], + [ "get_best_language", "language_8php.html#afc07168c25fb662579a52923daa10ee1", null ], + [ "pop_lang", "language_8php.html#a78bd204955ec4cc3a9ac651285a1689d", null ], + [ "push_lang", "language_8php.html#ac9142ef1d01a235c760deb0f16643f5a", null ] +]; \ No newline at end of file diff --git a/doc/html/like_8php.html b/doc/html/like_8php.html new file mode 100644 index 000000000..62f6eae1a --- /dev/null +++ b/doc/html/like_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/like.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
like.php File Reference
+
+
+ + + + +

+Functions

 like_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
like_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/like_8php.js b/doc/html/like_8php.js new file mode 100644 index 000000000..9706955e1 --- /dev/null +++ b/doc/html/like_8php.js @@ -0,0 +1,4 @@ +var like_8php = +[ + [ "like_content", "like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538", null ] +]; \ No newline at end of file diff --git a/doc/html/lockview_8php.html b/doc/html/lockview_8php.html new file mode 100644 index 000000000..a2dce99d9 --- /dev/null +++ b/doc/html/lockview_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/lockview.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
lockview.php File Reference
+
+
+ + + + +

+Functions

 lockview_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
lockview_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/lockview_8php.js b/doc/html/lockview_8php.js new file mode 100644 index 000000000..7a5d6a5a8 --- /dev/null +++ b/doc/html/lockview_8php.js @@ -0,0 +1,4 @@ +var lockview_8php = +[ + [ "lockview_content", "lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44", null ] +]; \ No newline at end of file diff --git a/doc/html/login_8php.html b/doc/html/login_8php.html new file mode 100644 index 000000000..0c9cf43eb --- /dev/null +++ b/doc/html/login_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/login.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
login.php File Reference
+
+
+ + + + +

+Functions

 login_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
login_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/login_8php.js b/doc/html/login_8php.js new file mode 100644 index 000000000..7acaf7886 --- /dev/null +++ b/doc/html/login_8php.js @@ -0,0 +1,4 @@ +var login_8php = +[ + [ "login_content", "login_8php.html#a1d69ca88eb9005a7026e128b9a645904", null ] +]; \ No newline at end of file diff --git a/doc/html/lostpass_8php.html b/doc/html/lostpass_8php.html new file mode 100644 index 000000000..5bad809d0 --- /dev/null +++ b/doc/html/lostpass_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/lostpass.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
lostpass.php File Reference
+
+
+ + + + + + +

+Functions

 lostpass_post (&$a)
 
 lostpass_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
lostpass_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
lostpass_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/lostpass_8php.js b/doc/html/lostpass_8php.js new file mode 100644 index 000000000..a6f1eb8ff --- /dev/null +++ b/doc/html/lostpass_8php.js @@ -0,0 +1,5 @@ +var lostpass_8php = +[ + [ "lostpass_content", "lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3", null ], + [ "lostpass_post", "lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc", null ] +]; \ No newline at end of file diff --git a/doc/html/magic_8php.html b/doc/html/magic_8php.html new file mode 100644 index 000000000..1c0610471 --- /dev/null +++ b/doc/html/magic_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/magic.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
magic.php File Reference
+
+
+ + + + +

+Functions

 magic_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
magic_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/magic_8php.js b/doc/html/magic_8php.js new file mode 100644 index 000000000..331687144 --- /dev/null +++ b/doc/html/magic_8php.js @@ -0,0 +1,4 @@ +var magic_8php = +[ + [ "magic_init", "magic_8php.html#acea2cc792849ca2d71d4b689f66518bf", null ] +]; \ No newline at end of file diff --git a/doc/html/manage_8php.html b/doc/html/manage_8php.html new file mode 100644 index 000000000..5eaea643c --- /dev/null +++ b/doc/html/manage_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/manage.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
manage.php File Reference
+
+
+ + + + +

+Functions

 manage_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
manage_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/manage_8php.js b/doc/html/manage_8php.js new file mode 100644 index 000000000..222f22c2a --- /dev/null +++ b/doc/html/manage_8php.js @@ -0,0 +1,4 @@ +var manage_8php = +[ + [ "manage_content", "manage_8php.html#a2bca247b5296827638959138367db4f5", null ] +]; \ No newline at end of file diff --git a/doc/html/match_8php.html b/doc/html/match_8php.html new file mode 100644 index 000000000..9f588caf4 --- /dev/null +++ b/doc/html/match_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/match.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
match.php File Reference
+
+
+ + + + +

+Functions

 match_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
match_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/match_8php.js b/doc/html/match_8php.js new file mode 100644 index 000000000..2634e9eaa --- /dev/null +++ b/doc/html/match_8php.js @@ -0,0 +1,4 @@ +var match_8php = +[ + [ "match_content", "match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d", null ] +]; \ No newline at end of file diff --git a/doc/html/md_config.html b/doc/html/md_config.html new file mode 100644 index 000000000..5a0ddfcf3 --- /dev/null +++ b/doc/html/md_config.html @@ -0,0 +1,121 @@ + + + + + + +The Red Project: CLI config utility + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
CLI config utility
+
+
+

Usage:

+

config displays all config entries

+

config family displays all config entries for family (system, database, etc)

+

config family key displays single config entry for specified family and key

+

config family key value set config entry for specified family and key to value and display result

+

Notes: Setting config entries which are manually set in .htconfig.php may result in conflict between database settings and the manual startup settings.

+
+
+ + + + diff --git a/doc/html/md_fresh.html b/doc/html/md_fresh.html new file mode 100644 index 000000000..b43cda064 --- /dev/null +++ b/doc/html/md_fresh.html @@ -0,0 +1,133 @@ + + + + + + +The Red Project: Fresh - The Friendica REd Shell + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Fresh - The Friendica REd Shell
+
+
+

This will only work on Unix/Linux. If the readline module is installed, we will use that for input, otherwise we will just read from stdin and write to stdout.

+

Commands are processed sequentially until the command "exit", "quit", or end of file is reached.

+

Commands:

+
    +
  • version Report current fresh version
  • +
+
    +
  • login email_address Prompts for a password, and authenticates email_address as the current user.
  • +
+
    +
  • finger channel_address performs a lookup of channel_address and reports the result.
  • +
+
    +
  • channel channel_nickname switches the current channel to the channel with nickname specified.
  • +
+
    +
  • conn [id1 id2 ...] With no arguments lists all connections of the current channel, with an id. If IDs are provided the connections details of each will be displayed.
  • +
+
+
+ + + + diff --git a/doc/html/minimal_8php.html b/doc/html/minimal_8php.html new file mode 100644 index 000000000..9451ecb7e --- /dev/null +++ b/doc/html/minimal_8php.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: view/php/minimal.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
minimal.php File Reference
+
+
+
+
+ + + + diff --git a/doc/html/mod_2api_8php.html b/doc/html/mod_2api_8php.html new file mode 100644 index 000000000..d9539bcb0 --- /dev/null +++ b/doc/html/mod_2api_8php.html @@ -0,0 +1,185 @@ + + + + + + +The Red Project: mod/api.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
api.php File Reference
+
+
+ + + + + + + + +

+Functions

 oauth_get_client ($request)
 
 api_post (&$a)
 
 api_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
api_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
api_post ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
oauth_get_client ( $request)
+
+ +

Referenced by api_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2api_8php.js b/doc/html/mod_2api_8php.js new file mode 100644 index 000000000..61f9c7f58 --- /dev/null +++ b/doc/html/mod_2api_8php.js @@ -0,0 +1,6 @@ +var mod_2api_8php = +[ + [ "api_content", "mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d", null ], + [ "api_post", "mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2", null ], + [ "oauth_get_client", "mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2attach_8php.html b/doc/html/mod_2attach_8php.html new file mode 100644 index 000000000..877d6179c --- /dev/null +++ b/doc/html/mod_2attach_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/attach.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
attach.php File Reference
+
+
+ + + + +

+Functions

 attach_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
attach_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2attach_8php.js b/doc/html/mod_2attach_8php.js new file mode 100644 index 000000000..19c8c722e --- /dev/null +++ b/doc/html/mod_2attach_8php.js @@ -0,0 +1,4 @@ +var mod_2attach_8php = +[ + [ "attach_init", "mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2directory_8php.html b/doc/html/mod_2directory_8php.html new file mode 100644 index 000000000..dd9a7427e --- /dev/null +++ b/doc/html/mod_2directory_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/directory.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
directory.php File Reference
+
+
+ + + + + + + + +

+Functions

 directory_init (&$a)
 
 directory_aside (&$a)
 
 directory_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
directory_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
directory_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
directory_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2directory_8php.js b/doc/html/mod_2directory_8php.js new file mode 100644 index 000000000..9628750ce --- /dev/null +++ b/doc/html/mod_2directory_8php.js @@ -0,0 +1,6 @@ +var mod_2directory_8php = +[ + [ "directory_aside", "mod_2directory_8php.html#aa1d928543212871491706216742dd73c", null ], + [ "directory_content", "mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44", null ], + [ "directory_init", "mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2follow_8php.html b/doc/html/mod_2follow_8php.html new file mode 100644 index 000000000..6658eb2d1 --- /dev/null +++ b/doc/html/mod_2follow_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/follow.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
follow.php File Reference
+
+
+ + + + +

+Functions

 follow_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
follow_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2follow_8php.js b/doc/html/mod_2follow_8php.js new file mode 100644 index 000000000..1c7c46d03 --- /dev/null +++ b/doc/html/mod_2follow_8php.js @@ -0,0 +1,4 @@ +var mod_2follow_8php = +[ + [ "follow_init", "mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2group_8php.html b/doc/html/mod_2group_8php.html new file mode 100644 index 000000000..518764a93 --- /dev/null +++ b/doc/html/mod_2group_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/group.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
group.php File Reference
+
+
+ + + + + + + + +

+Functions

 group_aside (&$a)
 
 group_post (&$a)
 
 group_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
group_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
group_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
group_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2group_8php.js b/doc/html/mod_2group_8php.js new file mode 100644 index 000000000..361f32a48 --- /dev/null +++ b/doc/html/mod_2group_8php.js @@ -0,0 +1,6 @@ +var mod_2group_8php = +[ + [ "group_aside", "mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c", null ], + [ "group_content", "mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83", null ], + [ "group_post", "mod_2group_8php.html#aed1f009b1221348021bb34761160ef35", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2message_8php.html b/doc/html/mod_2message_8php.html new file mode 100644 index 000000000..60af17510 --- /dev/null +++ b/doc/html/mod_2message_8php.html @@ -0,0 +1,184 @@ + + + + + + +The Red Project: mod/message.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
message.php File Reference
+
+
+ + + + + + + + +

+Functions

 message_aside (&$a)
 
 message_post (&$a)
 
if(!function_exists('item_extract_images'))
+if(!function_exists('item_redir_and_replace_images')) 
message_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
message_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
if (!function_exists('item_extract_images')) if (!function_exists('item_redir_and_replace_images')) message_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
message_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2message_8php.js b/doc/html/mod_2message_8php.js new file mode 100644 index 000000000..10f9423f9 --- /dev/null +++ b/doc/html/mod_2message_8php.js @@ -0,0 +1,6 @@ +var mod_2message_8php = +[ + [ "message_aside", "mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7", null ], + [ "message_content", "mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79", null ], + [ "message_post", "mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2network_8php.html b/doc/html/mod_2network_8php.html new file mode 100644 index 000000000..90eda2ac2 --- /dev/null +++ b/doc/html/mod_2network_8php.html @@ -0,0 +1,226 @@ + + + + + + +The Red Project: mod/network.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
network.php File Reference
+
+
+ + + + + + + + + + +

+Functions

 network_init (&$a)
 
 saved_searches ($search)
 
 network_query_get_sel_tab ($a)
 
 network_content (&$a, $update=0, $load=false)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
network_content ($a,
 $update = 0,
 $load = false 
)
+
+ +

Referenced by update_network_content().

+ +
+
+ +
+
+ + + + + + + + +
network_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
network_query_get_sel_tab ( $a)
+
+

Return selected tab from query

+

urls -> returns '/network' => $no_active = 'active' '/network?f=&order=comment' => $comment_active = 'active' '/network?f=&order=post' => $postord_active = 'active' '/network?f=&conv=1', => $conv_active = 'active' '/network/new', => $new_active = 'active' '/network?f=&star=1', => $starred_active = 'active' '/network?f=&spam=1', => $spam_active = 'active'

+
Returns
Array ( $no_active, $comment_active, $postord_active, $conv_active, $new_active, $starred_active, $spam_active );
+ +

Referenced by network_content(), and network_init().

+ +
+
+ +
+
+ + + + + + + + +
saved_searches ( $search)
+
+ +

Referenced by network_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2network_8php.js b/doc/html/mod_2network_8php.js new file mode 100644 index 000000000..4bc180c33 --- /dev/null +++ b/doc/html/mod_2network_8php.js @@ -0,0 +1,7 @@ +var mod_2network_8php = +[ + [ "network_content", "mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4", null ], + [ "network_init", "mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec", null ], + [ "network_query_get_sel_tab", "mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666", null ], + [ "saved_searches", "mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2notify_8php.html b/doc/html/mod_2notify_8php.html new file mode 100644 index 000000000..d05a5d34d --- /dev/null +++ b/doc/html/mod_2notify_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/notify.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
notify.php File Reference
+
+
+ + + + + + +

+Functions

 notify_init (&$a)
 
 notify_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
notify_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
notify_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2notify_8php.js b/doc/html/mod_2notify_8php.js new file mode 100644 index 000000000..cb5e5e71e --- /dev/null +++ b/doc/html/mod_2notify_8php.js @@ -0,0 +1,5 @@ +var mod_2notify_8php = +[ + [ "notify_content", "mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3", null ], + [ "notify_init", "mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2oembed_8php.html b/doc/html/mod_2oembed_8php.html new file mode 100644 index 000000000..8590aa8e2 --- /dev/null +++ b/doc/html/mod_2oembed_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/oembed.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
oembed.php File Reference
+
+
+ + + + +

+Functions

 oembed_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
oembed_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2oembed_8php.js b/doc/html/mod_2oembed_8php.js new file mode 100644 index 000000000..fa9f10f16 --- /dev/null +++ b/doc/html/mod_2oembed_8php.js @@ -0,0 +1,4 @@ +var mod_2oembed_8php = +[ + [ "oembed_init", "mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014", null ] +]; \ No newline at end of file diff --git a/doc/html/mod_2photos_8php.html b/doc/html/mod_2photos_8php.html new file mode 100644 index 000000000..333e54ad3 --- /dev/null +++ b/doc/html/mod_2photos_8php.html @@ -0,0 +1,184 @@ + + + + + + +The Red Project: mod/photos.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
photos.php File Reference
+
+
+ + + + + + + + +

+Functions

 photos_init (&$a)
 
 photos_post (&$a)
 
 photos_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
photos_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
photos_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
photos_post ($a)
+
+

default post action - upload a photo

+ +
+
+
+
+ + + + diff --git a/doc/html/mod_2photos_8php.js b/doc/html/mod_2photos_8php.js new file mode 100644 index 000000000..5048ba9c1 --- /dev/null +++ b/doc/html/mod_2photos_8php.js @@ -0,0 +1,6 @@ +var mod_2photos_8php = +[ + [ "photos_content", "mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812", null ], + [ "photos_init", "mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014", null ], + [ "photos_post", "mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080", null ] +]; \ No newline at end of file diff --git a/doc/html/mod__import_8php.html b/doc/html/mod__import_8php.html new file mode 100644 index 000000000..684add40d --- /dev/null +++ b/doc/html/mod__import_8php.html @@ -0,0 +1,145 @@ + + + + + + +The Red Project: view/php/mod_import.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
mod_import.php File Reference
+
+
+ + + + +

+Variables

$a page ['template'] = 'full'
 
+

Variable Documentation

+ +
+
+ + + + +
$a page['template'] = 'full'
+
+ +

Referenced by App\__construct(), and App\build_pagehead().

+ +
+
+
+
+ + + + diff --git a/doc/html/mod__import_8php.js b/doc/html/mod__import_8php.js new file mode 100644 index 000000000..906263adf --- /dev/null +++ b/doc/html/mod__import_8php.js @@ -0,0 +1,4 @@ +var mod__import_8php = +[ + [ "page", "mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb", null ] +]; \ No newline at end of file diff --git a/doc/html/mod__new__channel_8php.html b/doc/html/mod__new__channel_8php.html new file mode 100644 index 000000000..dab48559e --- /dev/null +++ b/doc/html/mod__new__channel_8php.html @@ -0,0 +1,143 @@ + + + + + + +The Red Project: view/php/mod_new_channel.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
mod_new_channel.php File Reference
+
+
+ + + + +

+Variables

$a page ['template'] = 'full'
 
+

Variable Documentation

+ +
+
+ + + + +
$a page['template'] = 'full'
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod__new__channel_8php.js b/doc/html/mod__new__channel_8php.js new file mode 100644 index 000000000..81be48cb5 --- /dev/null +++ b/doc/html/mod__new__channel_8php.js @@ -0,0 +1,4 @@ +var mod__new__channel_8php = +[ + [ "page", "mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb", null ] +]; \ No newline at end of file diff --git a/doc/html/mod__register_8php.html b/doc/html/mod__register_8php.html new file mode 100644 index 000000000..ef3dd3a7b --- /dev/null +++ b/doc/html/mod__register_8php.html @@ -0,0 +1,143 @@ + + + + + + +The Red Project: view/php/mod_register.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
mod_register.php File Reference
+
+
+ + + + +

+Variables

$a page ['template'] = 'full'
 
+

Variable Documentation

+ +
+
+ + + + +
$a page['template'] = 'full'
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mod__register_8php.js b/doc/html/mod__register_8php.js new file mode 100644 index 000000000..ac5d5ab70 --- /dev/null +++ b/doc/html/mod__register_8php.js @@ -0,0 +1,4 @@ +var mod__register_8php = +[ + [ "page", "mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb", null ] +]; \ No newline at end of file diff --git a/doc/html/mood_8php.html b/doc/html/mood_8php.html new file mode 100644 index 000000000..d67a29431 --- /dev/null +++ b/doc/html/mood_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/mood.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
mood.php File Reference
+
+
+ + + + + + +

+Functions

 mood_init (&$a)
 
 mood_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
mood_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
mood_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/mood_8php.js b/doc/html/mood_8php.js new file mode 100644 index 000000000..48b12ef8f --- /dev/null +++ b/doc/html/mood_8php.js @@ -0,0 +1,5 @@ +var mood_8php = +[ + [ "mood_content", "mood_8php.html#a721b9b6703b3234a005641c92d409b8f", null ], + [ "mood_init", "mood_8php.html#a7ae136dd7476865b4828136175db5022", null ] +]; \ No newline at end of file diff --git a/doc/html/msearch_8php.html b/doc/html/msearch_8php.html new file mode 100644 index 000000000..98de27256 --- /dev/null +++ b/doc/html/msearch_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/msearch.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
msearch.php File Reference
+
+
+ + + + +

+Functions

 msearch_post (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
msearch_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/msearch_8php.js b/doc/html/msearch_8php.js new file mode 100644 index 000000000..16b349389 --- /dev/null +++ b/doc/html/msearch_8php.js @@ -0,0 +1,4 @@ +var msearch_8php = +[ + [ "msearch_post", "msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8", null ] +]; \ No newline at end of file diff --git a/doc/html/namespaceFriendica.html b/doc/html/namespaceFriendica.html new file mode 100644 index 000000000..a418beb3f --- /dev/null +++ b/doc/html/namespaceFriendica.html @@ -0,0 +1,125 @@ + + + + + + +The Red Project: Friendica Namespace Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Friendica Namespace Reference
+
+
+

Detailed Description

+
+
+ + + + diff --git a/doc/html/namespaceacl__selectors.html b/doc/html/namespaceacl__selectors.html new file mode 100644 index 000000000..e5225b032 --- /dev/null +++ b/doc/html/namespaceacl__selectors.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: acl_selectors Namespace Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
acl_selectors Namespace Reference
+
+
+
+
+ + + + diff --git a/doc/html/namespacefriendica-to-smarty-tpl.html b/doc/html/namespacefriendica-to-smarty-tpl.html new file mode 100644 index 000000000..0c54b2609 --- /dev/null +++ b/doc/html/namespacefriendica-to-smarty-tpl.html @@ -0,0 +1,388 @@ + + + + + + +The Red Project: friendica-to-smarty-tpl Namespace Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
friendica-to-smarty-tpl Namespace Reference
+
+
+ + + + + + + + + + +

+Functions

def fToSmarty
 
def fix_element
 
def convert
 
def help
 
+ + + + + + + + + + + + + + + + + + + + + + + +

+Variables

string ldelim = '{{'
 
string rdelim = '}}'
 
string path = ''
 
string outpath = path+'smarty3/'
 
tuple files = os.listdir(path)
 
 php_tpl = True
 
tuple filename = os.path.join(path,a_file)
 
tuple ext = a_file.split('.')
 
tuple f = open(filename, 'r')
 
tuple newfilename = os.path.join(outpath,a_file)
 
tuple outf = open(newfilename, 'w')
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
def friendica-to-smarty-tpl.convert ( filename,
 tofilename,
 php_tpl 
)
+
+ +
+
+ +
+
+ + + + + + + + +
def friendica-to-smarty-tpl.fix_element ( element)
+
+ +

Referenced by convert().

+ +
+
+ +
+
+ + + + + + + + +
def friendica-to-smarty-tpl.fToSmarty ( matches)
+
+ +
+
+ +
+
+ + + + + + + + +
def friendica-to-smarty-tpl.help ( pname)
+
+ +
+
+

Variable Documentation

+ +
+
+ + + + +
tuple friendica-to-smarty-tpl.ext = a_file.split('.')
+
+ +
+
+ +
+
+ + + + +
tuple friendica-to-smarty-tpl.f = open(filename, 'r')
+
+ +

Referenced by photos_content().

+ +
+
+ +
+
+ + + + +
tuple friendica-to-smarty-tpl.filename = os.path.join(path,a_file)
+
+ +

Referenced by FriendicaSmarty.parsed(), and photos_content().

+ +
+
+ +
+
+ + + + +
tuple friendica-to-smarty-tpl.files = os.listdir(path)
+
+ +
+
+ +
+
+ + + + +
string friendica-to-smarty-tpl.ldelim = '{{'
+
+ +

Referenced by App.get_template_ldelim().

+ +
+
+ +
+
+ + + + +
tuple friendica-to-smarty-tpl.newfilename = os.path.join(outpath,a_file)
+
+ +
+
+ +
+
+ + + + +
tuple friendica-to-smarty-tpl.outf = open(newfilename, 'w')
+
+ +
+
+ +
+
+ + + + +
string friendica-to-smarty-tpl.outpath = path+'smarty3/'
+
+ +
+
+ +
+
+ + + + +
string friendica-to-smarty-tpl.path = ''
+
+
+ +
+
+ + + + +
friendica-to-smarty-tpl.php_tpl = True
+
+ +
+
+ +
+
+ + + + +
string friendica-to-smarty-tpl.rdelim = '}}'
+
+ +

Referenced by App.get_template_rdelim().

+ +
+
+
+
+ + + + diff --git a/doc/html/namespacemembers.html b/doc/html/namespacemembers.html new file mode 100644 index 000000000..b7b7eb510 --- /dev/null +++ b/doc/html/namespacemembers.html @@ -0,0 +1,185 @@ + + + + + + +The Red Project: Namespace Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
Here is a list of all namespace members with links to the namespace documentation for each member:
+
+
+ + + + diff --git a/doc/html/namespacemembers_func.html b/doc/html/namespacemembers_func.html new file mode 100644 index 000000000..2f25c0bbe --- /dev/null +++ b/doc/html/namespacemembers_func.html @@ -0,0 +1,139 @@ + + + + + + +The Red Project: Namespace Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + +
+
+ +
+
+
+ + + + + + diff --git a/doc/html/namespacemembers_vars.html b/doc/html/namespacemembers_vars.html new file mode 100644 index 000000000..e55769025 --- /dev/null +++ b/doc/html/namespacemembers_vars.html @@ -0,0 +1,172 @@ + + + + + + +The Red Project: Namespace Members + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
+ + + + diff --git a/doc/html/namespaces.html b/doc/html/namespaces.html new file mode 100644 index 000000000..16888d323 --- /dev/null +++ b/doc/html/namespaces.html @@ -0,0 +1,130 @@ + + + + + + +The Red Project: Namespace List + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Namespace List
+
+
+
Here is a list of all namespaces with brief descriptions:
+
+
+ + + + diff --git a/doc/html/namespaces.js b/doc/html/namespaces.js new file mode 100644 index 000000000..681592f37 --- /dev/null +++ b/doc/html/namespaces.js @@ -0,0 +1,8 @@ +var namespaces = +[ + [ "acl_selectors", "namespaceacl__selectors.html", null ], + [ "Friendica", "namespaceFriendica.html", null ], + [ "friendica-to-smarty-tpl", "namespacefriendica-to-smarty-tpl.html", null ], + [ "updatetpl", "namespaceupdatetpl.html", null ], + [ "util", "namespaceutil.html", null ] +]; \ No newline at end of file diff --git a/doc/html/namespaceupdatetpl.html b/doc/html/namespaceupdatetpl.html new file mode 100644 index 000000000..79ed4586d --- /dev/null +++ b/doc/html/namespaceupdatetpl.html @@ -0,0 +1,222 @@ + + + + + + +The Red Project: updatetpl Namespace Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
updatetpl Namespace Reference
+
+
+ + + + +

+Functions

def help
 
+ + + + + + + + + + + +

+Variables

string path = ''
 
list excludepaths = ['css', 'img', 'js', 'php', 'theme']
 
list tplpaths = []
 
tuple names = os.listdir(path + 'view/')
 
tuple fnull = open(os.devnull, "w")
 
+

Function Documentation

+ +
+
+ + + + + + + + +
def updatetpl.help ( pname)
+
+ +
+
+

Variable Documentation

+ +
+
+ + + + +
list updatetpl.excludepaths = ['css', 'img', 'js', 'php', 'theme']
+
+ +
+
+ +
+
+ + + + +
tuple updatetpl.fnull = open(os.devnull, "w")
+
+ +
+
+ +
+
+ + + + +
tuple updatetpl.names = os.listdir(path + 'view/')
+
+ +
+
+ +
+
+ + + + +
string updatetpl.path = ''
+
+ +
+
+ +
+
+ + + + +
list updatetpl.tplpaths = []
+
+ +
+
+
+
+ + + + diff --git a/doc/html/namespaceutil.html b/doc/html/namespaceutil.html new file mode 100644 index 000000000..fd3ba055a --- /dev/null +++ b/doc/html/namespaceutil.html @@ -0,0 +1,154 @@ + + + + + + +The Red Project: util Namespace Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
util Namespace Reference
+
+
+

Detailed Description

+

When I installed docblox, I had the experience that it does not generate any output at all. This script may be used to find that kind of problems with the documentation build process. If docblox generates output, use another approach for debugging.

+

Basically, docblox takes a list of files to build documentation from. This script assumes there is a file or set of files breaking the build when it is included in that list. It tries to calculate the smallest list containing these files. Unfortunatly, the original problem is NP-complete, so what the script does is a best guess only.

+

So it starts with a list of all files in the project. If that list can't be build, it cuts it in two parts and tries both parts independently. If only one of them breaks, it takes that one and tries the same independently. If both break, it assumes this is the smallest set. This assumption is not necessarily true. Maybe the smallest set consists of two files and both of them were in different parts when the list was divided, but by now it is my best guess. To make this assumption better, the list is shuffled after every step.

+

After that, the script tries to remove a file from the list. It tests if the list breaks and if so, it assumes that the file it removed belongs to the set of errorneous files. This is done for all files, so, in the end removing one file leads to a working doc build.

+
Author
Alexander Kampmann
+

This function generates a comma seperated list of file names.

+
Parameters
+ + +
array$filesetSet of file names
+
+
+
Returns
string comma-seperated list of the file names
+

This functions runs phpdoc on the provided list of files

+
Parameters
+ + +
array$filesetSet of filenames
+
+
+
Returns
bool true, if that set can be built
+

This functions cuts down a fileset by removing files until it finally works. it was meant to be recursive, but php's maximum stack size is to small. So it just simulates recursion.

+

In that version, it does not necessarily generate the smallest set, because it may not alter the elements order enough.

+
Parameters
+ + + +
array$filesetset of filenames
int$psnumber of files in subsets
+
+
+
Returns
array a part of $fileset, that crashes
+
+
+ + + + diff --git a/doc/html/nav_8php.html b/doc/html/nav_8php.html new file mode 100644 index 000000000..44cb18bb2 --- /dev/null +++ b/doc/html/nav_8php.html @@ -0,0 +1,177 @@ + + + + + + +The Red Project: include/nav.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
nav.php File Reference
+
+
+ + + + + + +

+Functions

 nav (&$a)
 
 nav_set_selected ($item)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
nav ($a)
+
+

Build page header and site navigation bars

+

Placeholder div for popup panel

+

Our network is distributed, and as you visit friends some of the sites look exactly the same - it isn't always easy to know where you are. Display the current site location as a navigation aid.

+

Display login or logout

+

"Home" should also take you home from an authenticated remote profile connection

+

The following nav links are only show to logged in users

+

Admin page

+

Provide a banner/logo/whatever

+ +

Referenced by construct_page().

+ +
+
+ + +
+
+ + + + diff --git a/doc/html/nav_8php.js b/doc/html/nav_8php.js new file mode 100644 index 000000000..09cec55d1 --- /dev/null +++ b/doc/html/nav_8php.js @@ -0,0 +1,5 @@ +var nav_8php = +[ + [ "nav", "nav_8php.html#a43be0df73b90647ea70947ce004e231e", null ], + [ "nav_set_selected", "nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a", null ] +]; \ No newline at end of file diff --git a/doc/html/nav_f.png b/doc/html/nav_f.png new file mode 100644 index 000000000..72a58a529 Binary files /dev/null and b/doc/html/nav_f.png differ diff --git a/doc/html/nav_g.png b/doc/html/nav_g.png new file mode 100644 index 000000000..2093a237a Binary files /dev/null and b/doc/html/nav_g.png differ diff --git a/doc/html/nav_h.png b/doc/html/nav_h.png new file mode 100644 index 000000000..33389b101 Binary files /dev/null and b/doc/html/nav_h.png differ diff --git a/doc/html/navtree.css b/doc/html/navtree.css new file mode 100644 index 000000000..41a9cb969 --- /dev/null +++ b/doc/html/navtree.css @@ -0,0 +1,143 @@ +#nav-tree .children_ul { + margin:0; + padding:4px; +} + +#nav-tree ul { + list-style:none outside none; + margin:0px; + padding:0px; +} + +#nav-tree li { + white-space:nowrap; + margin:0px; + padding:0px; +} + +#nav-tree .plus { + margin:0px; +} + +#nav-tree .selected { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} + +#nav-tree img { + margin:0px; + padding:0px; + border:0px; + vertical-align: middle; +} + +#nav-tree a { + text-decoration:none; + padding:0px; + margin:0px; + outline:none; +} + +#nav-tree .label { + margin:0px; + padding:0px; + font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +} + +#nav-tree .label a { + padding:2px; +} + +#nav-tree .selected a { + text-decoration:none; + color:#fff; +} + +#nav-tree .children_ul { + margin:0px; + padding:0px; +} + +#nav-tree .item { + margin:0px; + padding:0px; +} + +#nav-tree { + padding: 0px 0px; + background-color: #FAFAFF; + font-size:14px; + overflow:auto; +} + +#doc-content { + overflow:auto; + display:block; + padding:0px; + margin:0px; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#side-nav { + padding:0 6px 0 0; + margin: 0px; + display:block; + position: absolute; + left: 0px; + width: 250px; +} + +.ui-resizable .ui-resizable-handle { + display:block; +} + +.ui-resizable-e { + background:url("ftv2splitbar.png") repeat scroll right center transparent; + cursor:e-resize; + height:100%; + right:0; + top:0; + width:6px; +} + +.ui-resizable-handle { + display:none; + font-size:0.1px; + position:absolute; + z-index:1; +} + +#nav-tree-contents { + margin: 6px 0px 0px 0px; +} + +#nav-tree { + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + -webkit-overflow-scrolling : touch; /* iOS 5+ */ +} + +#nav-sync { + position:absolute; + top:5px; + right:24px; + z-index:0; +} + +#nav-sync img { + opacity:0.3; +} + +#nav-sync img:hover { + opacity:0.9; +} + +@media print +{ + #nav-tree { display: none; } + div.ui-resizable-handle { display: none; position: relative; } +} + diff --git a/doc/html/navtree.js b/doc/html/navtree.js new file mode 100644 index 000000000..ec2a6903f --- /dev/null +++ b/doc/html/navtree.js @@ -0,0 +1,540 @@ +var NAVTREE = +[ + [ "The Red Project", "index.html", [ + [ "CLI config utility", "md_config.html", null ], + [ "Fresh - The Friendica REd Shell", "md_fresh.html", null ], + [ "Namespaces", null, [ + [ "Namespace List", "namespaces.html", "namespaces" ], + [ "Namespace Members", "namespacemembers.html", [ + [ "All", "namespacemembers.html", null ], + [ "Functions", "namespacemembers_func.html", null ], + [ "Variables", "namespacemembers_vars.html", null ] + ] ] + ] ], + [ "Classes", null, [ + [ "Class List", "annotated.html", "annotated" ], + [ "Class Index", "classes.html", null ], + [ "Class Hierarchy", "hierarchy.html", "hierarchy" ], + [ "Class Members", "functions.html", [ + [ "All", "functions.html", "functions_dup" ], + [ "Functions", "functions_func.html", null ], + [ "Variables", "functions_vars.html", null ] + ] ] + ] ], + [ "Files", null, [ + [ "File List", "files.html", "files" ], + [ "File Members", "globals.html", [ + [ "All", "globals.html", "globals_dup" ], + [ "Functions", "globals_func.html", "globals_func" ], + [ "Variables", "globals_vars.html", "globals_vars" ] + ] ] + ] ] + ] ] +]; + +var NAVTREEINDEX = +[ +"BaseObject_8php.html", +"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764", +"classPhoto.html#a4ff11117ada771637a61a668d2af6636", +"friendica-to-smarty-tpl_8py.html#a0b4cf73d1a8d201a28d269eeb62a5d5c", +"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d", +"po2php_8php.html", +"updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6" +]; + +var SYNCONMSG = 'click to disable panel synchronisation'; +var SYNCOFFMSG = 'click to enable panel synchronisation'; +var navTreeSubIndices = new Array(); + +function getData(varName) +{ + var i = varName.lastIndexOf('/'); + var n = i>=0 ? varName.substring(i+1) : varName; + return eval(n.replace(/\-/g,'_')); +} + +function stripPath(uri) +{ + return uri.substring(uri.lastIndexOf('/')+1); +} + +function stripPath2(uri) +{ + var i = uri.lastIndexOf('/'); + var s = uri.substring(i+1); + var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); + return m ? uri.substring(i-6) : s; +} + +function localStorageSupported() +{ + try { + return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem; + } + catch(e) { + return false; + } +} + + +function storeLink(link) +{ + if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) { + window.localStorage.setItem('navpath',link); + } +} + +function deleteLink() +{ + if (localStorageSupported()) { + window.localStorage.setItem('navpath',''); + } +} + +function cachedLink() +{ + if (localStorageSupported()) { + return window.localStorage.getItem('navpath'); + } else { + return ''; + } +} + +function getScript(scriptName,func,show) +{ + var head = document.getElementsByTagName("head")[0]; + var script = document.createElement('script'); + script.id = scriptName; + script.type = 'text/javascript'; + script.onload = func; + script.src = scriptName+'.js'; + if ($.browser.msie && $.browser.version<=8) { + // script.onload does not work with older versions of IE + script.onreadystatechange = function() { + if (script.readyState=='complete' || script.readyState=='loaded') { + func(); if (show) showRoot(); + } + } + } + head.appendChild(script); +} + +function createIndent(o,domNode,node,level) +{ + var level=-1; + var n = node; + while (n.parentNode) { level++; n=n.parentNode; } + var imgNode = document.createElement("img"); + imgNode.style.paddingLeft=(16*level).toString()+'px'; + imgNode.width = 16; + imgNode.height = 22; + imgNode.border = 0; + if (node.childrenData) { + node.plus_img = imgNode; + node.expandToggle = document.createElement("a"); + node.expandToggle.href = "javascript:void(0)"; + node.expandToggle.onclick = function() { + if (node.expanded) { + $(node.getChildrenUL()).slideUp("fast"); + node.plus_img.src = node.relpath+"ftv2pnode.png"; + node.expanded = false; + } else { + expandNode(o, node, false, false); + } + } + node.expandToggle.appendChild(imgNode); + domNode.appendChild(node.expandToggle); + imgNode.src = node.relpath+"ftv2pnode.png"; + } else { + imgNode.src = node.relpath+"ftv2node.png"; + domNode.appendChild(imgNode); + } +} + +var animationInProgress = false; + +function gotoAnchor(anchor,aname,updateLocation) +{ + var pos, docContent = $('#doc-content'); + if (anchor.parent().attr('class')=='memItemLeft' || + anchor.parent().attr('class')=='fieldtype' || + anchor.parent().is(':header')) + { + pos = anchor.parent().position().top; + } else if (anchor.position()) { + pos = anchor.position().top; + } + if (pos) { + var dist = Math.abs(Math.min( + pos-docContent.offset().top, + docContent[0].scrollHeight- + docContent.height()-docContent.scrollTop())); + animationInProgress=true; + docContent.animate({ + scrollTop: pos + docContent.scrollTop() - docContent.offset().top + },Math.max(50,Math.min(500,dist)),function(){ + if (updateLocation) window.location.href=aname; + animationInProgress=false; + }); + } +} + +function newNode(o, po, text, link, childrenData, lastNode) +{ + var node = new Object(); + node.children = Array(); + node.childrenData = childrenData; + node.depth = po.depth + 1; + node.relpath = po.relpath; + node.isLast = lastNode; + + node.li = document.createElement("li"); + po.getChildrenUL().appendChild(node.li); + node.parentNode = po; + + node.itemDiv = document.createElement("div"); + node.itemDiv.className = "item"; + + node.labelSpan = document.createElement("span"); + node.labelSpan.className = "label"; + + createIndent(o,node.itemDiv,node,0); + node.itemDiv.appendChild(node.labelSpan); + node.li.appendChild(node.itemDiv); + + var a = document.createElement("a"); + node.labelSpan.appendChild(a); + node.label = document.createTextNode(text); + node.expanded = false; + a.appendChild(node.label); + if (link) { + var url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + link = url; + } else { + url = node.relpath+link; + } + a.className = stripPath(link.replace('#',':')); + if (link.indexOf('#')!=-1) { + var aname = '#'+link.split('#')[1]; + var srcPage = stripPath($(location).attr('pathname')); + var targetPage = stripPath(link.split('#')[0]); + a.href = srcPage!=targetPage ? url : "javascript:void(0)"; + a.onclick = function(){ + storeLink(link); + if (!$(a).parent().parent().hasClass('selected')) + { + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + $(a).parent().parent().addClass('selected'); + $(a).parent().parent().attr('id','selected'); + } + var anchor = $(aname); + gotoAnchor(anchor,aname,true); + }; + } else { + a.href = url; + a.onclick = function() { storeLink(link); } + } + } else { + if (childrenData != null) + { + a.className = "nolink"; + a.href = "javascript:void(0)"; + a.onclick = node.expandToggle.onclick; + } + } + + node.childrenUL = null; + node.getChildrenUL = function() { + if (!node.childrenUL) { + node.childrenUL = document.createElement("ul"); + node.childrenUL.className = "children_ul"; + node.childrenUL.style.display = "none"; + node.li.appendChild(node.childrenUL); + } + return node.childrenUL; + }; + + return node; +} + +function showRoot() +{ + var headerHeight = $("#top").height(); + var footerHeight = $("#nav-path").height(); + var windowHeight = $(window).height() - headerHeight - footerHeight; + (function (){ // retry until we can scroll to the selected item + try { + var navtree=$('#nav-tree'); + navtree.scrollTo('#selected',0,{offset:-windowHeight/2}); + } catch (err) { + setTimeout(arguments.callee, 0); + } + })(); +} + +function expandNode(o, node, imm, showRoot) +{ + if (node.childrenData && !node.expanded) { + if (typeof(node.childrenData)==='string') { + var varName = node.childrenData; + getScript(node.relpath+varName,function(){ + node.childrenData = getData(varName); + expandNode(o, node, imm, showRoot); + }, showRoot); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } if (imm || ($.browser.msie && $.browser.version>8)) { + // somehow slideDown jumps to the start of tree for IE9 :-( + $(node.getChildrenUL()).show(); + } else { + $(node.getChildrenUL()).slideDown("fast"); + } + if (node.isLast) { + node.plus_img.src = node.relpath+"ftv2mlastnode.png"; + } else { + node.plus_img.src = node.relpath+"ftv2mnode.png"; + } + node.expanded = true; + } + } +} + +function glowEffect(n,duration) +{ + n.addClass('glow').delay(duration).queue(function(next){ + $(this).removeClass('glow');next(); + }); +} + +function highlightAnchor() +{ + var aname = $(location).attr('hash'); + var anchor = $(aname); + if (anchor.parent().attr('class')=='memItemLeft'){ + var rows = $('.memberdecls tr[class$="'+ + window.location.hash.substring(1)+'"]'); + glowEffect(rows.children(),300); // member without details + } else if (anchor.parents().slice(2).prop('tagName')=='TR') { + glowEffect(anchor.parents('div.memitem'),1000); // enum value + } else if (anchor.parent().attr('class')=='fieldtype'){ + glowEffect(anchor.parent().parent(),1000); // struct field + } else if (anchor.parent().is(":header")) { + glowEffect(anchor.parent(),1000); // section header + } else { + glowEffect(anchor.next(),1000); // normal member + } + gotoAnchor(anchor,aname,false); +} + +function selectAndHighlight(hash,n) +{ + var a; + if (hash) { + var link=stripPath($(location).attr('pathname'))+':'+hash.substring(1); + a=$('.item a[class$="'+link+'"]'); + } + if (a && a.length) { + a.parent().parent().addClass('selected'); + a.parent().parent().attr('id','selected'); + highlightAnchor(); + } else if (n) { + $(n.itemDiv).addClass('selected'); + $(n.itemDiv).attr('id','selected'); + } + if ($('#nav-tree-contents .item:first').hasClass('selected')) { + $('#nav-sync').css('top','30px'); + } else { + $('#nav-sync').css('top','5px'); + } + showRoot(); +} + +function showNode(o, node, index, hash) +{ + if (node && node.childrenData) { + if (typeof(node.childrenData)==='string') { + var varName = node.childrenData; + getScript(node.relpath+varName,function(){ + node.childrenData = getData(varName); + showNode(o,node,index,hash); + },true); + } else { + if (!node.childrenVisited) { + getNode(o, node); + } + $(node.getChildrenUL()).show(); + if (node.isLast) { + node.plus_img.src = node.relpath+"ftv2mlastnode.png"; + } else { + node.plus_img.src = node.relpath+"ftv2mnode.png"; + } + node.expanded = true; + var n = node.children[o.breadcrumbs[index]]; + if (index+11) hash = '#'+parts[1]; + else hash=''; + } + if (hash.match(/^#l\d+$/)) { + var anchor=$('a[name='+hash.substring(1)+']'); + glowEffect(anchor.parent(),1000); // line number + hash=''; // strip line number anchors + //root=root.replace(/_source\./,'.'); // source link to doc link + } + var url=root+hash; + var i=-1; + while (NAVTREEINDEX[i+1]<=url) i++; + if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath) + } else { + getScript(relpath+'navtreeindex'+i,function(){ + navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); + if (navTreeSubIndices[i]) { + gotoNode(o,i,root,hash,relpath); + } + },true); + } +} + +function showSyncOff(n,relpath) +{ + n.html(''); +} + +function showSyncOn(n,relpath) +{ + n.html(''); +} + +function toggleSyncButton(relpath) +{ + var navSync = $('#nav-sync'); + if (navSync.hasClass('sync')) { + navSync.removeClass('sync'); + showSyncOff(navSync,relpath); + storeLink(stripPath2($(location).attr('pathname'))+$(location).attr('hash')); + } else { + navSync.addClass('sync'); + showSyncOn(navSync,relpath); + deleteLink(); + } +} + +function initNavTree(toroot,relpath) +{ + var o = new Object(); + o.toroot = toroot; + o.node = new Object(); + o.node.li = document.getElementById("nav-tree-contents"); + o.node.childrenData = NAVTREE; + o.node.children = new Array(); + o.node.childrenUL = document.createElement("ul"); + o.node.getChildrenUL = function() { return o.node.childrenUL; }; + o.node.li.appendChild(o.node.childrenUL); + o.node.depth = 0; + o.node.relpath = relpath; + o.node.expanded = false; + o.node.isLast = true; + o.node.plus_img = document.createElement("img"); + o.node.plus_img.src = relpath+"ftv2pnode.png"; + o.node.plus_img.width = 16; + o.node.plus_img.height = 22; + + if (localStorageSupported()) { + var navSync = $('#nav-sync'); + if (cachedLink()) { + showSyncOff(navSync,relpath); + navSync.removeClass('sync'); + } else { + showSyncOn(navSync,relpath); + } + navSync.click(function(){ toggleSyncButton(relpath); }); + } + + navTo(o,toroot,window.location.hash,relpath); + + $(window).bind('hashchange', function(){ + if (window.location.hash && window.location.hash.length>1){ + var a; + if ($(location).attr('hash')){ + var clslink=stripPath($(location).attr('pathname'))+':'+ + $(location).attr('hash').substring(1); + a=$('.item a[class$="'+clslink+'"]'); + } + if (a==null || !$(a).parent().parent().hasClass('selected')){ + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + } + var link=stripPath2($(location).attr('pathname')); + navTo(o,link,$(location).attr('hash'),relpath); + } else if (!animationInProgress) { + $('#doc-content').scrollTop(0); + $('.item').removeClass('selected'); + $('.item').removeAttr('id'); + navTo(o,toroot,window.location.hash,relpath); + } + }) + + $(window).load(showRoot); +} + diff --git a/doc/html/navtreeindex0.js b/doc/html/navtreeindex0.js new file mode 100644 index 000000000..ab61d58d5 --- /dev/null +++ b/doc/html/navtreeindex0.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX0 = +{ +"BaseObject_8php.html":[4,0,0,6], +"Contact_8php.html":[4,0,0,12], +"Contact_8php.html#a024919623a830e8703ac4f23496dd66c":[4,0,0,12,2], +"Contact_8php.html#a228fc01f90ae9bfdde4c2ad0772bd7dc":[4,0,0,12,8], +"Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6":[4,0,0,12,7], +"Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15":[4,0,0,12,12], +"Contact_8php.html#a38daa1c210b78385307123450ca9a1fc":[4,0,0,12,11], +"Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc":[4,0,0,12,5], +"Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258":[4,0,0,12,4], +"Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960":[4,0,0,12,13], +"Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e":[4,0,0,12,6], +"Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c":[4,0,0,12,9], +"Contact_8php.html#acc12cda999c88c4d6185cca967c15125":[4,0,0,12,10], +"Contact_8php.html#ad46ff6764f12b6d3ab45c49b797f98aa":[4,0,0,12,3], +"Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5":[4,0,0,12,1], +"Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e":[4,0,0,12,0], +"ConversationObject_8php.html":[4,0,0,16], +"ItemObject_8php.html":[4,0,0,37], +"Photo_8php.html":[4,0,0,49], +"Photo_8php.html#a102f3f26f67e0e38f4322a771951c1ca":[4,0,0,49,3], +"Photo_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a":[4,0,0,49,2], +"Photo_8php.html#a7273b82b017fd96d29b2c57bab03aea6":[4,0,0,49,1], +"ProtoDriver_8php.html":[4,0,0,55], +"Scrape_8php.html":[4,0,0,58], +"Scrape_8php.html#a32883beb7dbf311fc9bfa99200a7402c":[4,0,0,58,0], +"Scrape_8php.html#aa6b0bdcf6e8f9d44e699fd94d2207c98":[4,0,0,58,1], +"__well__known_8php.html":[4,0,1,0], +"__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0":[4,0,1,0,0], +"account_8php.html":[4,0,0,0], +"account_8php.html#a014de2d5d5c9785de5bf547a485822fa":[4,0,0,0,6], +"account_8php.html#a141fe579c351c78209d425473f978eb5":[4,0,0,0,5], +"account_8php.html#a144b4891022567668375b58ea61cfff0":[4,0,0,0,4], +"account_8php.html#a43e3042b2723d76915a030bac3c668b6":[4,0,0,0,0], +"account_8php.html#a917d74aad0baf3e0c4b51cf1051e654f":[4,0,0,0,1], +"account_8php.html#aa9c29c497c17d8f9344dce8631ad8761":[4,0,0,0,7], +"account_8php.html#aaff7720423417a4333697894ffd9ddeb":[4,0,0,0,3], +"account_8php.html#ac1653efba62493b9d87513e1b6c04c83":[4,0,0,0,9], +"account_8php.html#ac5c570a2d46446bad4dd2501e9c5a4b1":[4,0,0,0,8], +"account_8php.html#ae052bd5558847bd38e89c213561a9771":[4,0,0,0,2], +"acl_8php.html":[4,0,1,1], +"acl_8php.html#a57dceff370d4a0e7ae673d50fbfda61f":[4,0,1,1,1], +"acl_8php.html#ac6776dba871806ecdb5d1659bc2eb07a":[4,0,1,1,0], +"acl__selectors_8php.html":[4,0,0,1], +"acl__selectors_8php.html#a51f2ec7a143d5a5b38e35efd5f3d6e2c":[4,0,0,1,3], +"acl__selectors_8php.html#a9476997d2968a5794f3723878ed89c91":[4,0,0,1,0], +"acl__selectors_8php.html#aa1e3bc344ca2b29f97eb9860216d21a0":[4,0,0,1,2], +"acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e":[4,0,0,1,1], +"activities_8php.html":[4,0,0,2], +"activities_8php.html#a80134e807719b3c54aba971958d2e132":[4,0,0,2,0], +"admin_8php.html":[4,0,1,2], +"admin_8php.html#a1d1362698af14d209aa3a0fb655551dd":[4,0,1,2,2], +"admin_8php.html#a233b7c8c31776b7020532003c6e44e1c":[4,0,1,2,3], +"admin_8php.html#a54128076986ba80c4a103de3fc3e19a8":[4,0,1,2,4], +"admin_8php.html#a5a696706a3869800e65fb365214241b7":[4,0,1,2,10], +"admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2":[4,0,1,2,9], +"admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade":[4,0,1,2,1], +"admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e":[4,0,1,2,5], +"admin_8php.html#ac6e95b920b5abd030cc522964987087a":[4,0,1,2,7], +"admin_8php.html#acf51f5837a7427832144c2bf7308ada3":[4,0,1,2,11], +"admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4":[4,0,1,2,13], +"admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f":[4,0,1,2,6], +"admin_8php.html#ae46311a3fefc21abc838a26e91789de6":[4,0,1,2,12], +"admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb":[4,0,1,2,8], +"admin_8php.html#af81f081851791cd15e49e8ff6722dc27":[4,0,1,2,14], +"admin_8php.html#afef415e4011607fbb665610441595015":[4,0,1,2,0], +"allfriends_8php.html":[4,0,1,3], +"allfriends_8php.html#aad992ddbb5f20e81c5cf2259718aec83":[4,0,1,3,0], +"annotated.html":[3,0], +"apps_8php.html":[4,0,1,5], +"apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c":[4,0,1,5,0], +"auth_8php.html":[4,0,0,5], +"auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee":[4,0,0,5,0], +"auth_8php.html#a0950af7c2888ca1d4743fe5d0bff9ae5":[4,0,0,5,3], +"auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a":[4,0,0,5,2], +"auth_8php.html#af8cde2fbf14abc2dd7ffa310400a59e3":[4,0,0,5,1], +"bb2diaspora_8php.html":[4,0,0,7], +"bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93":[4,0,0,7,7], +"bb2diaspora_8php.html#a26c09c218413610e62e60754c579f6c6":[4,0,0,7,2], +"bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863":[4,0,0,7,5], +"bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2":[4,0,0,7,6], +"bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c":[4,0,0,7,0], +"bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747":[4,0,0,7,8], +"bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4":[4,0,0,7,3], +"bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba":[4,0,0,7,1], +"bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc":[4,0,0,7,4], +"bbcode_8php.html":[4,0,0,8], +"bbcode_8php.html#a009f61aaf78771737ed0765c8463911b":[4,0,0,8,4], +"bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d":[4,0,0,8,3], +"bbcode_8php.html#a2be26414a367118143cc89e2d58e7377":[4,0,0,8,1], +"bbcode_8php.html#a52c45273fbb7ce5ec27094f7936856e1":[4,0,0,8,0], +"bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7":[4,0,0,8,5], +"bbcode_8php.html#a8911e027907820df3db03b4f76724b50":[4,0,0,8,2], +"boot_8php.html":[4,0,4], +"boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0":[4,0,4,117], +"boot_8php.html#a01353c9abebc3544ea080ac161729632":[4,0,4,38], +"boot_8php.html#a022cea669f9f13ef7c6268b63884c57f":[4,0,4,130], +"boot_8php.html#a02566ac9d891369a1d3ebb81a15722fc":[4,0,4,206], +"boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8":[4,0,4,53], +"boot_8php.html#a03d19251c245587de7ed959300b87bdf":[4,0,4,142], +"boot_8php.html#a0450389f24c632906fbc24347700a543":[4,0,4,49], +"boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b":[4,0,4,96], +"boot_8php.html#a081307d681d7d04f17b9ced2076e7c85":[4,0,4,1], +"boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3":[4,0,4,179], +"boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562":[4,0,4,65], +"boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a":[4,0,4,146], +"boot_8php.html#a0c59dde058efebbc66520d136cbd1631":[4,0,4,217], +"boot_8php.html#a0e57f846e6d47a308feced0f7274f178":[4,0,4,57], +"boot_8php.html#a0e6db7e365f2b041a828b93786f694bc":[4,0,4,14], +"boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5":[4,0,4,78], +"boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd":[4,0,4,75], +"boot_8php.html#a14d44d4a00223dc3db4ea962325db192":[4,0,4,172], +"boot_8php.html#a176664e78dcb9132e16be69418223eb2":[4,0,4,60], +"boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805":[4,0,4,129], +"boot_8php.html#a17cf72338b040891781a4bcbdd9a8595":[4,0,4,125], +"boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd":[4,0,4,145], +"boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2":[4,0,4,220], +"boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86":[4,0,4,149], +"boot_8php.html#a1da180f961f49a11573cac4ff6c62c05":[4,0,4,74], +"boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc":[4,0,4,189], +"boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273":[4,0,4,34], +"boot_8php.html#a1f5906598e90b5ea2b4245f682be4348":[4,0,4,100], +"boot_8php.html#a1fbb93cf030f07391f22cc2948744869":[4,0,4,134], +"boot_8php.html#a20f0eed431d25870b624b8937a07a59f":[4,0,4,165], +"boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5":[4,0,4,44], +"boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8":[4,0,4,94], +"boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f":[4,0,4,86], +"boot_8php.html#a2750985ec445617d7e82ae3098c91e3f":[4,0,4,211], +"boot_8php.html#a285732e7889fa7f333cbe431111e1029":[4,0,4,168], +"boot_8php.html#a29528a2544373cc19a378f350040c6a1":[4,0,4,80], +"boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221":[4,0,4,112], +"boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62":[4,0,4,187], +"boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3":[4,0,4,101], +"boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0":[4,0,4,164], +"boot_8php.html#a2e90096fede6acce16abf0da8cb2febe":[4,0,4,66], +"boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab":[4,0,4,71], +"boot_8php.html#a32df13fec0e43281da5979e1f5579aa8":[4,0,4,194], +"boot_8php.html#a3475ff6c2e575f946ea0ee377e944173":[4,0,4,123], +"boot_8php.html#a34c756469ebed32e2fc987bcde62d382":[4,0,4,46], +"boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49":[4,0,4,105], +"boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd":[4,0,4,136], +"boot_8php.html#a36b31575f992a10b5927b76efba9362e":[4,0,4,222], +"boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa":[4,0,4,153], +"boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955":[4,0,4,102], +"boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af":[4,0,4,221], +"boot_8php.html#a3d6d4fc5fafcc9156811669158541caf":[4,0,4,185], +"boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4":[4,0,4,12], +"boot_8php.html#a3e2ea123d29a72012db1241f96280b0e":[4,0,4,58], +"boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a":[4,0,4,51], +"boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb":[4,0,4,113], +"boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b":[4,0,4,181], +"boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e":[4,0,4,163], +"boot_8php.html#a444ce608ce34efb82ee11852f36e825f":[4,0,4,139], +"boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f":[4,0,4,69], +"boot_8php.html#a45b12aefab9675baffc7a07a09486db8":[4,0,4,215], +"boot_8php.html#a490972c02fdb638c52ec0e012a30bfd2":[4,0,4,18], +"boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47":[4,0,4,151], +"boot_8php.html#a4a12ce5de39789b0361e308d89925a20":[4,0,4,99], +"boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e":[4,0,4,150], +"boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3":[4,0,4,6], +"boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6":[4,0,4,180], +"boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115":[4,0,4,198], +"boot_8php.html#a505410c7edc5f5bb5fa227b98359793e":[4,0,4,175], +"boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa":[4,0,4,135], +"boot_8php.html#a52b599cd13e152ebc80d7e4413683195":[4,0,4,45], +"boot_8php.html#a53e4bdb6f225da55115acb9277f75e53":[4,0,4,79], +"boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209":[4,0,4,35], +"boot_8php.html#a56fd673eaa7014150297ce1162502db5":[4,0,4,167], +"boot_8php.html#a57eee7352714c004d36c26dda74af73e":[4,0,4,197], +"boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1":[4,0,4,21], +"boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434":[4,0,4,59], +"boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa":[4,0,4,157], +"boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67":[4,0,4,31], +"boot_8php.html#a5b7ce5c0a79796800883644c389dc87f":[4,0,4,42], +"boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4":[4,0,4,76], +"boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2":[4,0,4,137], +"boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640":[4,0,4,178], +"boot_8php.html#a623e49c79943f3e7bdb770d021683cf7":[4,0,4,20], +"boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5":[4,0,4,73], +"boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b":[4,0,4,33], +"boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd":[4,0,4,213], +"boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16":[4,0,4,143], +"boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322":[4,0,4,121], +"boot_8php.html#a680fbafc2db023c5b1309e0180e81315":[4,0,4,43], +"boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11":[4,0,4,124], +"boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155":[4,0,4,48], +"boot_8php.html#a6969947145a139ec374ce098224d8e81":[4,0,4,127], +"boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1":[4,0,4,204], +"boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2":[4,0,4,201], +"boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf":[4,0,4,195], +"boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd":[4,0,4,95], +"boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9":[4,0,4,87], +"boot_8php.html#a6df1102664f64b274810db85197c2755":[4,0,4,183], +"boot_8php.html#a7176c0f9f1c98421b97735d892cf6252":[4,0,4,203], +"boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6":[4,0,4,26], +"boot_8php.html#a7236b2cdcf59f02a42302e893a99013b":[4,0,4,158], +"boot_8php.html#a749144d8dd9c1366596a0213c277d050":[4,0,4,115], +"boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab":[4,0,4,70], +"boot_8php.html#a75a90b0eadd0df510f7e63210733634d":[4,0,4,2], +"boot_8php.html#a75fc600186b13c3b25e661afefb5eac8":[4,0,4,218], +"boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006":[4,0,4,4], +"boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966":[4,0,4,72], +"boot_8php.html#a781916f83fcc8ff1035649afa45f0292":[4,0,4,84], +"boot_8php.html#a78d5f284dc096b2a739c1fa47f22b7be":[4,0,4,98], +"boot_8php.html#a7a27d05ec84f9eef2f06097e6b8892f3":[4,0,4,97], +"boot_8php.html#a7aa57438db03834aaa0b468bdce773a6":[4,0,4,63], +"boot_8php.html#a7af107fab8d62b9a73801713b774ed30":[4,0,4,114], +"boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133":[4,0,4,138], +"boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3":[4,0,4,67], +"boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028":[4,0,4,140], +"boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866":[4,0,4,81], +"boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed":[4,0,4,176], +"boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8":[4,0,4,52], +"boot_8php.html#a8663f32171568489dbb2a01dd00371f8":[4,0,4,109], +"boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701":[4,0,4,156], +"boot_8php.html#a8a60cc38bb567765fd926fef70205f16":[4,0,4,92], +"boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55":[4,0,4,199], +"boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7":[4,0,4,111], +"boot_8php.html#a8da836617174eed9fc2ac8054125354b":[4,0,4,107], +"boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce":[4,0,4,202], +"boot_8php.html#a9255af5ae9c887520091ea04763c1a88":[4,0,4,29], +"boot_8php.html#a93823d15ae07548a4c49de88d325cd26":[4,0,4,128], +"boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08":[4,0,4,110], +"boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90":[4,0,4,17], +"boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b":[4,0,4,170], +"boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777":[4,0,4,200], +"boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e":[4,0,4,5], +"boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964":[4,0,4,192], +"boot_8php.html#a9d01ef178b72b145016cca1393415bc4":[4,0,4,171], +"boot_8php.html#a9eeb8989272d5ff804a616898bb13659":[4,0,4,214], +"boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f":[4,0,4,191], +"boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42":[4,0,4,159], +"boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e":[4,0,4,24], +"boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9":[4,0,4,177], +"boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6":[4,0,4,47], +"boot_8php.html#aa3679df31c8dad1b71816b0322d5baff":[4,0,4,133], +"boot_8php.html#aa4221641e5c21db69fa52c426b9017f5":[4,0,4,9], +"boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec":[4,0,4,19], +"boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2":[4,0,4,132], +"boot_8php.html#aa74438cf71e48e37bf7b440b94243985":[4,0,4,83], +"boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d":[4,0,4,89], +"boot_8php.html#aa9244fc9cc221980c07a20cc534111be":[4,0,4,196], +"boot_8php.html#aad33b494084f729b6ee3b0bc457718a1":[4,0,4,119], +"boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14":[4,0,4,64], +"boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f":[4,0,4,162], +"boot_8php.html#ab2878f40a7f3978476fcfb4c95b96806":[4,0,4,11], +"boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f":[4,0,4,104], +"boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6":[4,0,4,182], +"boot_8php.html#ab346a2ece14993861f3e4206befa94f0":[4,0,4,30], +"boot_8php.html#ab4bddb41a0cf407178ec5278b950c393":[4,0,4,155], +"boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e":[4,0,4,186] +}; diff --git a/doc/html/navtreeindex1.js b/doc/html/navtreeindex1.js new file mode 100644 index 000000000..08d4d5be6 --- /dev/null +++ b/doc/html/navtreeindex1.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX1 = +{ +"boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764":[4,0,4,103], +"boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf":[4,0,4,120], +"boot_8php.html#ab55e545b72ec8c097e052ea7d373491f":[4,0,4,39], +"boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78":[4,0,4,54], +"boot_8php.html#ab724491497ab2618b23a01d5da60aec0":[4,0,4,173], +"boot_8php.html#ab79b8b4555cae20d03f8200666d89d63":[4,0,4,7], +"boot_8php.html#ab7d65a7e7417825a4db62906bb600729":[4,0,4,91], +"boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda":[4,0,4,40], +"boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7":[4,0,4,3], +"boot_8php.html#abd7bb40da9cc073297e49736b338ca07":[4,0,4,216], +"boot_8php.html#abdcdfc873ace4e0902177bad934de0c0":[4,0,4,62], +"boot_8php.html#abedd940e664017c61b48c6efa31d0cb8":[4,0,4,90], +"boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450":[4,0,4,108], +"boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c":[4,0,4,23], +"boot_8php.html#ac195fc9003298923ea81f144388e24b1":[4,0,4,141], +"boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03":[4,0,4,88], +"boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0":[4,0,4,37], +"boot_8php.html#ac8400313df2c831653f9036f71ebd86d":[4,0,4,55], +"boot_8php.html#ac86615ddc0763a00f5311c90e991730c":[4,0,4,219], +"boot_8php.html#ac99fc4d040764eac1736bec6973556fe":[4,0,4,106], +"boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8":[4,0,4,169], +"boot_8php.html#aca47505b8732177f52bb2d647eb2741c":[4,0,4,36], +"boot_8php.html#acc4e0c910af066148b810e5fde55fff1":[4,0,4,8], +"boot_8php.html#acca19aae62e1a6951a856b945de20d67":[4,0,4,144], +"boot_8php.html#acd877c405b06b348b37b6f7e62a211e9":[4,0,4,193], +"boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3":[4,0,4,61], +"boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8":[4,0,4,131], +"boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13":[4,0,4,10], +"boot_8php.html#ad2c97627a313d53df1a1c7b4215ddb51":[4,0,4,15], +"boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f":[4,0,4,68], +"boot_8php.html#ad34c1547020a305915bcc39707744690":[4,0,4,82], +"boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44":[4,0,4,27], +"boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137":[4,0,4,188], +"boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63":[4,0,4,205], +"boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29":[4,0,4,85], +"boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272":[4,0,4,116], +"boot_8php.html#adca48aee78465ae3064ca4432c0d87b5":[4,0,4,208], +"boot_8php.html#add517a0958ac684792c62142a3877f81":[4,0,4,41], +"boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498":[4,0,4,22], +"boot_8php.html#ae37444eaa42705185080ccf3e670cbc2":[4,0,4,212], +"boot_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312":[4,0,4,16], +"boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e":[4,0,4,152], +"boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95":[4,0,4,160], +"boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c":[4,0,4,25], +"boot_8php.html#aebc5ed38c73ade57f360471da712ded2":[4,0,4,32], +"boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4":[4,0,4,190], +"boot_8php.html#aedfb9501ed408278667995524e0d15cf":[4,0,4,93], +"boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67":[4,0,4,147], +"boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d":[4,0,4,161], +"boot_8php.html#aefba06f1c0842036329033e7567ecf6d":[4,0,4,118], +"boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4":[4,0,4,28], +"boot_8php.html#af33d1b2e98a1e21af672005525d46dfe":[4,0,4,209], +"boot_8php.html#af3905ea8f8568d0236db13fca40514e3":[4,0,4,154], +"boot_8php.html#af3a4271630aabd8be592213f925d6a36":[4,0,4,56], +"boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9":[4,0,4,50], +"boot_8php.html#af489d0c3166551b93e63a79ff2c9be35":[4,0,4,122], +"boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461":[4,0,4,174], +"boot_8php.html#af86c651547aa8f9e549ee40a09455549":[4,0,4,207], +"boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d":[4,0,4,166], +"boot_8php.html#afaf93b7026f784b113b4f8921745891e":[4,0,4,148], +"boot_8php.html#afb97615e985a013799839b68b99018d7":[4,0,4,210], +"boot_8php.html#afe084c30a1810c10442edb4fbcbc0086":[4,0,4,77], +"boot_8php.html#afe63ae69ba55299f813766e54df06ede":[4,0,4,126], +"boot_8php.html#afe88b920aa285982edb817a0dd44eb37":[4,0,4,13], +"boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7":[4,0,4,184], +"cache_8php.html":[4,0,0,9], +"channel_8php.html":[4,0,1,7], +"channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1":[4,0,1,7,1], +"channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc":[4,0,1,7,2], +"channel_8php.html#aea8e189f2fbabfda779349dd94082e8e":[4,0,1,7,0], +"chanview_8php.html":[4,0,1,8], +"chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b":[4,0,1,8,0], +"classApp.html":[3,0,5], +"classApp.html#a037049cba88dfc6ff94f4b5b779e3fd3":[3,0,5,56], +"classApp.html#a050b0696118da47e8b30859ad1a2c149":[3,0,5,40], +"classApp.html#a084e03c77686d8c13390fef3f7428a2b":[3,0,5,5], +"classApp.html#a08bc87aff64f39fbc084e9d6545cee4d":[3,0,5,2], +"classApp.html#a08f0537964d98958d218066364cff785":[3,0,5,1], +"classApp.html#a0ce85be198e46570366cb3344f3c55b8":[3,0,5,50], +"classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d":[3,0,5,59], +"classApp.html#a123b903dfe5d3488cc68db3471d36fd2":[3,0,5,31], +"classApp.html#a13710907ef62554a0b4dd8a5eaa2eb11":[3,0,5,75], +"classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3":[3,0,5,32], +"classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f":[3,0,5,60], +"classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2":[3,0,5,10], +"classApp.html#a230e975296cf164da2fee35ef720964f":[3,0,5,33], +"classApp.html#a244b2d53b21be269aad2269d23192f95":[3,0,5,73], +"classApp.html#a256360c9184fed6d7556e0bc0a835d7f":[3,0,5,48], +"classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f":[3,0,5,72], +"classApp.html#a325f05bdc15d1b341044b389b21cd195":[3,0,5,30], +"classApp.html#a330410a288f3393d53772f5e98f857ea":[3,0,5,51], +"classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c":[3,0,5,64], +"classApp.html#a344d2b7dc2f276648d521aee4da1731c":[3,0,5,24], +"classApp.html#a3694aa1907aa103a2adbc71f926f0fa0":[3,0,5,55], +"classApp.html#a3d84af5e42082098672531cd1a618853":[3,0,5,23], +"classApp.html#a4659785d13e4bac0bed50dbb1b0d4299":[3,0,5,8], +"classApp.html#a4776d9322edea17fae56afa5d01a323e":[3,0,5,25], +"classApp.html#a4833bee2eae4ad1691a04fa19e11a766":[3,0,5,84], +"classApp.html#a487332f8de40414ca1a54a4265570b70":[3,0,5,79], +"classApp.html#a495ec082c2719314e536070ca1ce073d":[3,0,5,42], +"classApp.html#a4b67935096f66d1f14b657399a8461ac":[3,0,5,66], +"classApp.html#a4bdd7bfed62f50515fce652127bf481b":[3,0,5,26], +"classApp.html#a4c7cfc62d39508086cf300dc2e39c4df":[3,0,5,58], +"classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f":[3,0,5,65], +"classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be":[3,0,5,11], +"classApp.html#a557d7b779d8259027f4724ebf7b248dc":[3,0,5,29], +"classApp.html#a560189f048d3db2f526841963cc43e97":[3,0,5,27], +"classApp.html#a56b1a432c96aef8b1971f779c9d93c8c":[3,0,5,82], +"classApp.html#a57d041fcc003d08c127dfa99a02bc192":[3,0,5,71], +"classApp.html#a59dd4b665c70e7dbd80682c014ff7145":[3,0,5,61], +"classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad":[3,0,5,3], +"classApp.html#a5c83c957ada53e170901e3c025080862":[3,0,5,17], +"classApp.html#a5cfc098c061b7d765add58fd2ca97445":[3,0,5,39], +"classApp.html#a5e6a6bd641e4d9909df56f0283c03821":[3,0,5,21], +"classApp.html#a5f64620473a9727a48ebe9cf6f335a98":[3,0,5,76], +"classApp.html#a604d659d6977a99de42a160343e5289a":[3,0,5,4], +"classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2":[3,0,5,45], +"classApp.html#a622eace13f8fc9f4b5672a68e2bc4396":[3,0,5,9], +"classApp.html#a6bcb19cdc4907077da72864686d5a780":[3,0,5,67], +"classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165":[3,0,5,63], +"classApp.html#a6f55d087e1ff4710132c1b0863faa2ee":[3,0,5,47], +"classApp.html#a764cc6cd7578132c21d2b4545de9301c":[3,0,5,77], +"classApp.html#a78788f6e9d8b713b138f81e457c5cd08":[3,0,5,19], +"classApp.html#a7954862f44f606b0ff83d4c74d15e792":[3,0,5,57], +"classApp.html#a871898becd0697d778f36d9336253ae8":[3,0,5,16], +"classApp.html#a89e9feb2bfb5253883a9720beaffe876":[3,0,5,20], +"classApp.html#a91fd3c8b89016113b05f3be24805ccff":[3,0,5,81], +"classApp.html#a9632092d9e8fdaa82a9fc4586433fd31":[3,0,5,22], +"classApp.html#a98ef4cfd36693a3457c879b76bc6d694":[3,0,5,44], +"classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d":[3,0,5,62], +"classApp.html#a9e1856f714ac5755798fd7a2fa035e42":[3,0,5,15], +"classApp.html#aa5a87c46ab3fee21362c466bf78042ef":[3,0,5,85], +"classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e":[3,0,5,38], +"classApp.html#ab35b01a366a2ea95725e97af278f87ab":[3,0,5,80], +"classApp.html#ab3da757abe5cb45bf88f07cc51a73b58":[3,0,5,35], +"classApp.html#ab410451f132910773d0a02e35d0dced9":[3,0,5,6], +"classApp.html#ab47de68fa39806d1fb0976407e188b77":[3,0,5,69], +"classApp.html#abaf2173711e861ae4aebf43a7f70157e":[3,0,5,7], +"classApp.html#abe0e4fa91097f7a6588e1213a834121c":[3,0,5,37], +"classApp.html#abea5a4f77dcd53c928dc4eed86616637":[3,0,5,18], +"classApp.html#ac1a8b2cd40609b231a560201a08852ba":[3,0,5,52], +"classApp.html#ac1d80a14492acc932715d54567d8a589":[3,0,5,46], +"classApp.html#ac6e6b1c7d6df408580ff79977fcfa656":[3,0,5,54], +"classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88":[3,0,5,43], +"classApp.html#acad5896b7a79ae31433ad8f89606c728":[3,0,5,68], +"classApp.html#acb27e607fe4c82603444676e25c36b70":[3,0,5,13], +"classApp.html#ad082d63acc078e5bf23825a03bdd6a76":[3,0,5,74], +"classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0":[3,0,5,41], +"classApp.html#ad2eff1f9335d607846e39e8c63b88b51":[3,0,5,14], +"classApp.html#ad5175536561021548ae8188e24c7b80c":[3,0,5,36], +"classApp.html#adb060d5c7f35a521ec7ec0effbe08097":[3,0,5,28], +"classApp.html#adb5a4bb657881e553978ff390babd01f":[3,0,5,12], +"classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8":[3,0,5,83], +"classApp.html#ae3f47830543d0d902f66913def8db66b":[3,0,5,53], +"classApp.html#ae9f96338f32187d308b67b980eea0008":[3,0,5,70], +"classApp.html#aeca29fd4f7192ca07369b3c598c36e67":[3,0,5,78], +"classApp.html#af5007c42a693afd9c4899c243b2e1363":[3,0,5,49], +"classApp.html#af58db526040829b1c8bd95561b329262":[3,0,5,34], +"classApp.html#af6d39f63fb7116bbeb04e51696f99474":[3,0,5,0], +"classBaseObject.html":[3,0,6], +"classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2":[3,0,6,0], +"classCache.html":[3,0,7], +"classConversation.html":[3,0,8], +"classConversation.html#a2a96b7a6573ae53db861624659e831cb":[3,0,8,4], +"classConversation.html#a2f12724ef0244e9049fe1bb9641b516d":[3,0,8,11], +"classConversation.html#a41f4a549e6a99f98935c4742addd22c8":[3,0,8,12], +"classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8":[3,0,8,5], +"classConversation.html#a5879199008b96bee7550b576d614e1c1":[3,0,8,7], +"classConversation.html#a5effe8ad3007e01333df44b81432b813":[3,0,8,3], +"classConversation.html#a66f121ca4026246f86a732e5faa0682c":[3,0,8,8], +"classConversation.html#a6b064d00c56a6b7dec359d4348711c84":[3,0,8,0], +"classConversation.html#a8335cdd43f1836e3c255638e61a09e16":[3,0,8,1], +"classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd":[3,0,8,2], +"classConversation.html#adf25ce023b69a166c63c6e84e02c136a":[3,0,8,6], +"classConversation.html#ae81221251307e315f566a11f921ce0a9":[3,0,8,13], +"classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae":[3,0,8,10], +"classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a":[3,0,8,9], +"classFKOAuth1.html":[3,0,11], +"classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f":[3,0,11,1], +"classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6":[3,0,11,0], +"classFKOAuthDataStore.html":[3,0,12], +"classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1":[3,0,12,1], +"classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050":[3,0,12,5], +"classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934":[3,0,12,4], +"classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599":[3,0,12,2], +"classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab":[3,0,12,3], +"classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819":[3,0,12,0], +"classFriendicaSmarty.html":[3,0,13], +"classFriendicaSmarty.html#a33fabbd4d6eef869df496adf357ae690":[3,0,13,2], +"classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9":[3,0,13,1], +"classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6":[3,0,13,0], +"classItem.html":[3,0,14], +"classItem.html#a007424e3e3171dcfb4312a02161da6cd":[3,0,14,33], +"classItem.html#a078f95b4134ce3a1df344cf8d386f986":[3,0,14,37], +"classItem.html#a0c301aaed2b7d682728d18db3a22afa3":[3,0,14,8], +"classItem.html#a1a1e42877e6ac7af50286142ceb483d2":[3,0,14,39], +"classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2":[3,0,14,42], +"classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2":[3,0,14,0], +"classItem.html#a2ce70ef63f9f4d86a09c351678806925":[3,0,14,25], +"classItem.html#a379c8a156da092ad0be90a0d2fec3c0f":[3,0,14,35], +"classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf":[3,0,14,6], +"classItem.html#a428f448f89a8629055ea3294eb942aea":[3,0,14,16], +"classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8":[3,0,14,44], +"classItem.html#a4b92e3a9d6212c553aa2661489bd95d8":[3,0,14,15], +"classItem.html#a5b2fafdca55aefeaa08993a5a60529f0":[3,0,14,20], +"classItem.html#a5b561415861f5b89b0733aacfe0428d1":[3,0,14,40], +"classItem.html#a5cfa6cf964f433a917a81cab079ff9d8":[3,0,14,43], +"classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189":[3,0,14,45], +"classItem.html#a632185dd25c5caf277067c76230a4320":[3,0,14,4], +"classItem.html#a67892aa23d19f4431bb2e5f43c74000e":[3,0,14,12], +"classItem.html#a7f7bc059de377319282cb4ef4a828480":[3,0,14,41], +"classItem.html#a80dcd0fb7673776c0967839d429c2a0f":[3,0,14,30], +"classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51":[3,0,14,1], +"classItem.html#a904421c7a427411bb2ab473bca872f63":[3,0,14,7], +"classItem.html#a90743c8348b13213275c223bb9333aa0":[3,0,14,31], +"classItem.html#a9594df6014b0b6f45364ea7a34510130":[3,0,14,36], +"classItem.html#a97c7feeea7f26a73176cb19faa455e12":[3,0,14,22], +"classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7":[3,0,14,28], +"classItem.html#a99253fb1ca6f430a0b181689ef206861":[3,0,14,24], +"classItem.html#a9f2d219da712390f59012fc32a342074":[3,0,14,14], +"classItem.html#aa0ee775ec94abccec6c798428835d001":[3,0,14,5], +"classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304":[3,0,14,32], +"classItem.html#aa452b5bcd8dea12119b09212c615cb41":[3,0,14,26], +"classItem.html#aa49e40f961dff66da32c5ae110e32993":[3,0,14,21], +"classItem.html#aa541bc4290e51bfd688d6921bebabc73":[3,0,14,13], +"classItem.html#aa8b1bbc4236890694635295e46d7fd72":[3,0,14,27], +"classItem.html#aabf87ded59c25b5fe2b2296678e70509":[3,0,14,23], +"classItem.html#aba23a0a9d89e316d2b343cc46d695d91":[3,0,14,17], +"classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8":[3,0,14,2], +"classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967":[3,0,14,19], +"classItem.html#ac0f27e58532612f6e7a54c8a621b9b92":[3,0,14,11], +"classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c":[3,0,14,10], +"classItem.html#aca1e66988ed00cd627b2a359b72cd0ae":[3,0,14,3], +"classItem.html#acc32426c0f465391be8a99ad810c7b8e":[3,0,14,29], +"classItem.html#ad3638f93065693c1f69eb349feb1b7aa":[3,0,14,9], +"classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8":[3,0,14,18], +"classItem.html#aec24e233f9098f902b1e57e60dcb2019":[3,0,14,34], +"classItem.html#af514e893765deda92125ce84024d3ad5":[3,0,14,46], +"classItem.html#afa54851df82962c7c42dea3cc9f5c92c":[3,0,14,38], +"classPhoto.html":[3,0,15], +"classPhoto.html#a040b23beaab0c0db4311b31cae6b8106":[3,0,15,22], +"classPhoto.html#a080a5219eb09c2621dabeae153ce6a03":[3,0,15,17], +"classPhoto.html#a0906cba2a2a895cc22179de27449cbd2":[3,0,15,1], +"classPhoto.html#a15e21237805d5f1019b4e40322389194":[3,0,15,19], +"classPhoto.html#a1f00f0e1b6d90c5d83d8d3febb703075":[3,0,15,4], +"classPhoto.html#a29213571e2688f17240cd2b3892d7a62":[3,0,15,7], +"classPhoto.html#a2b05906daa294e0c904aff0ba24b5bd3":[3,0,15,20], +"classPhoto.html#a32ff09cd464a48bc8e510a1403410753":[3,0,15,13], +"classPhoto.html#a338d80512bdfeb6a6a00a9381d76de5f":[3,0,15,24], +"classPhoto.html#a4ace266825f6b2bbc3c7f990f5d92500":[3,0,15,2] +}; diff --git a/doc/html/navtreeindex2.js b/doc/html/navtreeindex2.js new file mode 100644 index 000000000..4d377796d --- /dev/null +++ b/doc/html/navtreeindex2.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX2 = +{ +"classPhoto.html#a4ff11117ada771637a61a668d2af6636":[3,0,15,16], +"classPhoto.html#a50e0b85ea8a3f724dd74366756669e61":[3,0,15,25], +"classPhoto.html#a66705cd7db1f8dce59ceac57dbf14476":[3,0,15,12], +"classPhoto.html#a735eb657277e7a46cebe7f6fde0af80a":[3,0,15,18], +"classPhoto.html#a74a04f56215cee00533b85b24daecfb1":[3,0,15,9], +"classPhoto.html#a7acd95a0380f95999dd069fbb5629ea5":[3,0,15,3], +"classPhoto.html#a7c4be19101d5a289a491428c2f8d747c":[3,0,15,10], +"classPhoto.html#a8b2b0a7f949a566c21e0160fbf047666":[3,0,15,14], +"classPhoto.html#aa09af89979e3e46c0c58989ee063d69d":[3,0,15,21], +"classPhoto.html#ab83e29500828ead47ac0a8cb9439082c":[3,0,15,6], +"classPhoto.html#abad44c9fc7a1853920555398bf905433":[3,0,15,11], +"classPhoto.html#ad06199e7c1222350ef8c1cdcfade265c":[3,0,15,0], +"classPhoto.html#ad17537abe440ac133c3b2d951f92677b":[3,0,15,8], +"classPhoto.html#ade61db6eb69c065e4df66feaa1942d29":[3,0,15,5], +"classPhoto.html#af18778643b1f6c637d9d7f5abd561f11":[3,0,15,26], +"classPhoto.html#af522871c8ab451155b9745fa7f057943":[3,0,15,15], +"classPhoto.html#af87e8ec7587bbcb28f91e7548f560695":[3,0,15,23], +"classProtoDriver.html":[3,0,16], +"classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a":[3,0,16,0], +"classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d":[3,0,16,2], +"classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67":[3,0,16,1], +"classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337":[3,0,16,6], +"classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b":[3,0,16,4], +"classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181":[3,0,16,5], +"classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b":[3,0,16,3], +"classTemplate.html":[3,0,17], +"classTemplate.html#a285b5b2007dbbf733476273df3fed4ef":[3,0,17,11], +"classTemplate.html#a317d535946dc065c35dd5cd38380e6c6":[3,0,17,20], +"classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7":[3,0,17,2], +"classTemplate.html#a37c15f6d1ade500943629f27a62808b7":[3,0,17,3], +"classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e":[3,0,17,6], +"classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10":[3,0,17,19], +"classTemplate.html#a6f0efc256688c36110180b501067ff11":[3,0,17,21], +"classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38":[3,0,17,13], +"classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677":[3,0,17,9], +"classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1":[3,0,17,17], +"classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29":[3,0,17,4], +"classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee":[3,0,17,10], +"classTemplate.html#aac9a4638f11271e1b1dcc9f247242718":[3,0,17,18], +"classTemplate.html#aae9c4d761ea1298e745e8052d7910194":[3,0,17,1], +"classTemplate.html#abbc484016ddf5d818f55b823cae6feb0":[3,0,17,12], +"classTemplate.html#abda4c8d049f70553338eae7c905e9d5c":[3,0,17,15], +"classTemplate.html#abf71098c80fd1f218a59452b3408309e":[3,0,17,7], +"classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4":[3,0,17,0], +"classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8":[3,0,17,16], +"classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228":[3,0,17,8], +"classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934":[3,0,17,5], +"classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a":[3,0,17,14], +"classZotDriver.html":[3,0,18], +"classZotDriver.html#a2e15ff09772f0608203dad1c98299394":[3,0,18,3], +"classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2":[3,0,18,0], +"classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514":[3,0,18,6], +"classZotDriver.html#a6776935156accb0f170e2e24577133db":[3,0,18,1], +"classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f":[3,0,18,4], +"classZotDriver.html#af65febb26031eb7f39871b9e2a539797":[3,0,18,2], +"classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6":[3,0,18,5], +"classdba.html":[3,0,9], +"classdba.html#a0060c8611e3c3ee71049904ad028a695":[3,0,9,5], +"classdba.html#a066ce6eab1282c9220ac4652ac2dbd27":[3,0,9,4], +"classdba.html#a2c6fecf396c66e07f00276fc18d31ca7":[3,0,9,2], +"classdba.html#a4da56b3eb82ad26ba49ca5f97e1490cb":[3,0,9,8], +"classdba.html#a522329687ff042074c1cbc8bd3226d2f":[3,0,9,3], +"classdba.html#a6a1471c18c6530044d20db5d3532958b":[3,0,9,9], +"classdba.html#a986eb5c3bbd4c70801a9ddd2f8e5c561":[3,0,9,6], +"classdba.html#aa36df91d776eedd1b90b9518a610d9fb":[3,0,9,0], +"classdba.html#ab57b3a4399f22ce5cdafbd3cd542a414":[3,0,9,7], +"classdba.html#ab5dcbd758d3f8fb84702c323cd85067e":[3,0,9,10], +"classdba.html#ac25853e4d454aec9cfead4814429550d":[3,0,9,1], +"classenotify.html":[3,0,10], +"classes.html":[3,1], +"cli__startup_8php.html":[4,0,0,10], +"cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b":[4,0,0,10,0], +"common_8php.html":[4,0,1,9], +"common_8php.html#a3b12ec67b3d3edcf595c8d195da5d14a":[4,0,1,9,0], +"common_8php.html#ab63408f39abef7a6915186e8dabc5a96":[4,0,1,9,1], +"common_8php.html#aca62f113655809f41f49042ce9b123c2":[4,0,1,9,2], +"community_8php.html":[4,0,1,10], +"community_8php.html#a1197aafd6a6b540dbb4a0c04ade3a25a":[4,0,1,10,0], +"community_8php.html#a56c94ec978a38633c5628fa6f8e386d9":[4,0,1,10,1], +"connections_8php.html":[4,0,1,11], +"connections_8php.html#a1224058db8e3fb56463eb312f98e561d":[4,0,1,11,3], +"connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558":[4,0,1,11,2], +"connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c":[4,0,1,11,1], +"connections_8php.html#af48f7ad20914760ba9874c090384e35a":[4,0,1,11,0], +"contact__selectors_8php.html":[4,0,0,13], +"contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f":[4,0,0,13,0], +"contact__selectors_8php.html#aba7a4db18efa41d78bed1076b2d59886":[4,0,0,13,1], +"contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be":[4,0,0,13,3], +"contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53":[4,0,0,13,2], +"contact__widgets_8php.html":[4,0,0,14], +"contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353":[4,0,0,14,0], +"contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b":[4,0,0,14,2], +"contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65":[4,0,0,14,1], +"contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6":[4,0,0,14,3], +"contact__widgets_8php.html#af24e693532a045954caab515942cfc6f":[4,0,0,14,4], +"contactgroup_8php.html":[4,0,1,12], +"contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3":[4,0,1,12,0], +"conversation_8php.html":[4,0,0,15], +"conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3":[4,0,0,15,5], +"conversation_8php.html#a32e7750ae6adbfdd1f227f6e89221ce3":[4,0,0,15,1], +"conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2":[4,0,0,15,9], +"conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c":[4,0,0,15,8], +"conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3":[4,0,0,15,15], +"conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67":[4,0,0,15,6], +"conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0":[4,0,0,15,13], +"conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11":[4,0,0,15,11], +"conversation_8php.html#ab2383dff4f823e580399ff469d90ab19":[4,0,0,15,3], +"conversation_8php.html#abed85a41f1160598de880b84021c9cf7":[4,0,0,15,2], +"conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d":[4,0,0,15,12], +"conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b":[4,0,0,15,0], +"conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6":[4,0,0,15,4], +"conversation_8php.html#ae996eb116d397a2c6396c312d7b98664":[4,0,0,15,10], +"conversation_8php.html#aedf008b9eac87f693d7dcc1a01404d85":[4,0,0,15,14], +"conversation_8php.html#afea815dd1768e8417d2b30be53e9e0b4":[4,0,0,15,7], +"crepair_8php.html":[4,0,1,13], +"crepair_8php.html#a29464c01838e209c8059cfcd2d195caa":[4,0,1,13,0], +"crepair_8php.html#ab089978e50df156bbfabf9f8f5ccd198":[4,0,1,13,1], +"crepair_8php.html#acc4493e1ffd1462a605dd9b870034513":[4,0,1,13,2], +"cronhooks_8php.html":[4,0,0,17], +"cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca":[4,0,0,17,0], +"crypto_8php.html":[4,0,0,18], +"crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2":[4,0,0,18,14], +"crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286":[4,0,0,18,2], +"crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287":[4,0,0,18,15], +"crypto_8php.html#a3398666e184faf8e516c8e5d91de86eb":[4,0,0,18,12], +"crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8":[4,0,0,18,10], +"crypto_8php.html#a573f02517abe4ac9241268263063b2a0":[4,0,0,18,7], +"crypto_8php.html#a5c61821d205f95f127114159cbffa764":[4,0,0,18,1], +"crypto_8php.html#a630e1574554f34e7c38511585d9e71a2":[4,0,0,18,4], +"crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c":[4,0,0,18,9], +"crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26":[4,0,0,18,18], +"crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5":[4,0,0,18,11], +"crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5":[4,0,0,18,19], +"crypto_8php.html#a920e5f222d0020f47556033d8b2b6552":[4,0,0,18,16], +"crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a":[4,0,0,18,8], +"crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96":[4,0,0,18,17], +"crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9":[4,0,0,18,0], +"crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85":[4,0,0,18,13], +"crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914":[4,0,0,18,3], +"crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839":[4,0,0,18,5], +"crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85":[4,0,0,18,6], +"datetime_8php.html":[4,0,0,19], +"datetime_8php.html#a03900dcf0f9e3c58793a031673a70326":[4,0,0,19,6], +"datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1":[4,0,0,19,11], +"datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8":[4,0,0,19,5], +"datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa":[4,0,0,19,3], +"datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f":[4,0,0,19,10], +"datetime_8php.html#a7df24d72ea05922d3127363e2295174c":[4,0,0,19,7], +"datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82":[4,0,0,19,9], +"datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865":[4,0,0,19,12], +"datetime_8php.html#aba971b67f17fecf050813f1eba72367f":[4,0,0,19,8], +"datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df":[4,0,0,19,0], +"datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8":[4,0,0,19,2], +"datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226":[4,0,0,19,4], +"datetime_8php.html#aea356409ba69f9de412298c998595dd2":[4,0,0,19,1], +"db__update_8php.html":[4,0,2,1], +"db__update_8php.html#a1fa3127fc82f96b1436d871ef02be319":[4,0,2,1,2], +"db__update_8php.html#a502b15db084ae270b52e03c8075916de":[4,0,2,1,1], +"db__update_8php.html#a7714b111b644017933931ec69a154102":[4,0,2,1,3], +"db__update_8php.html#acebf83966ef6d7e5645a6b62ba368f9f":[4,0,2,1,0], +"dba_8php.html":[4,0,0,20], +"dba_8php.html#a2c09a731d3b4fef41fed0e83db01be1f":[4,0,0,20,7], +"dba_8php.html#a55bf30d8176967e682656b5be4ad9249":[4,0,0,20,6], +"dba_8php.html#a65b83462bd26968106aebd43f16540e4":[4,0,0,20,2], +"dba_8php.html#aa377074e70981e8c4e82ca0accd068ee":[4,0,0,20,5], +"dba_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb":[4,0,0,20,4], +"dba_8php.html#ab222aa1dbf9ea93b320f82028739127e":[4,0,0,20,1], +"dba_8php.html#af531546fac5f0836a8557a4f6dfee930":[4,0,0,20,3], +"default_8php.html":[4,0,3,0,0], +"default_8php.html#a23bc1996b18e69c1a3ab44536613a762":[4,0,3,0,0,0], +"delegate_8php.html":[4,0,1,14], +"delegate_8php.html#a943eea8996ef348eb845c498f9f354dd":[4,0,1,14,0], +"deliver_8php.html":[4,0,0,21], +"deliver_8php.html#a397afcb9afecf0c1816b0951189dd346":[4,0,0,21,0], +"dir_032dd9e2cfe278a2cfa5eb9547448eb9.html":[4,0,3,1,0,0], +"dir_0eaa4a0adae8ba4811e133c6e594aeee.html":[4,0,2,0], +"dir_23ec12649285f9fabf3a6b7380226c28.html":[4,0,2], +"dir_55dbaf9b7b53c4fc605c9011743a7353.html":[4,0,3,1,0], +"dir_817f6d302394b98e59575acdb59998bc.html":[4,0,3,0], +"dir_8543001e5d25368a6edede3e63efb554.html":[4,0,3,1], +"dir_8e4ceba158be32034f698ffd6810bb05.html":[4,0,3,1,1], +"dir_955ae6074e6c84afe72925e364242b14.html":[4,0,3,1,1,0], +"dir__fns_8php.html":[4,0,0,22], +"dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a":[4,0,0,22,1], +"dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d":[4,0,0,22,0], +"dir_b2f003339c516cc00c8cadcafbe82f13.html":[4,0,3], +"dir_d41ce877eb409a4791b288730010abe2.html":[4,0,1], +"dir_d44c64559bbebec7f509842c48db8b23.html":[4,0,0], +"dirfind_8php.html":[4,0,1,16], +"dirfind_8php.html#ac689a812c84f161b3a0d42349f83981c":[4,0,1,16,1], +"dirfind_8php.html#af22b0283f928c4c32e62248a5ae67cee":[4,0,1,16,0], +"dirsearch_8php.html":[4,0,1,17], +"dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752":[4,0,1,17,1], +"dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c":[4,0,1,17,0], +"display_8php.html":[4,0,1,18], +"display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0":[4,0,1,18,0], +"docblox__errorchecker_8php.html":[4,0,2,2], +"docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62":[4,0,2,2,3], +"docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec":[4,0,2,2,2], +"docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b":[4,0,2,2,0], +"docblox__errorchecker_8php.html#a49a8a4009b02e49717caa88b128affc5":[4,0,2,2,8], +"docblox__errorchecker_8php.html#a648a570b0f9f6e0e51b7267647c4b09b":[4,0,2,2,5], +"docblox__errorchecker_8php.html#a721c6ff80a6d3e4ad4ffa52a04c60085":[4,0,2,2,9], +"docblox__errorchecker_8php.html#a83018d9153d17d91fbcf3bc10158d34f":[4,0,2,2,6], +"docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73":[4,0,2,2,7], +"docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6":[4,0,2,2,4], +"docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f":[4,0,2,2,1], +"docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d":[4,0,2,2,10], +"editpost_8php.html":[4,0,1,19], +"editpost_8php.html#a34011690864d122680c802e9e748ccfb":[4,0,1,19,0], +"enotify_8php.html":[4,0,0,24], +"enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc":[4,0,0,24,1], +"event_8php.html":[4,0,0,25], +"event_8php.html#a018ea4484910a873a7c1eaa126de9b1a":[4,0,0,25,6], +"event_8php.html#a180cccd63c2a2f00ff432b03113531f3":[4,0,0,25,0], +"event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279":[4,0,0,25,1], +"event_8php.html#a2ac9f1b08de03250ecd794f705781d17":[4,0,0,25,5], +"event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850":[4,0,0,25,2], +"event_8php.html#a89ef533faf345db8d64a58d4856bde3a":[4,0,0,25,3], +"event_8php.html#abb74206cf42d694307c3d7abb7af9869":[4,0,0,25,4], +"events_8php.html":[4,0,1,20], +"events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec":[4,0,1,20,0], +"events_8php.html#ab3e8a8f901175f8e40a8089eea45c075":[4,0,1,20,1], +"expire_8php.html":[4,0,0,26], +"expire_8php.html#a444e45c9b67727b27db4c779fd51a298":[4,0,0,26,0], +"extract_8php.html":[4,0,2,3], +"extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44":[4,0,2,3,3], +"extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634":[4,0,2,3,2], +"extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb":[4,0,2,3,0], +"extract_8php.html#a9590b15215a21e9b42eb546aeef79704":[4,0,2,3,1], +"fbrowser_8php.html":[4,0,1,21], +"fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4":[4,0,1,21,0], +"fcontact_8php.html":[4,0,0,27], +"fcontact_8php.html#a4512592814dc7883b57bf01ac33353f6":[4,0,0,27,1], +"fcontact_8php.html#a4ce1d8d444c938790e0d50e003d04a15":[4,0,0,27,0], +"features_8php.html":[4,0,0,28], +"features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0":[4,0,0,28,0], +"features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c":[4,0,0,28,1], +"feed_8php.html":[4,0,1,22], +"feed_8php.html#af86137700b56f33d1d5f25c8dec22c04":[4,0,1,22,0], +"filer_8php.html":[4,0,1,23], +"filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274":[4,0,1,23,0], +"filerm_8php.html":[4,0,1,24], +"filerm_8php.html#ae2eb28d2054fa2c37e38689882172208":[4,0,1,24,0], +"files.html":[4,0], +"fpostit_8php.html":[4,0,2,0,0], +"fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443":[4,0,2,0,0,0], +"fpostit_8php.html#a501b5ca82f287509fc691c88524064c1":[4,0,2,0,0,1], +"friendica-to-smarty-tpl_8py.html":[4,0,2,4], +"friendica-to-smarty-tpl_8py.html#a005c1b7a69cac31fad72a941974ba7bb":[4,0,2,4,11] +}; diff --git a/doc/html/navtreeindex3.js b/doc/html/navtreeindex3.js new file mode 100644 index 000000000..9bd52e51c --- /dev/null +++ b/doc/html/navtreeindex3.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX3 = +{ +"friendica-to-smarty-tpl_8py.html#a0b4cf73d1a8d201a28d269eeb62a5d5c":[4,0,2,4,8], +"friendica-to-smarty-tpl_8py.html#a3719dd46e286a57d315e6adae1845854":[4,0,2,4,1], +"friendica-to-smarty-tpl_8py.html#a38503e37fe68ac27c88cce91a9ac9efa":[4,0,2,4,0], +"friendica-to-smarty-tpl_8py.html#a5dfc21ab8282dda8e3a7dff43cd0e283":[4,0,2,4,13], +"friendica-to-smarty-tpl_8py.html#a5f9bf7a67d955c0d6be70a82097611c5":[4,0,2,4,6], +"friendica-to-smarty-tpl_8py.html#a68d15934660cd1f4301ce251b1646f09":[4,0,2,4,12], +"friendica-to-smarty-tpl_8py.html#a8540514fb7c4aa18ad2dffa2a975036b":[4,0,2,4,14], +"friendica-to-smarty-tpl_8py.html#a87182a9bab47640428bd0b2b9946bef9":[4,0,2,4,10], +"friendica-to-smarty-tpl_8py.html#a89388ea9b2826e8218ed480e917d8105":[4,0,2,4,2], +"friendica-to-smarty-tpl_8py.html#a965e1d6d6293654a56e029a7e454dec7":[4,0,2,4,5], +"friendica-to-smarty-tpl_8py.html#ad9ef87ccb2c9960501f5e02424a22d80":[4,0,2,4,9], +"friendica-to-smarty-tpl_8py.html#ae74419b16516956c66f7db714a93a6ac":[4,0,2,4,7], +"friendica-to-smarty-tpl_8py.html#aecf730e0884bb4ddc6c0deb1ef85f8eb":[4,0,2,4,4], +"friendica-to-smarty-tpl_8py.html#af6b2c793958aae2aadc294577431f749":[4,0,2,4,3], +"friendica__smarty_8php.html":[4,0,0,30], +"fsuggest_8php.html":[4,0,1,26], +"fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d":[4,0,1,26,1], +"fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998":[4,0,1,26,0], +"full_8php.html":[4,0,3,0,1], +"full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db":[4,0,3,0,1,0], +"functions.html":[3,3,0], +"functions.html":[3,3,0,0], +"functions_0x5f.html":[3,3,0,1], +"functions_0x61.html":[3,3,0,2], +"functions_0x62.html":[3,3,0,3], +"functions_0x63.html":[3,3,0,4], +"functions_0x64.html":[3,3,0,5], +"functions_0x65.html":[3,3,0,6], +"functions_0x66.html":[3,3,0,7], +"functions_0x67.html":[3,3,0,8], +"functions_0x69.html":[3,3,0,9], +"functions_0x6c.html":[3,3,0,10], +"functions_0x6e.html":[3,3,0,11], +"functions_0x6f.html":[3,3,0,12], +"functions_0x70.html":[3,3,0,13], +"functions_0x71.html":[3,3,0,14], +"functions_0x72.html":[3,3,0,15], +"functions_0x73.html":[3,3,0,16], +"functions_0x76.html":[3,3,0,17], +"functions_func.html":[3,3,1], +"functions_vars.html":[3,3,2], +"globals.html":[4,1,0], +"globals.html":[4,1,0,0], +"globals_0x5f.html":[4,1,0,1], +"globals_0x61.html":[4,1,0,2], +"globals_0x62.html":[4,1,0,3], +"globals_0x63.html":[4,1,0,4], +"globals_0x64.html":[4,1,0,5], +"globals_0x65.html":[4,1,0,6], +"globals_0x66.html":[4,1,0,7], +"globals_0x67.html":[4,1,0,8], +"globals_0x68.html":[4,1,0,9], +"globals_0x69.html":[4,1,0,10], +"globals_0x6a.html":[4,1,0,11], +"globals_0x6b.html":[4,1,0,12], +"globals_0x6c.html":[4,1,0,13], +"globals_0x6d.html":[4,1,0,14], +"globals_0x6e.html":[4,1,0,15], +"globals_0x6f.html":[4,1,0,16], +"globals_0x70.html":[4,1,0,17], +"globals_0x71.html":[4,1,0,18], +"globals_0x72.html":[4,1,0,19], +"globals_0x73.html":[4,1,0,20], +"globals_0x74.html":[4,1,0,21], +"globals_0x75.html":[4,1,0,22], +"globals_0x76.html":[4,1,0,23], +"globals_0x77.html":[4,1,0,24], +"globals_0x78.html":[4,1,0,25], +"globals_0x7a.html":[4,1,0,26], +"globals_func.html":[4,1,1,0], +"globals_func.html":[4,1,1], +"globals_func_0x61.html":[4,1,1,1], +"globals_func_0x62.html":[4,1,1,2], +"globals_func_0x63.html":[4,1,1,3], +"globals_func_0x64.html":[4,1,1,4], +"globals_func_0x65.html":[4,1,1,5], +"globals_func_0x66.html":[4,1,1,6], +"globals_func_0x67.html":[4,1,1,7], +"globals_func_0x68.html":[4,1,1,8], +"globals_func_0x69.html":[4,1,1,9], +"globals_func_0x6a.html":[4,1,1,10], +"globals_func_0x6b.html":[4,1,1,11], +"globals_func_0x6c.html":[4,1,1,12], +"globals_func_0x6d.html":[4,1,1,13], +"globals_func_0x6e.html":[4,1,1,14], +"globals_func_0x6f.html":[4,1,1,15], +"globals_func_0x70.html":[4,1,1,16], +"globals_func_0x71.html":[4,1,1,17], +"globals_func_0x72.html":[4,1,1,18], +"globals_func_0x73.html":[4,1,1,19], +"globals_func_0x74.html":[4,1,1,20], +"globals_func_0x75.html":[4,1,1,21], +"globals_func_0x76.html":[4,1,1,22], +"globals_func_0x77.html":[4,1,1,23], +"globals_func_0x78.html":[4,1,1,24], +"globals_func_0x7a.html":[4,1,1,25], +"globals_vars.html":[4,1,2,0], +"globals_vars.html":[4,1,2], +"globals_vars_0x61.html":[4,1,2,1], +"globals_vars_0x63.html":[4,1,2,2], +"globals_vars_0x64.html":[4,1,2,3], +"globals_vars_0x65.html":[4,1,2,4], +"globals_vars_0x66.html":[4,1,2,5], +"globals_vars_0x67.html":[4,1,2,6], +"globals_vars_0x68.html":[4,1,2,7], +"globals_vars_0x69.html":[4,1,2,8], +"globals_vars_0x6a.html":[4,1,2,9], +"globals_vars_0x6b.html":[4,1,2,10], +"globals_vars_0x6c.html":[4,1,2,11], +"globals_vars_0x6d.html":[4,1,2,12], +"globals_vars_0x6e.html":[4,1,2,13], +"globals_vars_0x70.html":[4,1,2,14], +"globals_vars_0x72.html":[4,1,2,15], +"globals_vars_0x73.html":[4,1,2,16], +"globals_vars_0x74.html":[4,1,2,17], +"globals_vars_0x75.html":[4,1,2,18], +"globals_vars_0x77.html":[4,1,2,19], +"globals_vars_0x78.html":[4,1,2,20], +"globals_vars_0x7a.html":[4,1,2,21], +"gprobe_8php.html":[4,0,0,31], +"gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1":[4,0,0,31,0], +"hcard_8php.html":[4,0,1,28], +"hcard_8php.html#a956c7cae2009652a37900306e5b7b73d":[4,0,1,28,0], +"hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d":[4,0,1,28,1], +"help_8php.html":[4,0,1,29], +"help_8php.html#af055e15f600ffa6fbca9386fdf715224":[4,0,1,29,0], +"hierarchy.html":[3,2], +"home_8php.html":[4,0,1,30], +"hostxrd_8php.html":[4,0,1,31], +"hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92":[4,0,1,31,0], +"html2bbcode_8php.html":[4,0,0,33], +"html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7":[4,0,0,33,3], +"html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837":[4,0,0,33,1], +"html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2":[4,0,0,33,0], +"html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8":[4,0,0,33,2], +"html2plain_8php.html":[4,0,0,34], +"html2plain_8php.html#a3214912e3d00cf0a948072daccf16740":[4,0,0,34,0], +"html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0":[4,0,0,34,3], +"html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04":[4,0,0,34,2], +"html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201":[4,0,0,34,1], +"identity_8php.html":[4,0,0,35], +"identity_8php.html#a345f4c943d84de502ec6e72d2c813945":[4,0,0,35,0], +"identity_8php.html#a3570a4eb77332b292d394c4132cb8f03":[4,0,0,35,1], +"identity_8php.html#a77ee7d66eb0758f7e7882f70ad0f9485":[4,0,0,35,2], +"identity_8php.html#a78151baf4407a8482d2681a91a9c486b":[4,0,0,35,4], +"identity_8php.html#ac9fcd5c4c371998790b5c55c3d0f4633":[4,0,0,35,3], +"identity_8php.html#af2802bc13a00a17b867bba7978ba8f58":[4,0,0,35,5], +"import_8php.html":[4,0,1,32], +"import_8php.html#af17fef0410518f7eac205d0ea416eaa2":[4,0,1,32,1], +"import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184":[4,0,1,32,0], +"include_2api_8php.html":[4,0,0,3], +"include_2api_8php.html#a0991f72554f821255397d615e76f3203":[4,0,0,3,10], +"include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5":[4,0,0,3,4], +"include_2api_8php.html#a18cab7c6391df5c421753463f5d2a879":[4,0,0,3,16], +"include_2api_8php.html#a2c71b1226ef1283b5370bd1c200fee5f":[4,0,0,3,13], +"include_2api_8php.html#a2e94eab9d6c164bfef7a1b2ab87b339b":[4,0,0,3,0], +"include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283":[4,0,0,3,41], +"include_2api_8php.html#a36344c80b8e9755da2f2dd3a0e28cce8":[4,0,0,3,14], +"include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e":[4,0,0,3,46], +"include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95":[4,0,0,3,35], +"include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea":[4,0,0,3,17], +"include_2api_8php.html#a528d8070ee74ea800102936ce73cf366":[4,0,0,3,34], +"include_2api_8php.html#a53b0680b682ae6078f2e1ed18cfb3f74":[4,0,0,3,19], +"include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d":[4,0,0,3,11], +"include_2api_8php.html#a5990101034e7abf6404feba3cd273629":[4,0,0,3,3], +"include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08":[4,0,0,3,42], +"include_2api_8php.html#a645397787618b5c548a31e8686e8cca4":[4,0,0,3,29], +"include_2api_8php.html#a6951c690d87775eb37e569c66011988e":[4,0,0,3,32], +"include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f":[4,0,0,3,28], +"include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5":[4,0,0,3,7], +"include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad":[4,0,0,3,2], +"include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d":[4,0,0,3,43], +"include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e":[4,0,0,3,36], +"include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3":[4,0,0,3,8], +"include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705":[4,0,0,3,6], +"include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410":[4,0,0,3,31], +"include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3":[4,0,0,3,26], +"include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa":[4,0,0,3,21], +"include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1":[4,0,0,3,23], +"include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d":[4,0,0,3,48], +"include_2api_8php.html#ab1ecb58954f722444bfe03233345cb1b":[4,0,0,3,15], +"include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76":[4,0,0,3,45], +"include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a":[4,0,0,3,27], +"include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23":[4,0,0,3,22], +"include_2api_8php.html#acafd2899309a005fcb725289173dc7fe":[4,0,0,3,20], +"include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22":[4,0,0,3,37], +"include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2":[4,0,0,3,9], +"include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4":[4,0,0,3,30], +"include_2api_8php.html#ad4d1634df6b35126552324683caaffa2":[4,0,0,3,40], +"include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e":[4,0,0,3,33], +"include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53":[4,0,0,3,12], +"include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8":[4,0,0,3,38], +"include_2api_8php.html#ae82608c317421f27446465aa6724733d":[4,0,0,3,18], +"include_2api_8php.html#ae8f5863e18d69421005c71441c9d99a5":[4,0,0,3,1], +"include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25":[4,0,0,3,5], +"include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8":[4,0,0,3,47], +"include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63":[4,0,0,3,39], +"include_2api_8php.html#afb99daa6b731bf497b81f2128084852c":[4,0,0,3,44], +"include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73":[4,0,0,3,24], +"include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0":[4,0,0,3,25], +"include_2attach_8php.html":[4,0,0,4], +"include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36":[4,0,0,4,0], +"include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d":[4,0,0,4,3], +"include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a":[4,0,0,4,5], +"include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f":[4,0,0,4,4], +"include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3":[4,0,0,4,2], +"include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932":[4,0,0,4,1], +"include_2config_8php.html":[4,0,0,11], +"include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1":[4,0,0,11,4], +"include_2config_8php.html#a549910227348003efc3c05c9105c42da":[4,0,0,11,0], +"include_2config_8php.html#a5d19130818ea4c6b8726ab62cd989c15":[4,0,0,11,2], +"include_2config_8php.html#a61591371cb18764138655d67dc817ab2":[4,0,0,11,7], +"include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941":[4,0,0,11,1], +"include_2config_8php.html#ab012f852866a0aff9b5180daffa454f5":[4,0,0,11,5], +"include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad":[4,0,0,11,3], +"include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a":[4,0,0,11,6], +"include_2directory_8php.html":[4,0,0,23], +"include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0":[4,0,0,23,0], +"include_2follow_8php.html":[4,0,0,29], +"include_2follow_8php.html#a6553a7650fae55f95660510d90983144":[4,0,0,29,0], +"include_2group_8php.html":[4,0,0,32], +"include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b":[4,0,0,32,2], +"include_2group_8php.html#a048f6892bfd28852de1b76470df411de":[4,0,0,32,9], +"include_2group_8php.html#a0a515d42ec78aa0066aac4c278ead5b0":[4,0,0,32,1], +"include_2group_8php.html#a1042d74055bafe54a6a30103d87a7f17":[4,0,0,32,7], +"include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345":[4,0,0,32,0], +"include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5":[4,0,0,32,5], +"include_2group_8php.html#a540e3ef36f47d47532646be4241f6518":[4,0,0,32,6], +"include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09":[4,0,0,32,4], +"include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f":[4,0,0,32,10], +"include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb":[4,0,0,32,3], +"include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f":[4,0,0,32,8], +"include_2message_8php.html":[4,0,0,40], +"include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091":[4,0,0,40,2], +"include_2message_8php.html#a5f8de9847e203329e317ac38dc646898":[4,0,0,40,1], +"include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e":[4,0,0,40,3], +"include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd":[4,0,0,40,4], +"include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1":[4,0,0,40,0], +"include_2network_8php.html":[4,0,0,42], +"include_2network_8php.html#a0bdc4b0bfc54797c249dc4eca25aeda4":[4,0,0,42,0], +"include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0":[4,0,0,42,6], +"include_2network_8php.html#a2729d012410e470c527a62a3f777ded8":[4,0,0,42,10], +"include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6":[4,0,0,42,15], +"include_2network_8php.html#a37ddeb88a3fd1dee9e8339723f9edf9a":[4,0,0,42,8], +"include_2network_8php.html#a4c5d50079e089168d9248427018fffd4":[4,0,0,42,13], +"include_2network_8php.html#a540420ff3675a72cb781ef9a7e8c2cd9":[4,0,0,42,5], +"include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2":[4,0,0,42,19], +"include_2network_8php.html#a6259181fec4d36722d1e91ac6210e876":[4,0,0,42,25], +"include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7":[4,0,0,42,11], +"include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5":[4,0,0,42,20] +}; diff --git a/doc/html/navtreeindex4.js b/doc/html/navtreeindex4.js new file mode 100644 index 000000000..e75aaffe6 --- /dev/null +++ b/doc/html/navtreeindex4.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX4 = +{ +"include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d":[4,0,0,42,9], +"include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02":[4,0,0,42,18], +"include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0":[4,0,0,42,7], +"include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff":[4,0,0,42,22], +"include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6":[4,0,0,42,23], +"include_2network_8php.html#aa44d9e33a579d930e9e79c4ebb3d6b5e":[4,0,0,42,16], +"include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37":[4,0,0,42,24], +"include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7":[4,0,0,42,3], +"include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694":[4,0,0,42,1], +"include_2network_8php.html#abed1d466435a12b6a4dd7aa4a05e5ba9":[4,0,0,42,12], +"include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246":[4,0,0,42,4], +"include_2network_8php.html#adbc7fe45cc7fd9cd78f6b2f425ee9041":[4,0,0,42,14], +"include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335":[4,0,0,42,21], +"include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f":[4,0,0,42,17], +"include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7":[4,0,0,42,2], +"include_2notify_8php.html":[4,0,0,44], +"include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3":[4,0,0,44,0], +"include_2oembed_8php.html":[4,0,0,46], +"include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172":[4,0,0,46,5], +"include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0":[4,0,0,46,7], +"include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487":[4,0,0,46,1], +"include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3":[4,0,0,46,4], +"include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2":[4,0,0,46,3], +"include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a":[4,0,0,46,6], +"include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319":[4,0,0,46,0], +"include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2":[4,0,0,46,2], +"include_2photos_8php.html":[4,0,0,50], +"include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109":[4,0,0,50,0], +"include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe":[4,0,0,50,2], +"include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35":[4,0,0,50,1], +"include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab":[4,0,0,50,3], +"include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274":[4,0,0,50,6], +"include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9":[4,0,0,50,5], +"include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979":[4,0,0,50,4], +"index.html":[], +"intro_8php.html":[4,0,1,33], +"intro_8php.html#a3e2a523697633ddb4517b9266a515f5b":[4,0,1,33,1], +"intro_8php.html#abc3abf25da64f98f215126eb08c7936b":[4,0,1,33,0], +"intro_8php.html#af3681062183ccbdf065ae2647b07d6f1":[4,0,1,33,2], +"invite_8php.html":[4,0,1,34], +"invite_8php.html#a244385b28cfd021d308715f01158bfd9":[4,0,1,34,0], +"invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5":[4,0,1,34,1], +"iquery_8php.html":[4,0,0,36], +"iquery_8php.html#aa41c07bf856eb8b386430cc53d80d4ac":[4,0,0,36,0], +"item_8php.html":[4,0,1,35], +"item_8php.html#a3daae7944f737bd30412a0d042207c0f":[4,0,1,35,0], +"item_8php.html#a693cd09805755ab85bbb5ecae69a48c3":[4,0,1,35,4], +"item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221":[4,0,1,35,3], +"item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10":[4,0,1,35,1], +"item_8php.html#abd0e603a6696051af16476eb968d52e7":[4,0,1,35,2], +"items_8php.html":[4,0,0,38], +"items_8php.html#a004e89d86b0f29b2c4da20108ecc4091":[4,0,0,38,51], +"items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70":[4,0,0,38,4], +"items_8php.html#a0790a4550b829e85504af548623002ca":[4,0,0,38,5], +"items_8php.html#a079e099e15d88d47aeb6ca6d60da7107":[4,0,0,38,31], +"items_8php.html#a09d425596b9f8663472cf7474ad36d96":[4,0,0,38,35], +"items_8php.html#a0cf98bb619f07dd18f602683a55a5f59":[4,0,0,38,23], +"items_8php.html#a1f747db2277904f85ac7b9e64c024e4e":[4,0,0,38,50], +"items_8php.html#a251343637ff40a50cca93452cd530c26":[4,0,0,38,30], +"items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6":[4,0,0,38,3], +"items_8php.html#a2b56a4c01bd22a648d52ec9af1a04259":[4,0,0,38,11], +"items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7":[4,0,0,38,19], +"items_8php.html#a36e656667193c83aa2cc03a024fc131b":[4,0,0,38,0], +"items_8php.html#a3a218d5e8ffbe261f773225ecded86a2":[4,0,0,38,40], +"items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361":[4,0,0,38,28], +"items_8php.html#a53eb3d27e1c55083be93a32f392d54e7":[4,0,0,38,43], +"items_8php.html#a566c601726697e044e75284af7fb6f17":[4,0,0,38,18], +"items_8php.html#a56b2a4abcadfac71175cd50555528cc3":[4,0,0,38,10], +"items_8php.html#a59abb61d7581dc6592257ef022cbfada":[4,0,0,38,26], +"items_8php.html#a5f690fc2484abec07840b4f9dd525bd9":[4,0,0,38,16], +"items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7":[4,0,0,38,36], +"items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55":[4,0,0,38,14], +"items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc":[4,0,0,38,34], +"items_8php.html#a77051724d1784074ff187e73a4db93fe":[4,0,0,38,32], +"items_8php.html#a77da7ce9a117601d49ac4a67c71b514f":[4,0,0,38,41], +"items_8php.html#a82955cc578f0fa600acec84475026194":[4,0,0,38,15], +"items_8php.html#a8395d189a36abfa0dfff81a2b0e70669":[4,0,0,38,12], +"items_8php.html#a8794863cdf8ce1333040933d3a3f66bd":[4,0,0,38,9], +"items_8php.html#a88c6cf7649ac836fbbed82a7a0315110":[4,0,0,38,49], +"items_8php.html#a896c1809d58f2d7a42cfe14577958ddf":[4,0,0,38,25], +"items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049":[4,0,0,38,37], +"items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8":[4,0,0,38,8], +"items_8php.html#a94ddb1d6c8fa21dd7433677e85168037":[4,0,0,38,29], +"items_8php.html#aa579bc4445d60098b1410961ca8e96b7":[4,0,0,38,7], +"items_8php.html#aa723c0571e314a1853a24c5854b4f54f":[4,0,0,38,20], +"items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee":[4,0,0,38,6], +"items_8php.html#aab9c6bae4c40799867596bdaae9829fd":[4,0,0,38,27], +"items_8php.html#aab9e0c58247427126de0699c729c3b6c":[4,0,0,38,46], +"items_8php.html#ab1bce4261bcf75ad62753b498a144d17":[4,0,0,38,47], +"items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87":[4,0,0,38,24], +"items_8php.html#abe695dd89e1e10ed042c26b80114f0ed":[4,0,0,38,44], +"items_8php.html#abf7a1b73eb352d79acd36309b0dababd":[4,0,0,38,1], +"items_8php.html#ac1fcf621dce7370515b420a7753f4726":[4,0,0,38,42], +"items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a":[4,0,0,38,17], +"items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0":[4,0,0,38,45], +"items_8php.html#ad34827ed330898456783fb14c7b46154":[4,0,0,38,48], +"items_8php.html#adc8bda87ba08626f2a8cde7748d1bdae":[4,0,0,38,2], +"items_8php.html#ade53043e7bc5ab9cc9ef1e4fed6569d4":[4,0,0,38,39], +"items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9":[4,0,0,38,22], +"items_8php.html#ae1c27d1a6379231ac7c0435c8a791d45":[4,0,0,38,38], +"items_8php.html#ae73794179b62d39bb597ff670ab1c1e5":[4,0,0,38,33], +"items_8php.html#afa1db13c2a8b73b5b17b97f17e5a19d1":[4,0,0,38,13], +"items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67":[4,0,0,38,21], +"language_8php.html":[4,0,0,39], +"language_8php.html#a2b07ec591277aaae57e4d03a12c929b7":[4,0,0,39,0], +"language_8php.html#a78bd204955ec4cc3a9ac651285a1689d":[4,0,0,39,2], +"language_8php.html#ac9142ef1d01a235c760deb0f16643f5a":[4,0,0,39,3], +"language_8php.html#afc07168c25fb662579a52923daa10ee1":[4,0,0,39,1], +"like_8php.html":[4,0,1,36], +"like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538":[4,0,1,36,0], +"lockview_8php.html":[4,0,1,37], +"lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44":[4,0,1,37,0], +"login_8php.html":[4,0,1,38], +"login_8php.html#a1d69ca88eb9005a7026e128b9a645904":[4,0,1,38,0], +"lostpass_8php.html":[4,0,1,39], +"lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3":[4,0,1,39,0], +"lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc":[4,0,1,39,1], +"magic_8php.html":[4,0,1,40], +"magic_8php.html#acea2cc792849ca2d71d4b689f66518bf":[4,0,1,40,0], +"manage_8php.html":[4,0,1,41], +"manage_8php.html#a2bca247b5296827638959138367db4f5":[4,0,1,41,0], +"match_8php.html":[4,0,1,42], +"match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d":[4,0,1,42,0], +"md_config.html":[0], +"md_fresh.html":[1], +"minimal_8php.html":[4,0,3,0,2], +"mod_2api_8php.html":[4,0,1,4], +"mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117":[4,0,1,4,2], +"mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d":[4,0,1,4,0], +"mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2":[4,0,1,4,1], +"mod_2attach_8php.html":[4,0,1,6], +"mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1":[4,0,1,6,0], +"mod_2directory_8php.html":[4,0,1,15], +"mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf":[4,0,1,15,2], +"mod_2directory_8php.html#aa1d928543212871491706216742dd73c":[4,0,1,15,0], +"mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44":[4,0,1,15,1], +"mod_2follow_8php.html":[4,0,1,25], +"mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a":[4,0,1,25,0], +"mod_2group_8php.html":[4,0,1,27], +"mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83":[4,0,1,27,1], +"mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c":[4,0,1,27,0], +"mod_2group_8php.html#aed1f009b1221348021bb34761160ef35":[4,0,1,27,2], +"mod_2message_8php.html":[4,0,1,43], +"mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718":[4,0,1,43,2], +"mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79":[4,0,1,43,1], +"mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7":[4,0,1,43,0], +"mod_2network_8php.html":[4,0,1,46], +"mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec":[4,0,1,46,1], +"mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad":[4,0,1,46,3], +"mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4":[4,0,1,46,0], +"mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666":[4,0,1,46,2], +"mod_2notify_8php.html":[4,0,1,50], +"mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae":[4,0,1,50,1], +"mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3":[4,0,1,50,0], +"mod_2oembed_8php.html":[4,0,1,51], +"mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014":[4,0,1,51,0], +"mod_2photos_8php.html":[4,0,1,57], +"mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080":[4,0,1,57,2], +"mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812":[4,0,1,57,0], +"mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014":[4,0,1,57,1], +"mod__import_8php.html":[4,0,3,0,3], +"mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb":[4,0,3,0,3,0], +"mod__new__channel_8php.html":[4,0,3,0,4], +"mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb":[4,0,3,0,4,0], +"mod__register_8php.html":[4,0,3,0,5], +"mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb":[4,0,3,0,5,0], +"mood_8php.html":[4,0,1,44], +"mood_8php.html#a721b9b6703b3234a005641c92d409b8f":[4,0,1,44,0], +"mood_8php.html#a7ae136dd7476865b4828136175db5022":[4,0,1,44,1], +"msearch_8php.html":[4,0,1,45], +"msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8":[4,0,1,45,0], +"namespaceFriendica.html":[3,0,1], +"namespaceFriendica.html":[2,0,1], +"namespaceacl__selectors.html":[3,0,0], +"namespaceacl__selectors.html":[2,0,0], +"namespacefriendica-to-smarty-tpl.html":[2,0,2], +"namespacefriendica-to-smarty-tpl.html":[3,0,2], +"namespacemembers.html":[2,1,0], +"namespacemembers_func.html":[2,1,1], +"namespacemembers_vars.html":[2,1,2], +"namespaces.html":[2,0], +"namespaceupdatetpl.html":[3,0,3], +"namespaceupdatetpl.html":[2,0,3], +"namespaceutil.html":[2,0,4], +"namespaceutil.html":[3,0,4], +"nav_8php.html":[4,0,0,41], +"nav_8php.html#a43be0df73b90647ea70947ce004e231e":[4,0,0,41,0], +"nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a":[4,0,0,41,1], +"new__channel_8php.html":[4,0,1,47], +"new__channel_8php.html#a180b0646957db8290482f02454ad7f23":[4,0,1,47,2], +"new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164":[4,0,1,47,1], +"new__channel_8php.html#ae585191610f79da129492482ce8e2fee":[4,0,1,47,0], +"nogroup_8php.html":[4,0,1,48], +"nogroup_8php.html#a099cb353bf62e8453069ce107b763212":[4,0,1,48,1], +"nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30":[4,0,1,48,0], +"notifications_8php.html":[4,0,1,49], +"notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33":[4,0,1,49,1], +"notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62":[4,0,1,49,0], +"notifier_8php.html":[4,0,0,43], +"notifier_8php.html#a568c502f626cff95e344c0748938b85d":[4,0,0,43,0], +"oauth_8php.html":[4,0,0,45], +"oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16":[4,0,0,45,3], +"oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6":[4,0,0,45,2], +"oexchange_8php.html":[4,0,1,52], +"oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26":[4,0,1,52,0], +"oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59":[4,0,1,52,1], +"onepoll_8php.html":[4,0,0,47], +"onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d":[4,0,0,47,0], +"opensearch_8php.html":[4,0,1,53], +"opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9":[4,0,1,53,0], +"page_8php.html":[4,0,1,54], +"page_8php.html#a91a5f649f68406149108bded1dc90b22":[4,0,1,54,0], +"pages.html":[], +"parse__url_8php.html":[4,0,1,55], +"parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b":[4,0,1,55,2], +"parse__url_8php.html#a25635549f2c22955d72465f4d2e58993":[4,0,1,55,3], +"parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a":[4,0,1,55,1], +"parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868":[4,0,1,55,0], +"permissions_8php.html":[4,0,0,48], +"permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972":[4,0,0,48,2], +"permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7":[4,0,0,48,0], +"permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835":[4,0,0,48,3], +"permissions_8php.html#aeca9b280f3dc3358c89976d81d690008":[4,0,0,48,1], +"photo_8php.html":[4,0,1,56], +"photo_8php.html#a582779d24882b0d31ee909a91d70a448":[4,0,1,56,0], +"php2po_8php.html":[4,0,2,5], +"php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b":[4,0,2,5,7], +"php2po_8php.html#a401d84ce156e49e8168bd0c4781e1be1":[4,0,2,5,5], +"php2po_8php.html#a45b05625748f412ec97afcd61cf7980b":[4,0,2,5,6], +"php2po_8php.html#a48cb304902320d173a4eaa41543327b9":[4,0,2,5,3], +"php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214":[4,0,2,5,0], +"php2po_8php.html#a6b0b8ebd9ce811d1325ef2c129443bc0":[4,0,2,5,1], +"php2po_8php.html#abbb0e5fd8fbc1f13a9bf68f86eb3d2a4":[4,0,2,5,4], +"php2po_8php.html#ad6726cfaa85d4b8299d2b0f034cbf178":[4,0,2,5,2], +"ping_8php.html":[4,0,1,58], +"ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1":[4,0,1,58,0], +"plugin_8php.html":[4,0,0,51], +"plugin_8php.html#a030cec6793b909c439c0336ba39b1571":[4,0,0,51,7], +"plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a":[4,0,0,51,3], +"plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040":[4,0,0,51,11], +"plugin_8php.html#a516591850f4fd49fd1425cfa54089db8":[4,0,0,51,4], +"plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1":[4,0,0,51,6], +"plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2":[4,0,0,51,9], +"plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d":[4,0,0,51,10], +"plugin_8php.html#a888a4c565cf06eb86ffc67131e5f19e0":[4,0,0,51,2], +"plugin_8php.html#a901657dd078e070516cf97285e0bada7":[4,0,0,51,12], +"plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6":[4,0,0,51,0], +"plugin_8php.html#a905b54e10704b283ac64680a8abc0971":[4,0,0,51,8], +"plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f":[4,0,0,51,1], +"plugin_8php.html#af92789f559b89a380e49d303218aeeca":[4,0,0,51,5] +}; diff --git a/doc/html/navtreeindex5.js b/doc/html/navtreeindex5.js new file mode 100644 index 000000000..b0e1ad828 --- /dev/null +++ b/doc/html/navtreeindex5.js @@ -0,0 +1,253 @@ +var NAVTREEINDEX5 = +{ +"po2php_8php.html":[4,0,2,6], +"po2php_8php.html#a3b75e36f913198299e99559b175cd8b4":[4,0,2,6,0], +"poco_8php.html":[4,0,1,59], +"poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498":[4,0,1,59,0], +"poke_8php.html":[4,0,1,60], +"poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b":[4,0,1,60,1], +"poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993":[4,0,1,60,0], +"poller_8php.html":[4,0,0,52], +"poller_8php.html#a5f12df3a4738124b6c039971e87e76da":[4,0,0,52,0], +"post_8php.html":[4,0,1,61], +"post_8php.html#af4b48181ce773ef0cdfc972441445c34":[4,0,1,61,0], +"post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75":[4,0,1,61,1], +"pretheme_8php.html":[4,0,1,62], +"pretheme_8php.html#af5660943ee99db5fd75182316522eafe":[4,0,1,62,0], +"probe_8php.html":[4,0,1,63], +"probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99":[4,0,1,63,0], +"profile_8php.html":[4,0,1,64], +"profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e":[4,0,1,64,0], +"profile_8php.html#a3775cf6eef6587e5143133356a7b76c0":[4,0,1,64,1], +"profile_8php.html#ab5d0246be0552e2182a585c1206d22a5":[4,0,1,64,2], +"profile__advanced_8php.html":[4,0,0,53], +"profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4":[4,0,0,53,0], +"profile__photo_8php.html":[4,0,1,65], +"profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02":[4,0,1,65,1], +"profile__photo_8php.html#a4b80234074bd603221aa5364f330e479":[4,0,1,65,2], +"profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3":[4,0,1,65,0], +"profile__selectors_8php.html":[4,0,0,54], +"profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7":[4,0,0,54,2], +"profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798":[4,0,0,54,1], +"profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355":[4,0,0,54,0], +"profiles_8php.html":[4,0,1,66], +"profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c":[4,0,1,66,0], +"profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e":[4,0,1,66,2], +"profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00":[4,0,1,66,1], +"profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04":[4,0,1,66,3], +"profperm_8php.html":[4,0,1,67], +"profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6":[4,0,1,67,2], +"profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc":[4,0,1,67,0], +"profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023":[4,0,1,67,1], +"qsearch_8php.html":[4,0,1,68], +"qsearch_8php.html#a0501887b95bd8fa21018b2936a668894":[4,0,1,68,0], +"queue_8php.html":[4,0,0,56], +"queue_8php.html#af8c93de86d866c3200174c8450a0f341":[4,0,0,56,0], +"queue__fn_8php.html":[4,0,0,57], +"queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1":[4,0,0,57,1], +"queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24":[4,0,0,57,0], +"randprof_8php.html":[4,0,1,69], +"randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090":[4,0,1,69,0], +"redbasic_2php_2theme_8php.html":[4,0,3,1,0,0,2], +"redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b":[4,0,3,1,0,0,2,0], +"redir_8php.html":[4,0,1,70], +"redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5":[4,0,1,70,0], +"register_8php.html":[4,0,1,71], +"register_8php.html#a0e91f57f111407ea8d3223a05022bb2a":[4,0,1,71,0], +"register_8php.html#a51731dcc1917c58a790eb1c0f6132271":[4,0,1,71,2], +"register_8php.html#ae20c0cd40f738d6295de58b9202c83d5":[4,0,1,71,1], +"regmod_8php.html":[4,0,1,72], +"regmod_8php.html#a7953df4e32e63946565e90cdd5d50409":[4,0,1,72,0], +"removeme_8php.html":[4,0,1,73], +"removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c":[4,0,1,73,0], +"removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88":[4,0,1,73,1], +"rmagic_8php.html":[4,0,1,74], +"rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef":[4,0,1,74,0], +"rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f":[4,0,1,74,2], +"rmagic_8php.html#a95455edd43f1bff39446a57388cdde16":[4,0,1,74,1], +"rsd__xml_8php.html":[4,0,1,75], +"rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82":[4,0,1,75,0], +"search_8php.html":[4,0,1,76], +"search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7":[4,0,1,76,2], +"search_8php.html#a9f726b45d369bd7f94f5be4d0c99636f":[4,0,1,76,0], +"search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6":[4,0,1,76,3], +"search_8php.html#acf19fd30f07f495781ca0d7a0a08b435":[4,0,1,76,1], +"search__ac_8php.html":[4,0,1,77], +"search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138":[4,0,1,77,0], +"security_8php.html":[4,0,0,59], +"security_8php.html#a20f8b9851f23ee8894b8925584ef6821":[4,0,0,59,2], +"security_8php.html#a444ac867dfa8c37cf0a7a226412bee28":[4,0,0,59,4], +"security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433":[4,0,0,59,5], +"security_8php.html#a8d23d2597aae380a3341872fe9513380":[4,0,0,59,1], +"security_8php.html#a9355488460ab11d6058656ff919e5cf9":[4,0,0,59,7], +"security_8php.html#a9c6180e82150a5a9af91a1255d096b5c":[4,0,0,59,3], +"security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01":[4,0,0,59,9], +"security_8php.html#acd06ef411116115c2f0a92633700db8a":[4,0,0,59,6], +"security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733":[4,0,0,59,0], +"security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809":[4,0,0,59,10], +"security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f":[4,0,0,59,8], +"session_8php.html":[4,0,0,60], +"session_8php.html#a5bf3e03ff4c47e26374e28dfd12f4897":[4,0,0,60,0], +"session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb":[4,0,0,60,1], +"session_8php.html#af0100a2642a5268594bbd5742a03d885":[4,0,0,60,2], +"settings_8php.html":[4,0,1,78], +"settings_8php.html#a39abc76ff5459c57e3b957664f273f18":[4,0,1,78,0], +"settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586":[4,0,1,78,2], +"settings_8php.html#ae5aebccb006bee1300078576baaf5582":[4,0,1,78,1], +"setup_8php.html":[4,0,1,79], +"setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4":[4,0,1,79,2], +"setup_8php.html#a13cf286774149a0a7bd8adb8179cec75":[4,0,1,79,13], +"setup_8php.html#a14d208682a88632290c895d20da6e7d6":[4,0,1,79,5], +"setup_8php.html#a267555abd17290e659b4bf44b885e4e0":[4,0,1,79,12], +"setup_8php.html#a2b375ddc555140236fc500135de99371":[4,0,1,79,9], +"setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f":[4,0,1,79,3], +"setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e":[4,0,1,79,1], +"setup_8php.html#a8652788e8589778c5f81634a9d5b9429":[4,0,1,79,7], +"setup_8php.html#a88247384a96e14516f474d7af6a465c1":[4,0,1,79,11], +"setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76":[4,0,1,79,4], +"setup_8php.html#abe405d227ba7232971964a706d4f3bce":[4,0,1,79,10], +"setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a":[4,0,1,79,8], +"setup_8php.html#addb24714bc2542aa4f4215e98fe48432":[4,0,1,79,15], +"setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1":[4,0,1,79,0], +"setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58":[4,0,1,79,14], +"setup_8php.html#afd8b0b3ade1507c45325caf377bf459d":[4,0,1,79,6], +"share_8php.html":[4,0,1,80], +"share_8php.html#afeb26046bdd02567ecd29ab5f188b249":[4,0,1,80,0], +"siteinfo_8php.html":[4,0,1,81], +"siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0":[4,0,1,81,1], +"siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656":[4,0,1,81,0], +"smilies_8php.html":[4,0,1,82], +"smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f":[4,0,1,82,0], +"socgraph_8php.html":[4,0,0,61], +"socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586":[4,0,0,61,0], +"socgraph_8php.html#a790690bb1a1d02483fe31632a160144d":[4,0,0,61,8], +"socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918":[4,0,0,61,1], +"socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84":[4,0,0,61,4], +"socgraph_8php.html#aab445ff14a151fda2efbabde65faf134":[4,0,0,61,7], +"socgraph_8php.html#aad9ee2421fd1ca405b241e8ed72d9aca":[4,0,0,61,6], +"socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9":[4,0,0,61,2], +"socgraph_8php.html#af175807406d94407a5e11742a3287746":[4,0,0,61,5], +"socgraph_8php.html#af29d056beec10b4e38e5209c92452894":[4,0,0,61,3], +"starred_8php.html":[4,0,1,83], +"starred_8php.html#a63024fb418c678e49fd535e3752d349a":[4,0,1,83,0], +"style_8php.html":[4,0,3,1,0,0,1], +"style_8php.html#a02d39b683a42fffbb27823d3860283bd":[4,0,3,1,0,0,1,13], +"style_8php.html#a03a72942b7428fd9af1224770d20a8ba":[4,0,3,1,0,0,1,5], +"style_8php.html#a0a473a25349f07563d6c56d14031f02a":[4,0,3,1,0,0,1,16], +"style_8php.html#a0b942d36d8862908864e2ffa4521be70":[4,0,3,1,0,0,1,12], +"style_8php.html#a232513bf4339fe34908c4c63cb93168b":[4,0,3,1,0,0,1,4], +"style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab":[4,0,3,1,0,0,1,0], +"style_8php.html#a4131d1765ee4deb28e83fc4527943ee0":[4,0,3,1,0,0,1,2], +"style_8php.html#a45e6fafa363bc4586fa91dce1786be4f":[4,0,3,1,0,0,1,15], +"style_8php.html#a6628a80911a6b37b464ef110ac8f6e42":[4,0,3,1,0,0,1,3], +"style_8php.html#a8749837e08dfb3372662af9c33fa2a2e":[4,0,3,1,0,0,1,14], +"style_8php.html#a938168352fd3cdaa1c10c16a34f5938a":[4,0,3,1,0,0,1,8], +"style_8php.html#aa658152b727ea1233f6df6ded6437dad":[4,0,3,1,0,0,1,1], +"style_8php.html#acb3046ad9c01b7d60cde20f58d77c548":[4,0,3,1,0,0,1,11], +"style_8php.html#acc190405dda0a23a80551dee11c74c0c":[4,0,3,1,0,0,1,6], +"style_8php.html#adcfa918e05b5a98cbddc84bc3f1c15cc":[4,0,3,1,0,0,1,10], +"style_8php.html#addf42c3d02e53f8e4153f3bb9dabfcda":[4,0,3,1,0,0,1,9], +"style_8php.html#aef266cfcb27c6ddb3292584c945bab33":[4,0,3,1,0,0,1,7], +"subthread_8php.html":[4,0,1,84], +"subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3":[4,0,1,84,0], +"suggest_8php.html":[4,0,1,85], +"suggest_8php.html#a58748a8235d4523f8333847f3e42dd91":[4,0,1,85,0], +"suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c":[4,0,1,85,1], +"system__unavailable_8php.html":[4,0,0,62], +"system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa":[4,0,0,62,0], +"tagger_8php.html":[4,0,1,86], +"tagger_8php.html#a0e4a3eb177d1684553c547503d67161c":[4,0,1,86,0], +"tagrm_8php.html":[4,0,1,87], +"tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78":[4,0,1,87,1], +"tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a":[4,0,1,87,0], +"template__processor_8php.html":[4,0,0,63], +"template__processor_8php.html#a3d44ea1cbbc9bc72aad8436186c4866e":[4,0,0,63,3], +"template__processor_8php.html#a797745996c7839a93b2ab1af456631ab":[4,0,0,63,4], +"template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5":[4,0,0,63,1], +"template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e":[4,0,0,63,2], +"test_2php_2theme_8php.html":[4,0,3,1,1,0,0], +"test_2php_2theme_8php.html#ad4235a22a5389b2291cdee55677e3cc5":[4,0,3,1,1,0,0,0], +"test_2php_2theme_8php.html#ae74b5c3ec259b616b5137f6cfc591fb5":[4,0,3,1,1,0,0,1], +"test_8php.html":[4,0,1,88], +"test_8php.html#aaff133c1f566a332b5a3ae41b70941f8":[4,0,1,88,0], +"text_8php.html":[4,0,0,64], +"text_8php.html#a070384ec000fd65043fce11d5392d241":[4,0,0,64,2], +"text_8php.html#a08df5164926d2b31b8e9fcfe919de2b6":[4,0,0,64,9], +"text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3":[4,0,0,64,7], +"text_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1":[4,0,0,64,24], +"text_8php.html#a13286f8a95d2de6b102966ecc270c8d6":[4,0,0,64,1], +"text_8php.html#a138a3a611fa7f4f3630674145fc826bf":[4,0,0,64,25], +"text_8php.html#a149372f9167903c31d4cdb9e81ac0d19":[4,0,0,64,20], +"text_8php.html#a1557112a774ec00fa06ed6b6f6495506":[4,0,0,64,27], +"text_8php.html#a163b5131f388080b0fc82398d3a32fe1":[4,0,0,64,11], +"text_8php.html#a1e510c53624933ce9b7d6715784894db":[4,0,0,64,31], +"text_8php.html#a24b2b69b9162da789ab6514e0e09a37c":[4,0,0,64,48], +"text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6":[4,0,0,64,32], +"text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728":[4,0,0,64,30], +"text_8php.html#a2e8d6c402603be3a1256a16605e09c2a":[4,0,0,64,6], +"text_8php.html#a2ffd79c60cc87cec24ef76447b905187":[4,0,0,64,50], +"text_8php.html#a30311fd46e05be0e2cc466118641a4ed":[4,0,0,64,14], +"text_8php.html#a3299482ac20e9d79453048dd52881d37":[4,0,0,64,10], +"text_8php.html#a3972701c5c83624ec4e2d06242f614e7":[4,0,0,64,23], +"text_8php.html#a3d2793d66db3345fd290b71e2eadf98e":[4,0,0,64,3], +"text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a":[4,0,0,64,26], +"text_8php.html#a48f6d04513d26270e10e9b7d153f7526":[4,0,0,64,15], +"text_8php.html#a4ba1339b2a7054971178ce194e4440fd":[4,0,0,64,40], +"text_8php.html#a4e7698aca48982512594b274543c3b9b":[4,0,0,64,36], +"text_8php.html#a4f3605ee8de717a401ea9df2401b59f6":[4,0,0,64,43], +"text_8php.html#a543447c5ed766535221e2d9636b379ee":[4,0,0,64,47], +"text_8php.html#a544fc13c1798371e5a5984b5482108f8":[4,0,0,64,12], +"text_8php.html#a5bb69d560e9d8a9acc8778eba6cf2f4e":[4,0,0,64,49], +"text_8php.html#a6232a23958366a80955a5782f4ba9073":[4,0,0,64,39], +"text_8php.html#a736db13a966b8abaf8c9198faa35911a":[4,0,0,64,21], +"text_8php.html#a740ad03e00459039a2c0992246c4e727":[4,0,0,64,46], +"text_8php.html#a75fbba83ab521c145e262646c3128da5":[4,0,0,64,22], +"text_8php.html#a7a913d19c77610da689be48fbbf6734c":[4,0,0,64,45], +"text_8php.html#a85e3a4851c16674834010d8419a5d7ca":[4,0,0,64,4], +"text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13":[4,0,0,64,41], +"text_8php.html#a8c59dbc3c93b2601c6bb22ddff163349":[4,0,0,64,8], +"text_8php.html#a8c5d610a901665dfe6cbb64d39bfaa2f":[4,0,0,64,5], +"text_8php.html#aac3721c73b3ceadf02a172704d0a27b7":[4,0,0,64,35], +"text_8php.html#aaeded36bcc983b35d9205fe5b6c18c43":[4,0,0,64,44], +"text_8php.html#abb55ec0142207aeec3d90b25ed4d7266":[4,0,0,64,13], +"text_8php.html#abbe4894b4e746e47e1f91c7df27f6e81":[4,0,0,64,16], +"text_8php.html#ac19d2b33a58372a357a43d51eed19162":[4,0,0,64,34], +"text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e":[4,0,0,64,28], +"text_8php.html#aca0f589be74fab1a460c57e88dad9779":[4,0,0,64,38], +"text_8php.html#ace3c98538c63e09b70a363210b414112":[4,0,0,64,17], +"text_8php.html#acedb584f65114a33f389efb796172a91":[4,0,0,64,0], +"text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2":[4,0,0,64,37], +"text_8php.html#adba17ec946f4285285dc100f7860bf51":[4,0,0,64,33], +"text_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1":[4,0,0,64,19], +"text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8":[4,0,0,64,29], +"text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28":[4,0,0,64,18], +"text_8php.html#afe44c30f1d0f8cb3ca097d4e189d852d":[4,0,0,64,42], +"theme__init_8php.html":[4,0,3,0,6], +"toggle__mobile_8php.html":[4,0,1,89], +"toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254":[4,0,1,89,0], +"typo_8php.html":[4,0,2,7], +"typo_8php.html#a1b709c1d79631ebc8320b41bda028b54":[4,0,2,7,1], +"typo_8php.html#a3bb638ebb8472e4ee7c85afe721f4fe3":[4,0,2,7,4], +"typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd":[4,0,2,7,3], +"typo_8php.html#a9590b15215a21e9b42eb546aeef79704":[4,0,2,7,2], +"typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f":[4,0,2,7,0], +"typohelper_8php.html":[4,0,2,8], +"typohelper_8php.html#a7542d95618011800c61773127fa625cf":[4,0,2,8,0], +"typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805":[4,0,2,8,1], +"uexport_8php.html":[4,0,1,90], +"uexport_8php.html#a118920137dedebe0581623a2e57e7b0d":[4,0,1,90,0], +"update__channel_8php.html":[4,0,1,91], +"update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba":[4,0,1,91,0], +"update__community_8php.html":[4,0,1,92], +"update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1":[4,0,1,92,0], +"update__display_8php.html":[4,0,1,93], +"update__display_8php.html#aa36ac524059e209d5d75a03c16206246":[4,0,1,93,0], +"update__network_8php.html":[4,0,1,94], +"update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41":[4,0,1,94,0], +"updatetpl_8py.html":[4,0,2,9], +"updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12":[4,0,2,9,5], +"updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3":[4,0,2,9,2], +"updatetpl_8py.html#a988d937ed5d5c2b592b763036af5cf94":[4,0,2,9,1], +"updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6":[4,0,2,9,3], +"updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f":[4,0,2,9,0] +}; diff --git a/doc/html/navtreeindex6.js b/doc/html/navtreeindex6.js new file mode 100644 index 000000000..fdcadbf21 --- /dev/null +++ b/doc/html/navtreeindex6.js @@ -0,0 +1,55 @@ +var NAVTREEINDEX6 = +{ +"updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6":[4,0,2,9,4], +"view_2theme_2redbasic_2php_2config_8php.html":[4,0,3,1,0,0,0], +"view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d":[4,0,3,1,0,0,0,1], +"view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6":[4,0,3,1,0,0,0,2], +"view_2theme_2redbasic_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e":[4,0,3,1,0,0,0,0], +"view_8php.html":[4,0,1,95], +"view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e":[4,0,1,95,0], +"viewconnections_8php.html":[4,0,1,96], +"viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330":[4,0,1,96,2], +"viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776":[4,0,1,96,1], +"viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6":[4,0,1,96,0], +"viewsrc_8php.html":[4,0,1,97], +"viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4":[4,0,1,97,0], +"wall__attach_8php.html":[4,0,1,98], +"wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653":[4,0,1,98,0], +"wall__upload_8php.html":[4,0,1,99], +"wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f":[4,0,1,99,0], +"webfinger_8php.html":[4,0,1,100], +"webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3":[4,0,1,100,0], +"xchan_8php.html":[4,0,1,101], +"xchan_8php.html#a9853348bf1a35c644460221ba75edc2d":[4,0,1,101,0], +"xrd_8php.html":[4,0,1,102], +"xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270":[4,0,1,102,0], +"zfinger_8php.html":[4,0,1,103], +"zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0":[4,0,1,103,0], +"zot_8php.html":[4,0,0,65], +"zot_8php.html#a083aec6c900d244e1bfc1406f9461465":[4,0,0,65,8], +"zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c":[4,0,0,65,15], +"zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df":[4,0,0,65,9], +"zot_8php.html#a37ec13b18057634eadb071f05297f5e1":[4,0,0,65,5], +"zot_8php.html#a3862b3161b2c8557dc1a95020179bd81":[4,0,0,65,10], +"zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a":[4,0,0,65,2], +"zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32":[4,0,0,65,3], +"zot_8php.html#a55056e863a7860bc0cf922e78fcce073":[4,0,0,65,14], +"zot_8php.html#a5bcdfef419b16075a0eca990956223dc":[4,0,0,65,20], +"zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea":[4,0,0,65,11], +"zot_8php.html#a703f528ade8382cf374e4119bd6f7859":[4,0,0,65,0], +"zot_8php.html#a77720d6b59894e9b609af89c310c8a4d":[4,0,0,65,12], +"zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d":[4,0,0,65,19], +"zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03":[4,0,0,65,18], +"zot_8php.html#a9a57b40669351c9791126b925cb7ef3b":[4,0,0,65,7], +"zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc":[4,0,0,65,6], +"zot_8php.html#ab0227978011d8601494a7651fa26acf0":[4,0,0,65,4], +"zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7":[4,0,0,65,16], +"zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142":[4,0,0,65,21], +"zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e":[4,0,0,65,13], +"zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72":[4,0,0,65,1], +"zot_8php.html#af22a8732e60d30055617a95f77493446":[4,0,0,65,17], +"zotfeed_8php.html":[4,0,1,104], +"zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac":[4,0,1,104,0], +"zperms_8php.html":[4,0,1,105], +"zperms_8php.html#a2f698dcd51150bda3146425f038da628":[4,0,1,105,0] +}; diff --git a/doc/html/new__channel_8php.html b/doc/html/new__channel_8php.html new file mode 100644 index 000000000..0ef90d950 --- /dev/null +++ b/doc/html/new__channel_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/new_channel.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
new_channel.php File Reference
+
+
+ + + + + + + + +

+Functions

 new_channel_init (&$a)
 
 new_channel_post (&$a)
 
 new_channel_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
new_channel_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
new_channel_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
new_channel_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/new__channel_8php.js b/doc/html/new__channel_8php.js new file mode 100644 index 000000000..b087d0df8 --- /dev/null +++ b/doc/html/new__channel_8php.js @@ -0,0 +1,6 @@ +var new__channel_8php = +[ + [ "new_channel_content", "new__channel_8php.html#ae585191610f79da129492482ce8e2fee", null ], + [ "new_channel_init", "new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164", null ], + [ "new_channel_post", "new__channel_8php.html#a180b0646957db8290482f02454ad7f23", null ] +]; \ No newline at end of file diff --git a/doc/html/nogroup_8php.html b/doc/html/nogroup_8php.html new file mode 100644 index 000000000..f042e6490 --- /dev/null +++ b/doc/html/nogroup_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/nogroup.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
nogroup.php File Reference
+
+
+ + + + + + +

+Functions

 nogroup_init (&$a)
 
 nogroup_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
nogroup_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
nogroup_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/nogroup_8php.js b/doc/html/nogroup_8php.js new file mode 100644 index 000000000..73cbeccad --- /dev/null +++ b/doc/html/nogroup_8php.js @@ -0,0 +1,5 @@ +var nogroup_8php = +[ + [ "nogroup_content", "nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30", null ], + [ "nogroup_init", "nogroup_8php.html#a099cb353bf62e8453069ce107b763212", null ] +]; \ No newline at end of file diff --git a/doc/html/notifications_8php.html b/doc/html/notifications_8php.html new file mode 100644 index 000000000..c349e73e9 --- /dev/null +++ b/doc/html/notifications_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/notifications.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
notifications.php File Reference
+
+
+ + + + + + +

+Functions

 notifications_post (&$a)
 
 notifications_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
notifications_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
notifications_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/notifications_8php.js b/doc/html/notifications_8php.js new file mode 100644 index 000000000..f4360984e --- /dev/null +++ b/doc/html/notifications_8php.js @@ -0,0 +1,5 @@ +var notifications_8php = +[ + [ "notifications_content", "notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62", null ], + [ "notifications_post", "notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33", null ] +]; \ No newline at end of file diff --git a/doc/html/notifier_8php.html b/doc/html/notifier_8php.html new file mode 100644 index 000000000..453d81c78 --- /dev/null +++ b/doc/html/notifier_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/notifier.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
notifier.php File Reference
+
+
+ + + + +

+Functions

 notifier_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
notifier_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/notifier_8php.js b/doc/html/notifier_8php.js new file mode 100644 index 000000000..a06169542 --- /dev/null +++ b/doc/html/notifier_8php.js @@ -0,0 +1,4 @@ +var notifier_8php = +[ + [ "notifier_run", "notifier_8php.html#a568c502f626cff95e344c0748938b85d", null ] +]; \ No newline at end of file diff --git a/doc/html/oauth_8php.html b/doc/html/oauth_8php.html new file mode 100644 index 000000000..d97555bfa --- /dev/null +++ b/doc/html/oauth_8php.html @@ -0,0 +1,170 @@ + + + + + + +The Red Project: include/oauth.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
oauth.php File Reference
+
+
+ + + + + + +

+Classes

class  FKOAuthDataStore
 
class  FKOAuth1
 
+ + + + + +

+Variables

const REQUEST_TOKEN_DURATION 300
 
const ACCESS_TOKEN_DURATION 31536000
 
+

Variable Documentation

+ +
+
+ + + + +
const ACCESS_TOKEN_DURATION 31536000
+
+
+ +
+
+ + + + +
const REQUEST_TOKEN_DURATION 300
+
+

OAuth server Based on oauth2-php http://code.google.com/p/oauth2-php/

+ +

Referenced by FKOAuthDataStore\new_request_token().

+ +
+
+
+
+ + + + diff --git a/doc/html/oauth_8php.js b/doc/html/oauth_8php.js new file mode 100644 index 000000000..da8061a29 --- /dev/null +++ b/doc/html/oauth_8php.js @@ -0,0 +1,7 @@ +var oauth_8php = +[ + [ "FKOAuthDataStore", "classFKOAuthDataStore.html", "classFKOAuthDataStore" ], + [ "FKOAuth1", "classFKOAuth1.html", "classFKOAuth1" ], + [ "ACCESS_TOKEN_DURATION", "oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6", null ], + [ "REQUEST_TOKEN_DURATION", "oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16", null ] +]; \ No newline at end of file diff --git a/doc/html/oexchange_8php.html b/doc/html/oexchange_8php.html new file mode 100644 index 000000000..1e85296a3 --- /dev/null +++ b/doc/html/oexchange_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/oexchange.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
oexchange.php File Reference
+
+
+ + + + + + +

+Functions

 oexchange_init (&$a)
 
 oexchange_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
oexchange_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
oexchange_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/oexchange_8php.js b/doc/html/oexchange_8php.js new file mode 100644 index 000000000..1bf271058 --- /dev/null +++ b/doc/html/oexchange_8php.js @@ -0,0 +1,5 @@ +var oexchange_8php = +[ + [ "oexchange_content", "oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26", null ], + [ "oexchange_init", "oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59", null ] +]; \ No newline at end of file diff --git a/doc/html/onepoll_8php.html b/doc/html/onepoll_8php.html new file mode 100644 index 000000000..20824ebc4 --- /dev/null +++ b/doc/html/onepoll_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/onepoll.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
onepoll.php File Reference
+
+
+ + + + +

+Functions

 onepoll_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
onepoll_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/onepoll_8php.js b/doc/html/onepoll_8php.js new file mode 100644 index 000000000..7624f85df --- /dev/null +++ b/doc/html/onepoll_8php.js @@ -0,0 +1,4 @@ +var onepoll_8php = +[ + [ "onepoll_run", "onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d", null ] +]; \ No newline at end of file diff --git a/doc/html/open.png b/doc/html/open.png new file mode 100644 index 000000000..30f75c7ef Binary files /dev/null and b/doc/html/open.png differ diff --git a/doc/html/opensearch_8php.html b/doc/html/opensearch_8php.html new file mode 100644 index 000000000..c42c4ba11 --- /dev/null +++ b/doc/html/opensearch_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/opensearch.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
opensearch.php File Reference
+
+
+ + + + +

+Functions

 opensearch_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
opensearch_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/opensearch_8php.js b/doc/html/opensearch_8php.js new file mode 100644 index 000000000..e9492cfcb --- /dev/null +++ b/doc/html/opensearch_8php.js @@ -0,0 +1,4 @@ +var opensearch_8php = +[ + [ "opensearch_init", "opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9", null ] +]; \ No newline at end of file diff --git a/doc/html/page_8php.html b/doc/html/page_8php.html new file mode 100644 index 000000000..4c812aa1e --- /dev/null +++ b/doc/html/page_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/page.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
page.php File Reference
+
+
+ + + + +

+Functions

 page_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
page_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/page_8php.js b/doc/html/page_8php.js new file mode 100644 index 000000000..600910e42 --- /dev/null +++ b/doc/html/page_8php.js @@ -0,0 +1,4 @@ +var page_8php = +[ + [ "page_content", "page_8php.html#a91a5f649f68406149108bded1dc90b22", null ] +]; \ No newline at end of file diff --git a/doc/html/pages.html b/doc/html/pages.html new file mode 100644 index 000000000..3ac91b582 --- /dev/null +++ b/doc/html/pages.html @@ -0,0 +1,121 @@ + + + + + + +The Red Project: Related Pages + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
Related Pages
+
+
+
Here is a list of all related documentation pages:
+
+
+ + + + diff --git a/doc/html/parse__url_8php.html b/doc/html/parse__url_8php.html new file mode 100644 index 000000000..a78c851c9 --- /dev/null +++ b/doc/html/parse__url_8php.html @@ -0,0 +1,225 @@ + + + + + + +The Red Project: mod/parse_url.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
parse_url.php File Reference
+
+
+ + + + + + + + + + +

+Functions

if(!function_exists('deletenode')) completeurl ($url, $scheme)
 
 parseurl_getsiteinfo ($url)
 
 arr_add_hashes (&$item, $k)
 
 parse_url_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
arr_add_hashes ($item,
 $k 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
if (!function_exists('deletenode')) completeurl ( $url,
 $scheme 
)
+
+ +

Referenced by parseurl_getsiteinfo().

+ +
+
+ +
+
+ + + + + + + + +
parse_url_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
parseurl_getsiteinfo ( $url)
+
+ +

Referenced by parse_url_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/parse__url_8php.js b/doc/html/parse__url_8php.js new file mode 100644 index 000000000..a30c00e5b --- /dev/null +++ b/doc/html/parse__url_8php.js @@ -0,0 +1,7 @@ +var parse__url_8php = +[ + [ "arr_add_hashes", "parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868", null ], + [ "completeurl", "parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a", null ], + [ "parse_url_content", "parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b", null ], + [ "parseurl_getsiteinfo", "parse__url_8php.html#a25635549f2c22955d72465f4d2e58993", null ] +]; \ No newline at end of file diff --git a/doc/html/permissions_8php.html b/doc/html/permissions_8php.html new file mode 100644 index 000000000..a212b8f35 --- /dev/null +++ b/doc/html/permissions_8php.html @@ -0,0 +1,265 @@ + + + + + + +The Red Project: include/permissions.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
permissions.php File Reference
+
+
+ + + + + + + + + + +

+Functions

 get_perms ()
 
 get_all_perms ($uid, $observer_xchan, $internal_use=true)
 
 perm_is_allowed ($uid, $observer_xchan, $permission)
 
 check_list_permissions ($uid, $arr, $perm)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
check_list_permissions ( $uid,
 $arr,
 $perm 
)
+
+ +

Referenced by collect_recipients().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
get_all_perms ( $uid,
 $observer_xchan,
 $internal_use = true 
)
+
+

get_all_perms($uid,$observer_xchan)

+
Parameters
+ + + +
$uid: The channel_id associated with the resource owner
$observer_xchan,:The xchan_hash representing the observer
+
+
+
Returns
: array of all permissions, key is permission name, value is true or false
+ +

Referenced by change_channel(), channel_content(), connections_content(), photos_init(), and zfinger_init().

+ +
+
+ +
+
+ + + + + + + +
get_perms ()
+
+
+ + +
+
+ + + + diff --git a/doc/html/permissions_8php.js b/doc/html/permissions_8php.js new file mode 100644 index 000000000..a05203458 --- /dev/null +++ b/doc/html/permissions_8php.js @@ -0,0 +1,7 @@ +var permissions_8php = +[ + [ "check_list_permissions", "permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7", null ], + [ "get_all_perms", "permissions_8php.html#aeca9b280f3dc3358c89976d81d690008", null ], + [ "get_perms", "permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972", null ], + [ "perm_is_allowed", "permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835", null ] +]; \ No newline at end of file diff --git a/doc/html/photo_8php.html b/doc/html/photo_8php.html new file mode 100644 index 000000000..d74794670 --- /dev/null +++ b/doc/html/photo_8php.html @@ -0,0 +1,149 @@ + + + + + + +The Red Project: mod/photo.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
photo.php File Reference
+
+
+ + + + +

+Functions

 photo_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
photo_init ($a)
+
+

Profile photos - Access controls on default profile photos are not honoured since they need to be exchanged with remote sites.

+

Other photos

+ +
+
+
+
+ + + + diff --git a/doc/html/photo_8php.js b/doc/html/photo_8php.js new file mode 100644 index 000000000..1c070c3bc --- /dev/null +++ b/doc/html/photo_8php.js @@ -0,0 +1,4 @@ +var photo_8php = +[ + [ "photo_init", "photo_8php.html#a582779d24882b0d31ee909a91d70a448", null ] +]; \ No newline at end of file diff --git a/doc/html/php2po_8php.html b/doc/html/php2po_8php.html new file mode 100644 index 000000000..73c97def7 --- /dev/null +++ b/doc/html/php2po_8php.html @@ -0,0 +1,255 @@ + + + + + + +The Red Project: util/php2po.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
php2po.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + +

+Variables

if(!class_exists('App')) if($argc!=2) $phpfile = $argv[1]
 
 $pofile = dirname($phpfile)."/messages.po"
 
 if (!file_exists($phpfile))
 
print Out to n
 
 $out = ""
 
 $infile = file($pofile)
 
 $k =""
 
 $ink = False
 
+

Variable Documentation

+ +
+
+ + + + +
$infile = file($pofile)
+
+ +

Referenced by po2php_run().

+ +
+
+ +
+
+ + + + +
$ink = False
+
+ +

Referenced by po2php_run().

+ +
+
+ + + +
+
+ + + + +
$out = ""
+
+ +

Referenced by po2php_run().

+ +
+
+ +
+
+ + + + +
if (!class_exists('App')) if ($argc!=2) $phpfile = $argv[1]
+
+ +
+
+ +
+
+ + + + +
$pofile = dirname($phpfile)."/messages.po"
+
+ +

Referenced by po2php_run().

+ +
+
+ +
+
+ + + + +
if
+
+Initial value:
{
+
showForm(null, $content)
+
+

Referenced by oembed_format_object().

+ +
+
+ +
+
+ + + + +
print Out to n
+
+ +
+
+
+
+ + + + diff --git a/doc/html/php2po_8php.js b/doc/html/php2po_8php.js new file mode 100644 index 000000000..679a631af --- /dev/null +++ b/doc/html/php2po_8php.js @@ -0,0 +1,11 @@ +var php2po_8php = +[ + [ "$infile", "php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214", null ], + [ "$ink", "php2po_8php.html#a6b0b8ebd9ce811d1325ef2c129443bc0", null ], + [ "$k", "php2po_8php.html#ad6726cfaa85d4b8299d2b0f034cbf178", null ], + [ "$out", "php2po_8php.html#a48cb304902320d173a4eaa41543327b9", null ], + [ "$phpfile", "php2po_8php.html#abbb0e5fd8fbc1f13a9bf68f86eb3d2a4", null ], + [ "$pofile", "php2po_8php.html#a401d84ce156e49e8168bd0c4781e1be1", null ], + [ "if", "php2po_8php.html#a45b05625748f412ec97afcd61cf7980b", null ], + [ "n", "php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b", null ] +]; \ No newline at end of file diff --git a/doc/html/ping_8php.html b/doc/html/ping_8php.html new file mode 100644 index 000000000..9fb9680b3 --- /dev/null +++ b/doc/html/ping_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/ping.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
ping.php File Reference
+
+
+ + + + +

+Functions

 ping_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
ping_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/ping_8php.js b/doc/html/ping_8php.js new file mode 100644 index 000000000..4fe2dcc0c --- /dev/null +++ b/doc/html/ping_8php.js @@ -0,0 +1,4 @@ +var ping_8php = +[ + [ "ping_init", "ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1", null ] +]; \ No newline at end of file diff --git a/doc/html/plugin_8php.html b/doc/html/plugin_8php.html new file mode 100644 index 000000000..ec3abe0a9 --- /dev/null +++ b/doc/html/plugin_8php.html @@ -0,0 +1,439 @@ + + + + + + +The Red Project: include/plugin.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
plugin.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

if(!function_exists('uninstall_plugin'))
+if(!function_exists('install_plugin'))
+if(!function_exists('reload_plugins'))
+if(!function_exists('register_hook'))
+if(!function_exists('unregister_hook'))
+if(!function_exists('load_hooks'))
+if(!function_exists('call_hooks'))
+if(!function_exists('get_plugin_info'))
+if(!function_exists('get_theme_info')) 
get_theme_screenshot ($theme)
 
 service_class_allows ($uid, $property, $usage=false)
 
 service_class_fetch ($uid, $property)
 
 upgrade_link ($bbcode=false)
 
 upgrade_message ($bbcode=false)
 
 upgrade_bool_message ($bbcode=false)
 
 head_add_css ($src, $media= 'screen')
 
 head_get_css ()
 
 format_css_if_exists ($source)
 
 head_add_js ($src)
 
 head_get_js ()
 
 format_js_if_exists ($source)
 
 theme_include ($file, $root= '')
 
+

Function Documentation

+ +
+
+ + + + + + + + +
format_css_if_exists ( $source)
+
+ +

Referenced by head_get_css().

+ +
+
+ +
+
+ + + + + + + + +
format_js_if_exists ( $source)
+
+ +

Referenced by head_get_js().

+ +
+
+ +
+
+ + + + + + + + +
if (!function_exists('uninstall_plugin')) if (!function_exists('install_plugin')) if (!function_exists('reload_plugins')) if (!function_exists('register_hook')) if (!function_exists('unregister_hook')) if (!function_exists('load_hooks')) if (!function_exists('call_hooks')) if (!function_exists('get_plugin_info')) if (!function_exists('get_theme_info')) get_theme_screenshot ( $theme)
+
+ +

Referenced by admin_page_themes(), and pretheme_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
head_add_css ( $src,
 $media = 'screen' 
)
+
+ +

Referenced by construct_page().

+ +
+
+ +
+
+ + + + + + + + +
head_add_js ( $src)
+
+ +

Referenced by construct_page().

+ +
+
+ +
+
+ + + + + + + +
head_get_css ()
+
+ +

Referenced by App\build_pagehead().

+ +
+
+ +
+
+ + + + + + + +
head_get_js ()
+
+ +

Referenced by App\build_pagehead().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
service_class_allows ( $uid,
 $property,
 $usage = false 
)
+
+ +

Referenced by identity_check_service_class(), and new_contact().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
service_class_fetch ( $uid,
 $property 
)
+
+ +

Referenced by attach_store(), photo_upload(), and photos_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
theme_include ( $file,
 $root = '' 
)
+
+
+ +
+
+ + + + + + + + +
upgrade_bool_message ( $bbcode = false)
+
+ +
+
+ +
+
+ + + + + + + + +
upgrade_link ( $bbcode = false)
+
+ +

Referenced by upgrade_bool_message(), and upgrade_message().

+ +
+
+ +
+
+ + + + + + + + +
upgrade_message ( $bbcode = false)
+
+
+
+
+ + + + diff --git a/doc/html/plugin_8php.js b/doc/html/plugin_8php.js new file mode 100644 index 000000000..69fa5fb61 --- /dev/null +++ b/doc/html/plugin_8php.js @@ -0,0 +1,16 @@ +var plugin_8php = +[ + [ "format_css_if_exists", "plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6", null ], + [ "format_js_if_exists", "plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f", null ], + [ "get_theme_screenshot", "plugin_8php.html#a888a4c565cf06eb86ffc67131e5f19e0", null ], + [ "head_add_css", "plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a", null ], + [ "head_add_js", "plugin_8php.html#a516591850f4fd49fd1425cfa54089db8", null ], + [ "head_get_css", "plugin_8php.html#af92789f559b89a380e49d303218aeeca", null ], + [ "head_get_js", "plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1", null ], + [ "service_class_allows", "plugin_8php.html#a030cec6793b909c439c0336ba39b1571", null ], + [ "service_class_fetch", "plugin_8php.html#a905b54e10704b283ac64680a8abc0971", null ], + [ "theme_include", "plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2", null ], + [ "upgrade_bool_message", "plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d", null ], + [ "upgrade_link", "plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040", null ], + [ "upgrade_message", "plugin_8php.html#a901657dd078e070516cf97285e0bada7", null ] +]; \ No newline at end of file diff --git a/doc/html/po2php_8php.html b/doc/html/po2php_8php.html new file mode 100644 index 000000000..e0bf12209 --- /dev/null +++ b/doc/html/po2php_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: util/po2php.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
po2php.php File Reference
+
+
+ + + + +

+Functions

 po2php_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
po2php_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/po2php_8php.js b/doc/html/po2php_8php.js new file mode 100644 index 000000000..e8f3c4f39 --- /dev/null +++ b/doc/html/po2php_8php.js @@ -0,0 +1,4 @@ +var po2php_8php = +[ + [ "po2php_run", "po2php_8php.html#a3b75e36f913198299e99559b175cd8b4", null ] +]; \ No newline at end of file diff --git a/doc/html/poco_8php.html b/doc/html/poco_8php.html new file mode 100644 index 000000000..263fec558 --- /dev/null +++ b/doc/html/poco_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/poco.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
poco.php File Reference
+
+
+ + + + +

+Functions

 poco_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
poco_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/poco_8php.js b/doc/html/poco_8php.js new file mode 100644 index 000000000..48ccaafb9 --- /dev/null +++ b/doc/html/poco_8php.js @@ -0,0 +1,4 @@ +var poco_8php = +[ + [ "poco_init", "poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498", null ] +]; \ No newline at end of file diff --git a/doc/html/poke_8php.html b/doc/html/poke_8php.html new file mode 100644 index 000000000..56d5b4625 --- /dev/null +++ b/doc/html/poke_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/poke.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
poke.php File Reference
+
+
+ + + + + + +

+Functions

 poke_init (&$a)
 
 poke_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
poke_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
poke_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/poke_8php.js b/doc/html/poke_8php.js new file mode 100644 index 000000000..3acebd0ae --- /dev/null +++ b/doc/html/poke_8php.js @@ -0,0 +1,5 @@ +var poke_8php = +[ + [ "poke_content", "poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993", null ], + [ "poke_init", "poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b", null ] +]; \ No newline at end of file diff --git a/doc/html/poller_8php.html b/doc/html/poller_8php.html new file mode 100644 index 000000000..1565c9b4d --- /dev/null +++ b/doc/html/poller_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/poller.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
poller.php File Reference
+
+
+ + + + +

+Functions

 poller_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
poller_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/poller_8php.js b/doc/html/poller_8php.js new file mode 100644 index 000000000..94d6e67a4 --- /dev/null +++ b/doc/html/poller_8php.js @@ -0,0 +1,4 @@ +var poller_8php = +[ + [ "poller_run", "poller_8php.html#a5f12df3a4738124b6c039971e87e76da", null ] +]; \ No newline at end of file diff --git a/doc/html/post_8php.html b/doc/html/post_8php.html new file mode 100644 index 000000000..01ebbfbd0 --- /dev/null +++ b/doc/html/post_8php.html @@ -0,0 +1,166 @@ + + + + + + +The Red Project: mod/post.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
post.php File Reference
+
+
+ + + + + + +

+Functions

 post_init (&$a)
 
 post_post (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
post_init ($a)
+
+

Zot endpoint

+ +
+
+ +
+
+ + + + + + + + +
post_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/post_8php.js b/doc/html/post_8php.js new file mode 100644 index 000000000..9a5f6bcdb --- /dev/null +++ b/doc/html/post_8php.js @@ -0,0 +1,5 @@ +var post_8php = +[ + [ "post_init", "post_8php.html#af4b48181ce773ef0cdfc972441445c34", null ], + [ "post_post", "post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75", null ] +]; \ No newline at end of file diff --git a/doc/html/pretheme_8php.html b/doc/html/pretheme_8php.html new file mode 100644 index 000000000..6effb0bce --- /dev/null +++ b/doc/html/pretheme_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/pretheme.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
pretheme.php File Reference
+
+
+ + + + +

+Functions

 pretheme_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
pretheme_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/pretheme_8php.js b/doc/html/pretheme_8php.js new file mode 100644 index 000000000..850e68070 --- /dev/null +++ b/doc/html/pretheme_8php.js @@ -0,0 +1,4 @@ +var pretheme_8php = +[ + [ "pretheme_init", "pretheme_8php.html#af5660943ee99db5fd75182316522eafe", null ] +]; \ No newline at end of file diff --git a/doc/html/probe_8php.html b/doc/html/probe_8php.html new file mode 100644 index 000000000..48b399c9a --- /dev/null +++ b/doc/html/probe_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/probe.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
probe.php File Reference
+
+
+ + + + +

+Functions

 probe_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
probe_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/probe_8php.js b/doc/html/probe_8php.js new file mode 100644 index 000000000..5c5c60b45 --- /dev/null +++ b/doc/html/probe_8php.js @@ -0,0 +1,4 @@ +var probe_8php = +[ + [ "probe_content", "probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99", null ] +]; \ No newline at end of file diff --git a/doc/html/profile_8php.html b/doc/html/profile_8php.html new file mode 100644 index 000000000..2d69dc7ed --- /dev/null +++ b/doc/html/profile_8php.html @@ -0,0 +1,193 @@ + + + + + + +The Red Project: mod/profile.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
profile.php File Reference
+
+
+ + + + + + + + +

+Functions

 profile_init (&$a)
 
 profile_aside (&$a)
 
 profile_content (&$a, $update=0)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
profile_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
profile_content ($a,
 $update = 0 
)
+
+ +
+
+ +
+
+ + + + + + + + +
profile_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/profile_8php.js b/doc/html/profile_8php.js new file mode 100644 index 000000000..942cf9b3d --- /dev/null +++ b/doc/html/profile_8php.js @@ -0,0 +1,6 @@ +var profile_8php = +[ + [ "profile_aside", "profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e", null ], + [ "profile_content", "profile_8php.html#a3775cf6eef6587e5143133356a7b76c0", null ], + [ "profile_init", "profile_8php.html#ab5d0246be0552e2182a585c1206d22a5", null ] +]; \ No newline at end of file diff --git a/doc/html/profile__advanced_8php.html b/doc/html/profile__advanced_8php.html new file mode 100644 index 000000000..da2b431d5 --- /dev/null +++ b/doc/html/profile__advanced_8php.html @@ -0,0 +1,149 @@ + + + + + + +The Red Project: include/profile_advanced.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
profile_advanced.php File Reference
+
+
+ + + + +

+Functions

 advanced_profile (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
advanced_profile ($a)
+
+ +

Referenced by profile_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/profile__advanced_8php.js b/doc/html/profile__advanced_8php.js new file mode 100644 index 000000000..505cbe36f --- /dev/null +++ b/doc/html/profile__advanced_8php.js @@ -0,0 +1,4 @@ +var profile__advanced_8php = +[ + [ "advanced_profile", "profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4", null ] +]; \ No newline at end of file diff --git a/doc/html/profile__photo_8php.html b/doc/html/profile__photo_8php.html new file mode 100644 index 000000000..0e02d1fac --- /dev/null +++ b/doc/html/profile__photo_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/profile_photo.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
profile_photo.php File Reference
+
+
+ + + + + + + + +

+Functions

 profile_photo_init (&$a)
 
 profile_photo_aside (&$a)
 
 profile_photo_post (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
profile_photo_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
profile_photo_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
profile_photo_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/profile__photo_8php.js b/doc/html/profile__photo_8php.js new file mode 100644 index 000000000..c9a379a2e --- /dev/null +++ b/doc/html/profile__photo_8php.js @@ -0,0 +1,6 @@ +var profile__photo_8php = +[ + [ "profile_photo_aside", "profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3", null ], + [ "profile_photo_init", "profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02", null ], + [ "profile_photo_post", "profile__photo_8php.html#a4b80234074bd603221aa5364f330e479", null ] +]; \ No newline at end of file diff --git a/doc/html/profile__selectors_8php.html b/doc/html/profile__selectors_8php.html new file mode 100644 index 000000000..9a8125a4d --- /dev/null +++ b/doc/html/profile__selectors_8php.html @@ -0,0 +1,219 @@ + + + + + + +The Red Project: include/profile_selectors.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
profile_selectors.php File Reference
+
+
+ + + + + + + + +

+Functions

 gender_selector ($current="", $suffix="")
 
 sexpref_selector ($current="", $suffix="")
 
 marital_selector ($current="", $suffix="")
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
gender_selector ( $current = "",
 $suffix = "" 
)
+
+ +

Referenced by profiles_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
marital_selector ( $current = "",
 $suffix = "" 
)
+
+ +

Referenced by profiles_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
sexpref_selector ( $current = "",
 $suffix = "" 
)
+
+ +

Referenced by profiles_content().

+ +
+
+
+
+ + + + diff --git a/doc/html/profile__selectors_8php.js b/doc/html/profile__selectors_8php.js new file mode 100644 index 000000000..608e0e77e --- /dev/null +++ b/doc/html/profile__selectors_8php.js @@ -0,0 +1,6 @@ +var profile__selectors_8php = +[ + [ "gender_selector", "profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355", null ], + [ "marital_selector", "profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798", null ], + [ "sexpref_selector", "profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7", null ] +]; \ No newline at end of file diff --git a/doc/html/profiles_8php.html b/doc/html/profiles_8php.html new file mode 100644 index 000000000..47a1ed6fe --- /dev/null +++ b/doc/html/profiles_8php.html @@ -0,0 +1,201 @@ + + + + + + +The Red Project: mod/profiles.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
profiles.php File Reference
+
+
+ + + + + + + + + + +

+Functions

 profiles_init (&$a)
 
 profiles_aside (&$a)
 
 profiles_post (&$a)
 
 profiles_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
profiles_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
profiles_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
profiles_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
profiles_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/profiles_8php.js b/doc/html/profiles_8php.js new file mode 100644 index 000000000..6bc83ad62 --- /dev/null +++ b/doc/html/profiles_8php.js @@ -0,0 +1,7 @@ +var profiles_8php = +[ + [ "profiles_aside", "profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c", null ], + [ "profiles_content", "profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00", null ], + [ "profiles_init", "profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e", null ], + [ "profiles_post", "profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04", null ] +]; \ No newline at end of file diff --git a/doc/html/profperm_8php.html b/doc/html/profperm_8php.html new file mode 100644 index 000000000..5875b0e53 --- /dev/null +++ b/doc/html/profperm_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/profperm.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
profperm.php File Reference
+
+
+ + + + + + + + +

+Functions

 profperm_init (&$a)
 
 profperm_aside (&$a)
 
 profperm_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
profperm_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
profperm_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
profperm_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/profperm_8php.js b/doc/html/profperm_8php.js new file mode 100644 index 000000000..978df3252 --- /dev/null +++ b/doc/html/profperm_8php.js @@ -0,0 +1,6 @@ +var profperm_8php = +[ + [ "profperm_aside", "profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc", null ], + [ "profperm_content", "profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023", null ], + [ "profperm_init", "profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6", null ] +]; \ No newline at end of file diff --git a/doc/html/qsearch_8php.html b/doc/html/qsearch_8php.html new file mode 100644 index 000000000..09c11a137 --- /dev/null +++ b/doc/html/qsearch_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/qsearch.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
qsearch.php File Reference
+
+
+ + + + +

+Functions

 qsearch_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
qsearch_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/qsearch_8php.js b/doc/html/qsearch_8php.js new file mode 100644 index 000000000..a21b280be --- /dev/null +++ b/doc/html/qsearch_8php.js @@ -0,0 +1,4 @@ +var qsearch_8php = +[ + [ "qsearch_init", "qsearch_8php.html#a0501887b95bd8fa21018b2936a668894", null ] +]; \ No newline at end of file diff --git a/doc/html/queue_8php.html b/doc/html/queue_8php.html new file mode 100644 index 000000000..75fccc023 --- /dev/null +++ b/doc/html/queue_8php.html @@ -0,0 +1,157 @@ + + + + + + +The Red Project: include/queue.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
queue.php File Reference
+
+
+ + + + +

+Functions

 queue_run ($argv, $argc)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
queue_run ( $argv,
 $argc 
)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/queue_8php.js b/doc/html/queue_8php.js new file mode 100644 index 000000000..e5a7830db --- /dev/null +++ b/doc/html/queue_8php.js @@ -0,0 +1,4 @@ +var queue_8php = +[ + [ "queue_run", "queue_8php.html#af8c93de86d866c3200174c8450a0f341", null ] +]; \ No newline at end of file diff --git a/doc/html/queue__fn_8php.html b/doc/html/queue__fn_8php.html new file mode 100644 index 000000000..42a21ebe2 --- /dev/null +++ b/doc/html/queue__fn_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: include/queue_fn.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
queue_fn.php File Reference
+
+
+ + + + + + +

+Functions

 update_queue_time ($id)
 
 remove_queue_item ($id)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
remove_queue_item ( $id)
+
+ +
+
+ +
+
+ + + + + + + + +
update_queue_time ( $id)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/queue__fn_8php.js b/doc/html/queue__fn_8php.js new file mode 100644 index 000000000..2a3776960 --- /dev/null +++ b/doc/html/queue__fn_8php.js @@ -0,0 +1,5 @@ +var queue__fn_8php = +[ + [ "remove_queue_item", "queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24", null ], + [ "update_queue_time", "queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1", null ] +]; \ No newline at end of file diff --git a/doc/html/randprof_8php.html b/doc/html/randprof_8php.html new file mode 100644 index 000000000..8acdcfbcd --- /dev/null +++ b/doc/html/randprof_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/randprof.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
randprof.php File Reference
+
+
+ + + + +

+Functions

 randprof_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
randprof_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/randprof_8php.js b/doc/html/randprof_8php.js new file mode 100644 index 000000000..8cc765498 --- /dev/null +++ b/doc/html/randprof_8php.js @@ -0,0 +1,4 @@ +var randprof_8php = +[ + [ "randprof_init", "randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090", null ] +]; \ No newline at end of file diff --git a/doc/html/redbasic_2php_2theme_8php.html b/doc/html/redbasic_2php_2theme_8php.html new file mode 100644 index 000000000..91b3c5a40 --- /dev/null +++ b/doc/html/redbasic_2php_2theme_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: view/theme/redbasic/php/theme.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
theme.php File Reference
+
+
+ + + + +

+Functions

 redbasic_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
redbasic_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/redbasic_2php_2theme_8php.js b/doc/html/redbasic_2php_2theme_8php.js new file mode 100644 index 000000000..ad2af9268 --- /dev/null +++ b/doc/html/redbasic_2php_2theme_8php.js @@ -0,0 +1,4 @@ +var redbasic_2php_2theme_8php = +[ + [ "redbasic_init", "redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b", null ] +]; \ No newline at end of file diff --git a/doc/html/redir_8php.html b/doc/html/redir_8php.html new file mode 100644 index 000000000..d3c7b1471 --- /dev/null +++ b/doc/html/redir_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/redir.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
redir.php File Reference
+
+
+ + + + +

+Functions

 redir_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
redir_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/redir_8php.js b/doc/html/redir_8php.js new file mode 100644 index 000000000..8fb935d75 --- /dev/null +++ b/doc/html/redir_8php.js @@ -0,0 +1,4 @@ +var redir_8php = +[ + [ "redir_init", "redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5", null ] +]; \ No newline at end of file diff --git a/doc/html/register_8php.html b/doc/html/register_8php.html new file mode 100644 index 000000000..7306d226a --- /dev/null +++ b/doc/html/register_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/register.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
register.php File Reference
+
+
+ + + + + + + + +

+Functions

 register_init (&$a)
 
 register_post (&$a)
 
 register_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
register_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
register_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
register_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/register_8php.js b/doc/html/register_8php.js new file mode 100644 index 000000000..7028ce8cc --- /dev/null +++ b/doc/html/register_8php.js @@ -0,0 +1,6 @@ +var register_8php = +[ + [ "register_content", "register_8php.html#a0e91f57f111407ea8d3223a05022bb2a", null ], + [ "register_init", "register_8php.html#ae20c0cd40f738d6295de58b9202c83d5", null ], + [ "register_post", "register_8php.html#a51731dcc1917c58a790eb1c0f6132271", null ] +]; \ No newline at end of file diff --git a/doc/html/regmod_8php.html b/doc/html/regmod_8php.html new file mode 100644 index 000000000..d945b6b0c --- /dev/null +++ b/doc/html/regmod_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/regmod.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
regmod.php File Reference
+
+
+ + + + +

+Functions

 regmod_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
regmod_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/regmod_8php.js b/doc/html/regmod_8php.js new file mode 100644 index 000000000..d19c87424 --- /dev/null +++ b/doc/html/regmod_8php.js @@ -0,0 +1,4 @@ +var regmod_8php = +[ + [ "regmod_content", "regmod_8php.html#a7953df4e32e63946565e90cdd5d50409", null ] +]; \ No newline at end of file diff --git a/doc/html/removeme_8php.html b/doc/html/removeme_8php.html new file mode 100644 index 000000000..50b5f48dd --- /dev/null +++ b/doc/html/removeme_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/removeme.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
removeme.php File Reference
+
+
+ + + + + + +

+Functions

 removeme_post (&$a)
 
 removeme_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
removeme_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
removeme_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/removeme_8php.js b/doc/html/removeme_8php.js new file mode 100644 index 000000000..ee5cd84d0 --- /dev/null +++ b/doc/html/removeme_8php.js @@ -0,0 +1,5 @@ +var removeme_8php = +[ + [ "removeme_content", "removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c", null ], + [ "removeme_post", "removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88", null ] +]; \ No newline at end of file diff --git a/doc/html/resize.js b/doc/html/resize.js new file mode 100644 index 000000000..8365b253c --- /dev/null +++ b/doc/html/resize.js @@ -0,0 +1,93 @@ +var cookie_namespace = 'doxygen'; +var sidenav,navtree,content,header; + +function readCookie(cookie) +{ + var myCookie = cookie_namespace+"_"+cookie+"="; + if (document.cookie) + { + var index = document.cookie.indexOf(myCookie); + if (index != -1) + { + var valStart = index + myCookie.length; + var valEnd = document.cookie.indexOf(";", valStart); + if (valEnd == -1) + { + valEnd = document.cookie.length; + } + var val = document.cookie.substring(valStart, valEnd); + return val; + } + } + return 0; +} + +function writeCookie(cookie, val, expiration) +{ + if (val==undefined) return; + if (expiration == null) + { + var date = new Date(); + date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week + expiration = date.toGMTString(); + } + document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/"; +} + +function resizeWidth() +{ + var windowWidth = $(window).width() + "px"; + var sidenavWidth = $(sidenav).outerWidth(); + content.css({marginLeft:parseInt(sidenavWidth)+6+"px"}); //account for 6px-wide handle-bar + writeCookie('width',sidenavWidth, null); +} + +function restoreWidth(navWidth) +{ + var windowWidth = $(window).width() + "px"; + content.css({marginLeft:parseInt(navWidth)+6+"px"}); + sidenav.css({width:navWidth + "px"}); +} + +function resizeHeight() +{ + var headerHeight = header.outerHeight(); + var footerHeight = footer.outerHeight(); + var windowHeight = $(window).height() - headerHeight - footerHeight; + content.css({height:windowHeight + "px"}); + navtree.css({height:windowHeight + "px"}); + sidenav.css({height:windowHeight + "px",top: headerHeight+"px"}); +} + +function initResizable() +{ + header = $("#top"); + sidenav = $("#side-nav"); + content = $("#doc-content"); + navtree = $("#nav-tree"); + footer = $("#nav-path"); + $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); + $(window).resize(function() { resizeHeight(); }); + var width = readCookie('width'); + if (width) { restoreWidth(width); } else { resizeWidth(); } + resizeHeight(); + var url = location.href; + var i=url.indexOf("#"); + if (i>=0) window.location.hash=url.substr(i); + var _preventDefault = function(evt) { evt.preventDefault(); }; + $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); + $(document).bind('touchmove',function(e){ + try { + var target = e.target; + while (target) { + if ($(target).css('-webkit-overflow-scrolling')=='touch') return; + target = target.parentNode; + } + e.preventDefault(); + } catch(err) { + e.preventDefault(); + } + }); +} + + diff --git a/doc/html/rmagic_8php.html b/doc/html/rmagic_8php.html new file mode 100644 index 000000000..d987487e2 --- /dev/null +++ b/doc/html/rmagic_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/rmagic.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
rmagic.php File Reference
+
+
+ + + + + + + + +

+Functions

 rmagic_init (&$a)
 
 rmagic_post (&$a)
 
 rmagic_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
rmagic_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
rmagic_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
rmagic_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/rmagic_8php.js b/doc/html/rmagic_8php.js new file mode 100644 index 000000000..ca44412be --- /dev/null +++ b/doc/html/rmagic_8php.js @@ -0,0 +1,6 @@ +var rmagic_8php = +[ + [ "rmagic_content", "rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef", null ], + [ "rmagic_init", "rmagic_8php.html#a95455edd43f1bff39446a57388cdde16", null ], + [ "rmagic_post", "rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f", null ] +]; \ No newline at end of file diff --git a/doc/html/rsd__xml_8php.html b/doc/html/rsd__xml_8php.html new file mode 100644 index 000000000..e213da5e7 --- /dev/null +++ b/doc/html/rsd__xml_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/rsd_xml.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
rsd_xml.php File Reference
+
+
+ + + + +

+Functions

 rsd_xml_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
rsd_xml_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/rsd__xml_8php.js b/doc/html/rsd__xml_8php.js new file mode 100644 index 000000000..36c85f86a --- /dev/null +++ b/doc/html/rsd__xml_8php.js @@ -0,0 +1,4 @@ +var rsd__xml_8php = +[ + [ "rsd_xml_content", "rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82", null ] +]; \ No newline at end of file diff --git a/doc/html/search/all_24.html b/doc/html/search/all_24.html new file mode 100644 index 000000000..46ab96a5b --- /dev/null +++ b/doc/html/search/all_24.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_24.js b/doc/html/search/all_24.js new file mode 100644 index 000000000..25ef28a57 --- /dev/null +++ b/doc/html/search/all_24.js @@ -0,0 +1,140 @@ +var searchData= +[ + ['_24a',['$a',['../db__update_8php.html#acebf83966ef6d7e5645a6b62ba368f9f',1,'$a(): db_update.php'],['../typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f',1,'$a(): typo.php']]], + ['_24account',['$account',['../classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3',1,'App']]], + ['_24api',['$API',['../include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8',1,'api.php']]], + ['_24app',['$app',['../classBaseObject.html#a02cc4cd8fa26b6fc76d92fde54b4e4b1',1,'BaseObject']]], + ['_24apps',['$apps',['../classApp.html#a230e975296cf164da2fee35ef720964f',1,'App']]], + ['_24argc',['$argc',['../classApp.html#af58db526040829b1c8bd95561b329262',1,'App']]], + ['_24argv',['$argv',['../classApp.html#ab3da757abe5cb45bf88f07cc51a73b58',1,'App']]], + ['_24arr',['$arr',['../extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb',1,'extract.php']]], + ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], + ['_24build',['$build',['../db__update_8php.html#a502b15db084ae270b52e03c8075916de',1,'db_update.php']]], + ['_24cached_5fprofile_5fimage',['$cached_profile_image',['../classApp.html#abe0e4fa91097f7a6588e1213a834121c',1,'App']]], + ['_24cached_5fprofile_5fpicdate',['$cached_profile_picdate',['../classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e',1,'App']]], + ['_24called_5fapi',['$called_api',['../include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d',1,'api.php']]], + ['_24category',['$category',['../classApp.html#a5cfc098c061b7d765add58fd2ca97445',1,'App']]], + ['_24channel',['$channel',['../classApp.html#a050b0696118da47e8b30859ad1a2c149',1,'App\$channel()'],['../classItem.html#acc32426c0f465391be8a99ad810c7b8e',1,'Item\$channel()']]], + ['_24children',['$children',['../classItem.html#a80dcd0fb7673776c0967839d429c2a0f',1,'Item']]], + ['_24cid',['$cid',['../classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0',1,'App']]], + ['_24cmd',['$cmd',['../classApp.html#a495ec082c2719314e536070ca1ce073d',1,'App']]], + ['_24colour',['$colour',['../style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab',1,'style.php']]], + ['_24comment_5fbox_5ftemplate',['$comment_box_template',['../classItem.html#a90743c8348b13213275c223bb9333aa0',1,'Item']]], + ['_24commentable',['$commentable',['../classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304',1,'Item']]], + ['_24config',['$config',['../classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88',1,'App']]], + ['_24connected',['$connected',['../classdba.html#a986eb5c3bbd4c70801a9ddd2f8e5c561',1,'dba']]], + ['_24contact',['$contact',['../classApp.html#a98ef4cfd36693a3457c879b76bc6d694',1,'App']]], + ['_24contacts',['$contacts',['../classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2',1,'App']]], + ['_24content',['$content',['../classApp.html#ac1d80a14492acc932715d54567d8a589',1,'App']]], + ['_24conversation',['$conversation',['../classItem.html#a007424e3e3171dcfb4312a02161da6cd',1,'Item']]], + ['_24css_5fsources',['$css_sources',['../classApp.html#a6f55d087e1ff4710132c1b0863faa2ee',1,'App']]], + ['_24curl_5fcode',['$curl_code',['../classApp.html#a256360c9184fed6d7556e0bc0a835d7f',1,'App']]], + ['_24curl_5fheaders',['$curl_headers',['../classApp.html#af5007c42a693afd9c4899c243b2e1363',1,'App']]], + ['_24d',['$d',['../classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38',1,'Template']]], + ['_24data',['$data',['../classApp.html#a0ce85be198e46570366cb3344f3c55b8',1,'App\$data()'],['../classItem.html#aec24e233f9098f902b1e57e60dcb2019',1,'Item\$data()']]], + ['_24db',['$db',['../classApp.html#a330410a288f3393d53772f5e98f857ea',1,'App\$db()'],['../classdba.html#ab57b3a4399f22ce5cdafbd3cd542a414',1,'dba\$db()'],['../db__update_8php.html#a1fa3127fc82f96b1436d871ef02be319',1,'$db(): db_update.php']]], + ['_24debug',['$debug',['../classdba.html#a4da56b3eb82ad26ba49ca5f97e1490cb',1,'dba\$debug()'],['../classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a',1,'Template\$debug()']]], + ['_24dir',['$dir',['../docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62',1,'docblox_errorchecker.php']]], + ['_24dirs',['$dirs',['../typo_8php.html#a1b709c1d79631ebc8320b41bda028b54',1,'typo.php']]], + ['_24dirstack',['$dirstack',['../docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6',1,'docblox_errorchecker.php']]], + ['_24displaystyle',['$displaystyle',['../style_8php.html#aa658152b727ea1233f6df6ded6437dad',1,'style.php']]], + ['_24done',['$done',['../classTemplate.html#abda4c8d049f70553338eae7c905e9d5c',1,'Template']]], + ['_24error',['$error',['../classApp.html#ac1a8b2cd40609b231a560201a08852ba',1,'App\$error()'],['../classdba.html#a6a1471c18c6530044d20db5d3532958b',1,'dba\$error()']]], + ['_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'],['../typo_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): typo.php']]], + ['_24force_5fmax_5fitems',['$force_max_items',['../classApp.html#ae3f47830543d0d902f66913def8db66b',1,'App']]], + ['_24gc_5fprobability',['$gc_probability',['../session_8php.html#a5bf3e03ff4c47e26374e28dfd12f4897',1,'session.php']]], + ['_24groups',['$groups',['../classApp.html#ac6e6b1c7d6df408580ff79977fcfa656',1,'App']]], + ['_24height',['$height',['../classPhoto.html#a2b05906daa294e0c904aff0ba24b5bd3',1,'Photo']]], + ['_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']]], + ['_24identities',['$identities',['../classApp.html#a7954862f44f606b0ff83d4c74d15e792',1,'App']]], + ['_24image',['$image',['../classPhoto.html#aa09af89979e3e46c0c58989ee063d69d',1,'Photo']]], + ['_24imagick',['$imagick',['../classPhoto.html#a040b23beaab0c0db4311b31cae6b8106',1,'Photo']]], + ['_24infile',['$infile',['../php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214',1,'php2po.php']]], + ['_24ink',['$ink',['../php2po_8php.html#a6b0b8ebd9ce811d1325ef2c129443bc0',1,'php2po.php']]], + ['_24install_5fwizard_5fpass',['$install_wizard_pass',['../setup_8php.html#addb24714bc2542aa4f4215e98fe48432',1,'setup.php']]], + ['_24interactive',['$interactive',['../classApp.html#a4c7cfc62d39508086cf300dc2e39c4df',1,'App']]], + ['_24js_5fsources',['$js_sources',['../classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d',1,'App']]], + ['_24k',['$k',['../php2po_8php.html#ad6726cfaa85d4b8299d2b0f034cbf178',1,'php2po.php']]], + ['_24lang',['$lang',['../classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8',1,'Template\$lang()'],['../db__update_8php.html#a7714b111b644017933931ec69a154102',1,'$lang(): db_update.php']]], + ['_24language',['$language',['../classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f',1,'App']]], + ['_24ldelim',['$ldelim',['../classApp.html#a59dd4b665c70e7dbd80682c014ff7145',1,'App']]], + ['_24line_5fheight',['$line_height',['../style_8php.html#a4131d1765ee4deb28e83fc4527943ee0',1,'style.php']]], + ['_24linkcolour',['$linkcolour',['../style_8php.html#a6628a80911a6b37b464ef110ac8f6e42',1,'style.php']]], + ['_24mode',['$mode',['../classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a',1,'Conversation']]], + ['_24module',['$module',['../classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d',1,'App']]], + ['_24module_5floaded',['$module_loaded',['../classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165',1,'App']]], + ['_24mysqli',['$mysqli',['../classdba.html#ab5dcbd758d3f8fb84702c323cd85067e',1,'dba']]], + ['_24nav_5fbg_5f1',['$nav_bg_1',['../style_8php.html#a232513bf4339fe34908c4c63cb93168b',1,'style.php']]], + ['_24nav_5fbg_5f2',['$nav_bg_2',['../style_8php.html#a03a72942b7428fd9af1224770d20a8ba',1,'style.php']]], + ['_24nav_5fbg_5f3',['$nav_bg_3',['../style_8php.html#acc190405dda0a23a80551dee11c74c0c',1,'style.php']]], + ['_24nav_5fbg_5f4',['$nav_bg_4',['../style_8php.html#aef266cfcb27c6ddb3292584c945bab33',1,'style.php']]], + ['_24nav_5fsel',['$nav_sel',['../classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c',1,'App']]], + ['_24navcolour',['$navcolour',['../style_8php.html#a938168352fd3cdaa1c10c16a34f5938a',1,'style.php']]], + ['_24needed',['$needed',['../docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73',1,'docblox_errorchecker.php']]], + ['_24nodes',['$nodes',['../classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1',1,'Template']]], + ['_24observer',['$observer',['../classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f',1,'App\$observer()'],['../classItem.html#a379c8a156da092ad0be90a0d2fec3c0f',1,'Item\$observer()']]], + ['_24out',['$out',['../php2po_8php.html#a48cb304902320d173a4eaa41543327b9',1,'php2po.php']]], + ['_24owner_5fname',['$owner_name',['../classItem.html#a9594df6014b0b6f45364ea7a34510130',1,'Item']]], + ['_24owner_5fphoto',['$owner_photo',['../classItem.html#a078f95b4134ce3a1df344cf8d386f986',1,'Item']]], + ['_24owner_5furl',['$owner_url',['../classItem.html#afa54851df82962c7c42dea3cc9f5c92c',1,'Item']]], + ['_24page',['$page',['../classApp.html#a4b67935096f66d1f14b657399a8461ac',1,'App']]], + ['_24pager',['$pager',['../classApp.html#a6bcb19cdc4907077da72864686d5a780',1,'App']]], + ['_24parent',['$parent',['../classItem.html#a1a1e42877e6ac7af50286142ceb483d2',1,'Item']]], + ['_24path',['$path',['../classApp.html#acad5896b7a79ae31433ad8f89606c728',1,'App']]], + ['_24perms',['$perms',['../classApp.html#ab47de68fa39806d1fb0976407e188b77',1,'App']]], + ['_24phpath',['$phpath',['../typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd',1,'typo.php']]], + ['_24phpfile',['$phpfile',['../php2po_8php.html#abbb0e5fd8fbc1f13a9bf68f86eb3d2a4',1,'php2po.php']]], + ['_24plugins',['$plugins',['../classApp.html#ae9f96338f32187d308b67b980eea0008',1,'App']]], + ['_24pofile',['$pofile',['../php2po_8php.html#a401d84ce156e49e8168bd0c4781e1be1',1,'php2po.php']]], + ['_24preview',['$preview',['../classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae',1,'Conversation']]], + ['_24profile',['$profile',['../classApp.html#a57d041fcc003d08c127dfa99a02bc192',1,'App']]], + ['_24profile_5fowner',['$profile_owner',['../classConversation.html#a2f12724ef0244e9049fe1bb9641b516d',1,'Conversation']]], + ['_24query_5fstring',['$query_string',['../classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f',1,'App']]], + ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template']]], + ['_24rdelim',['$rdelim',['../classApp.html#a244b2d53b21be269aad2269d23192f95',1,'App']]], + ['_24redbasic_5ffont_5fsize',['$redbasic_font_size',['../style_8php.html#addf42c3d02e53f8e4153f3bb9dabfcda',1,'style.php']]], + ['_24redirect_5furl',['$redirect_url',['../classItem.html#a5b561415861f5b89b0733aacfe0428d1',1,'Item']]], + ['_24replace',['$replace',['../classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10',1,'Template']]], + ['_24res',['$res',['../docblox__errorchecker_8php.html#a49a8a4009b02e49717caa88b128affc5',1,'docblox_errorchecker.php']]], + ['_24resolution',['$resolution',['../style_8php.html#adcfa918e05b5a98cbddc84bc3f1c15cc',1,'style.php']]], + ['_24s',['$s',['../extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634',1,'extract.php']]], + ['_24scheme',['$scheme',['../classApp.html#ad082d63acc078e5bf23825a03bdd6a76',1,'App']]], + ['_24search',['$search',['../classTemplate.html#a317d535946dc065c35dd5cd38380e6c6',1,'Template']]], + ['_24session_5fexists',['$session_exists',['../session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb',1,'session.php']]], + ['_24session_5fexpire',['$session_expire',['../session_8php.html#af0100a2642a5268594bbd5742a03d885',1,'session.php']]], + ['_24shadows',['$shadows',['../style_8php.html#acb3046ad9c01b7d60cde20f58d77c548',1,'style.php']]], + ['_24shiny',['$shiny',['../style_8php.html#a0b942d36d8862908864e2ffa4521be70',1,'style.php']]], + ['_24site_5fcolour',['$site_colour',['../style_8php.html#a02d39b683a42fffbb27823d3860283bd',1,'style.php']]], + ['_24site_5fline_5fheight',['$site_line_height',['../style_8php.html#a8749837e08dfb3372662af9c33fa2a2e',1,'style.php']]], + ['_24site_5fredbasic_5ffont_5fsize',['$site_redbasic_font_size',['../style_8php.html#a45e6fafa363bc4586fa91dce1786be4f',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']]], + ['_24t',['$t',['../template__processor_8php.html#a3d44ea1cbbc9bc72aad8436186c4866e',1,'template_processor.php']]], + ['_24template',['$template',['../classItem.html#a7f7bc059de377319282cb4ef4a828480',1,'Item']]], + ['_24theme',['$theme',['../classApp.html#a764cc6cd7578132c21d2b4545de9301c',1,'App']]], + ['_24theme_5finfo',['$theme_info',['../classApp.html#aeca29fd4f7192ca07369b3c598c36e67',1,'App']]], + ['_24theme_5fthread_5fallow',['$theme_thread_allow',['../classApp.html#a487332f8de40414ca1a54a4265570b70',1,'App']]], + ['_24threaded',['$threaded',['../classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2',1,'Item']]], + ['_24threads',['$threads',['../classConversation.html#a41f4a549e6a99f98935c4742addd22c8',1,'Conversation']]], + ['_24timezone',['$timezone',['../classApp.html#ab35b01a366a2ea95725e97af278f87ab',1,'App']]], + ['_24toplevel',['$toplevel',['../classItem.html#a5cfa6cf964f433a917a81cab079ff9d8',1,'Item']]], + ['_24type',['$type',['../classPhoto.html#af87e8ec7587bbcb28f91e7548f560695',1,'Photo']]], + ['_24types',['$types',['../classPhoto.html#a338d80512bdfeb6a6a00a9381d76de5f',1,'Photo']]], + ['_24user',['$user',['../classApp.html#a91fd3c8b89016113b05f3be24805ccff',1,'App']]], + ['_24valid',['$valid',['../classPhoto.html#a50e0b85ea8a3f724dd74366756669e61',1,'Photo']]], + ['_24videoheight',['$videoheight',['../classApp.html#a56b1a432c96aef8b1971f779c9d93c8c',1,'App']]], + ['_24videowidth',['$videowidth',['../classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8',1,'App']]], + ['_24visiting',['$visiting',['../classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8',1,'Item']]], + ['_24wall_5fto_5fwall',['$wall_to_wall',['../classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189',1,'Item']]], + ['_24widgetlist',['$widgetlist',['../classApp.html#a4833bee2eae4ad1691a04fa19e11a766',1,'App']]], + ['_24widgets',['$widgets',['../classApp.html#aa5a87c46ab3fee21362c466bf78042ef',1,'App']]], + ['_24width',['$width',['../classPhoto.html#af18778643b1f6c637d9d7f5abd561f11',1,'Photo']]], + ['_24writable',['$writable',['../classConversation.html#ae81221251307e315f566a11f921ce0a9',1,'Conversation\$writable()'],['../classItem.html#af514e893765deda92125ce84024d3ad5',1,'Item\$writable()']]], + ['_24zones',['$zones',['../extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44',1,'extract.php']]] +]; diff --git a/doc/html/search/all_5f.html b/doc/html/search/all_5f.html new file mode 100644 index 000000000..879d79268 --- /dev/null +++ b/doc/html/search/all_5f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_5f.js b/doc/html/search/all_5f.js new file mode 100644 index 000000000..76368c425 --- /dev/null +++ b/doc/html/search/all_5f.js @@ -0,0 +1,18 @@ +var searchData= +[ + ['_5f_5fconstruct',['__construct',['../classApp.html#af6d39f63fb7116bbeb04e51696f99474',1,'App\__construct()'],['../classConversation.html#a6b064d00c56a6b7dec359d4348711c84',1,'Conversation\__construct()'],['../classdba.html#aa36df91d776eedd1b90b9518a610d9fb',1,'dba\__construct()'],['../classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6',1,'FriendicaSmarty\__construct()'],['../classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2',1,'Item\__construct()'],['../classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6',1,'FKOAuth1\__construct()'],['../classPhoto.html#ad06199e7c1222350ef8c1cdcfade265c',1,'Photo\__construct()']]], + ['_5f_5fdestruct',['__destruct',['../classdba.html#ac25853e4d454aec9cfead4814429550d',1,'dba\__destruct()'],['../classPhoto.html#a0906cba2a2a895cc22179de27449cbd2',1,'Photo\__destruct()']]], + ['_5fbuild_5fnodes',['_build_nodes',['../classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4',1,'Template']]], + ['_5fget_5fvar',['_get_var',['../classTemplate.html#aae9c4d761ea1298e745e8052d7910194',1,'Template']]], + ['_5fpop_5fstack',['_pop_stack',['../classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7',1,'Template']]], + ['_5fpreg_5ferror',['_preg_error',['../classTemplate.html#a37c15f6d1ade500943629f27a62808b7',1,'Template']]], + ['_5fpush_5fstack',['_push_stack',['../classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29',1,'Template']]], + ['_5freplcb',['_replcb',['../classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934',1,'Template']]], + ['_5freplcb_5fdebug',['_replcb_debug',['../classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e',1,'Template']]], + ['_5freplcb_5ffor',['_replcb_for',['../classTemplate.html#abf71098c80fd1f218a59452b3408309e',1,'Template']]], + ['_5freplcb_5fif',['_replcb_if',['../classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228',1,'Template']]], + ['_5freplcb_5finc',['_replcb_inc',['../classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677',1,'Template']]], + ['_5freplcb_5fnode',['_replcb_node',['../classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee',1,'Template']]], + ['_5fwell_5fknown_2ephp',['_well_known.php',['../__well__known_8php.html',1,'']]], + ['_5fwell_5fknown_5finit',['_well_known_init',['../__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0',1,'_well_known.php']]] +]; diff --git a/doc/html/search/all_61.html b/doc/html/search/all_61.html new file mode 100644 index 000000000..f85089b55 --- /dev/null +++ b/doc/html/search/all_61.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_61.js b/doc/html/search/all_61.js new file mode 100644 index 000000000..df4dd9eb1 --- /dev/null +++ b/doc/html/search/all_61.js @@ -0,0 +1,160 @@ +var searchData= +[ + ['abook_5fconnections',['abook_connections',['../Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e',1,'Contact.php']]], + ['abook_5fflag_5farchived',['ABOOK_FLAG_ARCHIVED',['../boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5',1,'boot.php']]], + ['abook_5fflag_5fblocked',['ABOOK_FLAG_BLOCKED',['../boot_8php.html#a52b599cd13e152ebc80d7e4413683195',1,'boot.php']]], + ['abook_5fflag_5fhidden',['ABOOK_FLAG_HIDDEN',['../boot_8php.html#a34c756469ebed32e2fc987bcde62d382',1,'boot.php']]], + ['abook_5fflag_5fignored',['ABOOK_FLAG_IGNORED',['../boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6',1,'boot.php']]], + ['abook_5fflag_5fpending',['ABOOK_FLAG_PENDING',['../boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155',1,'boot.php']]], + ['abook_5fflag_5fself',['ABOOK_FLAG_SELF',['../boot_8php.html#a0450389f24c632906fbc24347700a543',1,'boot.php']]], + ['abook_5fself',['abook_self',['../Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5',1,'Contact.php']]], + ['abook_5ftoggle_5fflag',['abook_toggle_flag',['../Contact_8php.html#a024919623a830e8703ac4f23496dd66c',1,'Contact.php']]], + ['absurl',['absurl',['../boot_8php.html#a081307d681d7d04f17b9ced2076e7c85',1,'boot.php']]], + ['access_5ftoken_5fduration',['ACCESS_TOKEN_DURATION',['../oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6',1,'oauth.php']]], + ['account_2ephp',['account.php',['../account_8php.html',1,'']]], + ['account_5fblocked',['ACCOUNT_BLOCKED',['../boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9',1,'boot.php']]], + ['account_5fexpired',['ACCOUNT_EXPIRED',['../boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a',1,'boot.php']]], + ['account_5fok',['ACCOUNT_OK',['../boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8',1,'boot.php']]], + ['account_5fpending',['ACCOUNT_PENDING',['../boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8',1,'boot.php']]], + ['account_5fremoved',['ACCOUNT_REMOVED',['../boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78',1,'boot.php']]], + ['account_5frole_5fadmin',['ACCOUNT_ROLE_ADMIN',['../boot_8php.html#ac8400313df2c831653f9036f71ebd86d',1,'boot.php']]], + ['account_5ftotal',['account_total',['../account_8php.html#a43e3042b2723d76915a030bac3c668b6',1,'account.php']]], + ['account_5funverified',['ACCOUNT_UNVERIFIED',['../boot_8php.html#af3a4271630aabd8be592213f925d6a36',1,'boot.php']]], + ['account_5fverify_5fpassword',['account_verify_password',['../auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee',1,'auth.php']]], + ['acknowledge_5fpermissions',['acknowledge_permissions',['../classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a',1,'ProtoDriver\acknowledge_permissions()'],['../classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2',1,'ZotDriver\acknowledge_permissions()']]], + ['acl_2ephp',['acl.php',['../acl_8php.html',1,'']]], + ['acl_5finit',['acl_init',['../acl_8php.html#ac6776dba871806ecdb5d1659bc2eb07a',1,'acl.php']]], + ['acl_5fselectors',['acl_selectors',['../namespaceacl__selectors.html',1,'']]], + ['acl_5fselectors_2ephp',['acl_selectors.php',['../acl__selectors_8php.html',1,'']]], + ['activities_2ephp',['activities.php',['../activities_8php.html',1,'']]], + ['activity_5fdislike',['ACTIVITY_DISLIKE',['../boot_8php.html#a0e57f846e6d47a308feced0f7274f178',1,'boot.php']]], + ['activity_5ffavorite',['ACTIVITY_FAVORITE',['../boot_8php.html#a3e2ea123d29a72012db1241f96280b0e',1,'boot.php']]], + ['activity_5ffollow',['ACTIVITY_FOLLOW',['../boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434',1,'boot.php']]], + ['activity_5ffriend',['ACTIVITY_FRIEND',['../boot_8php.html#a176664e78dcb9132e16be69418223eb2',1,'boot.php']]], + ['activity_5fjoin',['ACTIVITY_JOIN',['../boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3',1,'boot.php']]], + ['activity_5flike',['ACTIVITY_LIKE',['../boot_8php.html#abdcdfc873ace4e0902177bad934de0c0',1,'boot.php']]], + ['activity_5fmood',['ACTIVITY_MOOD',['../boot_8php.html#a7aa57438db03834aaa0b468bdce773a6',1,'boot.php']]], + ['activity_5fobj_5falbum',['ACTIVITY_OBJ_ALBUM',['../boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14',1,'boot.php']]], + ['activity_5fobj_5fcomment',['ACTIVITY_OBJ_COMMENT',['../boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562',1,'boot.php']]], + ['activity_5fobj_5fevent',['ACTIVITY_OBJ_EVENT',['../boot_8php.html#a2e90096fede6acce16abf0da8cb2febe',1,'boot.php']]], + ['activity_5fobj_5fgroup',['ACTIVITY_OBJ_GROUP',['../boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3',1,'boot.php']]], + ['activity_5fobj_5fheart',['ACTIVITY_OBJ_HEART',['../boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f',1,'boot.php']]], + ['activity_5fobj_5fnote',['ACTIVITY_OBJ_NOTE',['../boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f',1,'boot.php']]], + ['activity_5fobj_5fp_5fphoto',['ACTIVITY_OBJ_P_PHOTO',['../boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab',1,'boot.php']]], + ['activity_5fobj_5fperson',['ACTIVITY_OBJ_PERSON',['../boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab',1,'boot.php']]], + ['activity_5fobj_5fphoto',['ACTIVITY_OBJ_PHOTO',['../boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966',1,'boot.php']]], + ['activity_5fobj_5fprofile',['ACTIVITY_OBJ_PROFILE',['../boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5',1,'boot.php']]], + ['activity_5fobj_5ftagterm',['ACTIVITY_OBJ_TAGTERM',['../boot_8php.html#a1da180f961f49a11573cac4ff6c62c05',1,'boot.php']]], + ['activity_5fpoke',['ACTIVITY_POKE',['../boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd',1,'boot.php']]], + ['activity_5fpost',['ACTIVITY_POST',['../boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4',1,'boot.php']]], + ['activity_5freq_5ffriend',['ACTIVITY_REQ_FRIEND',['../boot_8php.html#afe084c30a1810c10442edb4fbcbc0086',1,'boot.php']]], + ['activity_5fsanitise',['activity_sanitise',['../items_8php.html#a36e656667193c83aa2cc03a024fc131b',1,'items.php']]], + ['activity_5ftag',['ACTIVITY_TAG',['../boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5',1,'boot.php']]], + ['activity_5funfollow',['ACTIVITY_UNFOLLOW',['../boot_8php.html#a53e4bdb6f225da55115acb9277f75e53',1,'boot.php']]], + ['activity_5funfriend',['ACTIVITY_UNFRIEND',['../boot_8php.html#a29528a2544373cc19a378f350040c6a1',1,'boot.php']]], + ['activity_5fupdate',['ACTIVITY_UPDATE',['../boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866',1,'boot.php']]], + ['add_5fchild',['add_child',['../classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51',1,'Item']]], + ['add_5fchildren_5fto_5flist',['add_children_to_list',['../conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b',1,'conversation.php']]], + ['add_5ffcontact',['add_fcontact',['../include_2network_8php.html#a0bdc4b0bfc54797c249dc4eca25aeda4',1,'network.php']]], + ['add_5fthread',['add_thread',['../classConversation.html#a8335cdd43f1836e3c255638e61a09e16',1,'Conversation']]], + ['admin_2ephp',['admin.php',['../admin_8php.html',1,'']]], + ['admin_5fcontent',['admin_content',['../admin_8php.html#afef415e4011607fbb665610441595015',1,'admin.php']]], + ['admin_5fpage_5fdbsync',['admin_page_dbsync',['../admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade',1,'admin.php']]], + ['admin_5fpage_5flogs',['admin_page_logs',['../admin_8php.html#a1d1362698af14d209aa3a0fb655551dd',1,'admin.php']]], + ['admin_5fpage_5flogs_5fpost',['admin_page_logs_post',['../admin_8php.html#a233b7c8c31776b7020532003c6e44e1c',1,'admin.php']]], + ['admin_5fpage_5fplugins',['admin_page_plugins',['../admin_8php.html#a54128076986ba80c4a103de3fc3e19a8',1,'admin.php']]], + ['admin_5fpage_5fsite',['admin_page_site',['../admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e',1,'admin.php']]], + ['admin_5fpage_5fsite_5fpost',['admin_page_site_post',['../admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f',1,'admin.php']]], + ['admin_5fpage_5fsummary',['admin_page_summary',['../admin_8php.html#ac6e95b920b5abd030cc522964987087a',1,'admin.php']]], + ['admin_5fpage_5fthemes',['admin_page_themes',['../admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb',1,'admin.php']]], + ['admin_5fpage_5fusers',['admin_page_users',['../admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2',1,'admin.php']]], + ['admin_5fpage_5fusers_5fpost',['admin_page_users_post',['../admin_8php.html#a5a696706a3869800e65fb365214241b7',1,'admin.php']]], + ['admin_5fpost',['admin_post',['../admin_8php.html#acf51f5837a7427832144c2bf7308ada3',1,'admin.php']]], + ['advanced_5fprofile',['advanced_profile',['../profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4',1,'profile_advanced.php']]], + ['aes256cbc_5fdecrypt',['AES256CBC_decrypt',['../crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9',1,'crypto.php']]], + ['aes256cbc_5fencrypt',['AES256CBC_encrypt',['../crypto_8php.html#a5c61821d205f95f127114159cbffa764',1,'crypto.php']]], + ['aes_5fencapsulate',['aes_encapsulate',['../crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286',1,'crypto.php']]], + ['aes_5funencapsulate',['aes_unencapsulate',['../crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914',1,'crypto.php']]], + ['age',['age',['../datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df',1,'datetime.php']]], + ['all_5ffriends',['all_friends',['../socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586',1,'socgraph.php']]], + ['allfriends_2ephp',['allfriends.php',['../allfriends_8php.html',1,'']]], + ['allfriends_5fcontent',['allfriends_content',['../allfriends_8php.html#aad992ddbb5f20e81c5cf2259718aec83',1,'allfriends.php']]], + ['allowed_5femail',['allowed_email',['../include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694',1,'network.php']]], + ['allowed_5fpublic_5frecips',['allowed_public_recips',['../zot_8php.html#a703f528ade8382cf374e4119bd6f7859',1,'zot.php']]], + ['allowed_5furl',['allowed_url',['../include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7',1,'network.php']]], + ['api_2ephp',['api.php',['../mod_2api_8php.html',1,'']]], + ['api_2ephp',['api.php',['../include_2api_8php.html',1,'']]], + ['api_5faccount_5flogout',['api_account_logout',['../include_2api_8php.html#a2e94eab9d6c164bfef7a1b2ab87b339b',1,'api.php']]], + ['api_5faccount_5frate_5flimit_5fstatus',['api_account_rate_limit_status',['../include_2api_8php.html#ae8f5863e18d69421005c71441c9d99a5',1,'api.php']]], + ['api_5faccount_5fverify_5fcredentials',['api_account_verify_credentials',['../include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad',1,'api.php']]], + ['api_5fapply_5ftemplate',['api_apply_template',['../include_2api_8php.html#a5990101034e7abf6404feba3cd273629',1,'api.php']]], + ['api_5fcall',['api_call',['../include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5',1,'api.php']]], + ['api_5fcontent',['api_content',['../mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d',1,'api.php']]], + ['api_5fdate',['api_date',['../include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25',1,'api.php']]], + ['api_5fdirect_5fmessages_5fall',['api_direct_messages_all',['../include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705',1,'api.php']]], + ['api_5fdirect_5fmessages_5fbox',['api_direct_messages_box',['../include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5',1,'api.php']]], + ['api_5fdirect_5fmessages_5fconversation',['api_direct_messages_conversation',['../include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3',1,'api.php']]], + ['api_5fdirect_5fmessages_5finbox',['api_direct_messages_inbox',['../include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2',1,'api.php']]], + ['api_5fdirect_5fmessages_5fnew',['api_direct_messages_new',['../include_2api_8php.html#a0991f72554f821255397d615e76f3203',1,'api.php']]], + ['api_5fdirect_5fmessages_5fsentbox',['api_direct_messages_sentbox',['../include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d',1,'api.php']]], + ['api_5fexport_5fbasic',['api_export_basic',['../include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53',1,'api.php']]], + ['api_5ffavorites',['api_favorites',['../include_2api_8php.html#a2c71b1226ef1283b5370bd1c200fee5f',1,'api.php']]], + ['api_5fff_5fids',['api_ff_ids',['../include_2api_8php.html#a36344c80b8e9755da2f2dd3a0e28cce8',1,'api.php']]], + ['api_5ffollowers_5fids',['api_followers_ids',['../include_2api_8php.html#ab1ecb58954f722444bfe03233345cb1b',1,'api.php']]], + ['api_5fformat_5fas',['api_format_as',['../include_2api_8php.html#a18cab7c6391df5c421753463f5d2a879',1,'api.php']]], + ['api_5fformat_5fitems',['api_format_items',['../include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea',1,'api.php']]], + ['api_5fformat_5fmessages',['api_format_messages',['../include_2api_8php.html#ae82608c317421f27446465aa6724733d',1,'api.php']]], + ['api_5ffriendica_5fversion',['api_friendica_version',['../include_2api_8php.html#a53b0680b682ae6078f2e1ed18cfb3f74',1,'api.php']]], + ['api_5ffriends_5fids',['api_friends_ids',['../include_2api_8php.html#acafd2899309a005fcb725289173dc7fe',1,'api.php']]], + ['api_5fget_5fuser',['api_get_user',['../include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa',1,'api.php']]], + ['api_5fhelp_5ftest',['api_help_test',['../include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23',1,'api.php']]], + ['api_5fitem_5fget_5fuser',['api_item_get_user',['../include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1',1,'api.php']]], + ['api_5flogin',['api_login',['../include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73',1,'api.php']]], + ['api_5foauth_5faccess_5ftoken',['api_oauth_access_token',['../include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0',1,'api.php']]], + ['api_5foauth_5frequest_5ftoken',['api_oauth_request_token',['../include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3',1,'api.php']]], + ['api_5fpost',['api_post',['../mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2',1,'api.php']]], + ['api_5fregister_5ffunc',['api_register_func',['../include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a',1,'api.php']]], + ['api_5frss_5fextra',['api_rss_extra',['../include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f',1,'api.php']]], + ['api_5fstatus_5fshow',['api_status_show',['../include_2api_8php.html#a645397787618b5c548a31e8686e8cca4',1,'api.php']]], + ['api_5fstatuses_5fdestroy',['api_statuses_destroy',['../include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4',1,'api.php']]], + ['api_5fstatuses_5ff',['api_statuses_f',['../include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410',1,'api.php']]], + ['api_5fstatuses_5ffollowers',['api_statuses_followers',['../include_2api_8php.html#a6951c690d87775eb37e569c66011988e',1,'api.php']]], + ['api_5fstatuses_5ffriends',['api_statuses_friends',['../include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e',1,'api.php']]], + ['api_5fstatuses_5fhome_5ftimeline',['api_statuses_home_timeline',['../include_2api_8php.html#a528d8070ee74ea800102936ce73cf366',1,'api.php']]], + ['api_5fstatuses_5fmediap',['api_statuses_mediap',['../include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95',1,'api.php']]], + ['api_5fstatuses_5fmentions',['api_statuses_mentions',['../include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e',1,'api.php']]], + ['api_5fstatuses_5fpublic_5ftimeline',['api_statuses_public_timeline',['../include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22',1,'api.php']]], + ['api_5fstatuses_5frepeat',['api_statuses_repeat',['../include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8',1,'api.php']]], + ['api_5fstatuses_5fshow',['api_statuses_show',['../include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63',1,'api.php']]], + ['api_5fstatuses_5fupdate',['api_statuses_update',['../include_2api_8php.html#ad4d1634df6b35126552324683caaffa2',1,'api.php']]], + ['api_5fstatuses_5fuser_5ftimeline',['api_statuses_user_timeline',['../include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283',1,'api.php']]], + ['api_5fstatusnet_5fconfig',['api_statusnet_config',['../include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08',1,'api.php']]], + ['api_5fstatusnet_5fversion',['api_statusnet_version',['../include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d',1,'api.php']]], + ['api_5fuser',['api_user',['../include_2api_8php.html#afb99daa6b731bf497b81f2128084852c',1,'api.php']]], + ['api_5fusers_5fshow',['api_users_show',['../include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76',1,'api.php']]], + ['app',['App',['../classApp.html',1,'']]], + ['appdirpath',['appdirpath',['../boot_8php.html#a75a90b0eadd0df510f7e63210733634d',1,'boot.php']]], + ['apps_2ephp',['apps.php',['../apps_8php.html',1,'']]], + ['apps_5fcontent',['apps_content',['../apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], + ['argc',['argc',['../boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7',1,'boot.php']]], + ['argv',['argv',['../boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006',1,'boot.php']]], + ['arr_5fadd_5fhashes',['arr_add_hashes',['../parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868',1,'parse_url.php']]], + ['array_5fsanitise',['array_sanitise',['../items_8php.html#abf7a1b73eb352d79acd36309b0dababd',1,'items.php']]], + ['array_5fxmlify',['array_xmlify',['../text_8php.html#acedb584f65114a33f389efb796172a91',1,'text.php']]], + ['atom_5fauthor',['atom_author',['../items_8php.html#adc8bda87ba08626f2a8cde7748d1bdae',1,'items.php']]], + ['atom_5fentry',['atom_entry',['../items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6',1,'items.php']]], + ['atom_5ftime',['ATOM_TIME',['../boot_8php.html#ad34c1547020a305915bcc39707744690',1,'boot.php']]], + ['attach_2ephp',['attach.php',['../mod_2attach_8php.html',1,'']]], + ['attach_2ephp',['attach.php',['../include_2attach_8php.html',1,'']]], + ['attach_5fby_5fhash',['attach_by_hash',['../include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36',1,'attach.php']]], + ['attach_5fby_5fhash_5fnodata',['attach_by_hash_nodata',['../include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932',1,'attach.php']]], + ['attach_5fcount_5ffiles',['attach_count_files',['../include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3',1,'attach.php']]], + ['attach_5fflag_5fdir',['ATTACH_FLAG_DIR',['../boot_8php.html#aa74438cf71e48e37bf7b440b94243985',1,'boot.php']]], + ['attach_5fflag_5fos',['ATTACH_FLAG_OS',['../boot_8php.html#a781916f83fcc8ff1035649afa45f0292',1,'boot.php']]], + ['attach_5finit',['attach_init',['../mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1',1,'attach.php']]], + ['attach_5flist_5ffiles',['attach_list_files',['../include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d',1,'attach.php']]], + ['attach_5fstore',['attach_store',['../include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f',1,'attach.php']]], + ['auth_2ephp',['auth.php',['../auth_8php.html',1,'']]], + ['authenticate_5fsuccess',['authenticate_success',['../security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733',1,'security.php']]], + ['avatar_5fimg',['avatar_img',['../include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7',1,'network.php']]] +]; diff --git a/doc/html/search/all_62.html b/doc/html/search/all_62.html new file mode 100644 index 000000000..f25fa2c88 --- /dev/null +++ b/doc/html/search/all_62.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_62.js b/doc/html/search/all_62.js new file mode 100644 index 000000000..49da6d91a --- /dev/null +++ b/doc/html/search/all_62.js @@ -0,0 +1,24 @@ +var searchData= +[ + ['base64url_5fdecode',['base64url_decode',['../text_8php.html#a13286f8a95d2de6b102966ecc270c8d6',1,'text.php']]], + ['base64url_5fencode',['base64url_encode',['../text_8php.html#a070384ec000fd65043fce11d5392d241',1,'text.php']]], + ['baseobject',['BaseObject',['../classBaseObject.html',1,'']]], + ['baseobject_2ephp',['BaseObject.php',['../BaseObject_8php.html',1,'']]], + ['bb2diaspora',['bb2diaspora',['../bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c',1,'bb2diaspora.php']]], + ['bb2diaspora_2ephp',['bb2diaspora.php',['../bb2diaspora_8php.html',1,'']]], + ['bb_5fshareattributes',['bb_ShareAttributes',['../bbcode_8php.html#a52c45273fbb7ce5ec27094f7936856e1',1,'bbcode.php']]], + ['bb_5fshareattributessimple',['bb_ShareAttributesSimple',['../bbcode_8php.html#a2be26414a367118143cc89e2d58e7377',1,'bbcode.php']]], + ['bb_5fspacefy',['bb_spacefy',['../bbcode_8php.html#a8911e027907820df3db03b4f76724b50',1,'bbcode.php']]], + ['bb_5ftag_5fpreg_5freplace',['bb_tag_preg_replace',['../bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba',1,'bb2diaspora.php']]], + ['bb_5ftranslate_5fvideo',['bb_translate_video',['../text_8php.html#a3d2793d66db3345fd290b71e2eadf98e',1,'text.php']]], + ['bb_5funspacefy_5fand_5ftrim',['bb_unspacefy_and_trim',['../bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d',1,'bbcode.php']]], + ['bbcode',['bbcode',['../bbcode_8php.html#a009f61aaf78771737ed0765c8463911b',1,'bbcode.php']]], + ['bbcode_2ephp',['bbcode.php',['../bbcode_8php.html',1,'']]], + ['bbtoevent',['bbtoevent',['../event_8php.html#a180cccd63c2a2f00ff432b03113531f3',1,'event.php']]], + ['bbtovcal',['bbtovcal',['../event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279',1,'event.php']]], + ['best_5flink_5furl',['best_link_url',['../conversation_8php.html#a32e7750ae6adbfdd1f227f6e89221ce3',1,'conversation.php']]], + ['boot_2ephp',['boot.php',['../boot_8php.html',1,'']]], + ['breaklines',['breaklines',['../html2plain_8php.html#a3214912e3d00cf0a948072daccf16740',1,'html2plain.php']]], + ['build_5fpagehead',['build_pagehead',['../classApp.html#a08f0537964d98958d218066364cff785',1,'App']]], + ['build_5fquerystring',['build_querystring',['../boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e',1,'boot.php']]] +]; diff --git a/doc/html/search/all_63.html b/doc/html/search/all_63.html new file mode 100644 index 000000000..e7f34db58 --- /dev/null +++ b/doc/html/search/all_63.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_63.js b/doc/html/search/all_63.js new file mode 100644 index 000000000..b43f29e9f --- /dev/null +++ b/doc/html/search/all_63.js @@ -0,0 +1,113 @@ +var searchData= +[ + ['cache',['Cache',['../classCache.html',1,'']]], + ['cache_2ephp',['cache.php',['../cache_8php.html',1,'']]], + ['cal',['cal',['../datetime_8php.html#aea356409ba69f9de412298c998595dd2',1,'datetime.php']]], + ['categories_5fwidget',['categories_widget',['../contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353',1,'contact_widgets.php']]], + ['change_5fchannel',['change_channel',['../security_8php.html#a8d23d2597aae380a3341872fe9513380',1,'security.php']]], + ['change_5fpermissions',['change_permissions',['../classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67',1,'ProtoDriver\change_permissions()'],['../classZotDriver.html#a6776935156accb0f170e2e24577133db',1,'ZotDriver\change_permissions()']]], + ['chanlink_5fcid',['chanlink_cid',['../text_8php.html#a85e3a4851c16674834010d8419a5d7ca',1,'text.php']]], + ['chanlink_5fhash',['chanlink_hash',['../text_8php.html#a8c5d610a901665dfe6cbb64d39bfaa2f',1,'text.php']]], + ['chanlink_5furl',['chanlink_url',['../text_8php.html#a2e8d6c402603be3a1256a16605e09c2a',1,'text.php']]], + ['channel_2ephp',['channel.php',['../channel_8php.html',1,'']]], + ['channel_5faside',['channel_aside',['../channel_8php.html#aea8e189f2fbabfda779349dd94082e8e',1,'channel.php']]], + ['channel_5fcontent',['channel_content',['../channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1',1,'channel.php']]], + ['channel_5finit',['channel_init',['../channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc',1,'channel.php']]], + ['channel_5fremove',['channel_remove',['../Contact_8php.html#ad46ff6764f12b6d3ab45c49b797f98aa',1,'Contact.php']]], + ['channelx_5fby_5fhash',['channelx_by_hash',['../Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258',1,'Contact.php']]], + ['channelx_5fby_5fn',['channelx_by_n',['../Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc',1,'Contact.php']]], + ['channelx_5fby_5fnick',['channelx_by_nick',['../Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e',1,'Contact.php']]], + ['chanview_2ephp',['chanview.php',['../chanview_8php.html',1,'']]], + ['chanview_5fcontent',['chanview_content',['../chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b',1,'chanview.php']]], + ['check_5faccount_5fadmin',['check_account_admin',['../account_8php.html#a917d74aad0baf3e0c4b51cf1051e654f',1,'account.php']]], + ['check_5faccount_5femail',['check_account_email',['../account_8php.html#ae052bd5558847bd38e89c213561a9771',1,'account.php']]], + ['check_5faccount_5finvite',['check_account_invite',['../account_8php.html#aaff7720423417a4333697894ffd9ddeb',1,'account.php']]], + ['check_5faccount_5fpassword',['check_account_password',['../account_8php.html#a144b4891022567668375b58ea61cfff0',1,'account.php']]], + ['check_5fadd',['check_add',['../setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1',1,'setup.php']]], + ['check_5fconfig',['check_config',['../boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3',1,'boot.php']]], + ['check_5fform_5fsecurity_5fstd_5ferr_5fmsg',['check_form_security_std_err_msg',['../security_8php.html#a20f8b9851f23ee8894b8925584ef6821',1,'security.php']]], + ['check_5fform_5fsecurity_5ftoken',['check_form_security_token',['../security_8php.html#a9c6180e82150a5a9af91a1255d096b5c',1,'security.php']]], + ['check_5fform_5fsecurity_5ftoken_5fforbiddenonerr',['check_form_security_token_ForbiddenOnErr',['../security_8php.html#a444ac867dfa8c37cf0a7a226412bee28',1,'security.php']]], + ['check_5fform_5fsecurity_5ftoken_5fredirectonerr',['check_form_security_token_redirectOnErr',['../security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433',1,'security.php']]], + ['check_5ffuncs',['check_funcs',['../setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e',1,'setup.php']]], + ['check_5fhtaccess',['check_htaccess',['../setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4',1,'setup.php']]], + ['check_5fhtconfig',['check_htconfig',['../setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f',1,'setup.php']]], + ['check_5fkeys',['check_keys',['../setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76',1,'setup.php']]], + ['check_5flist_5fpermissions',['check_list_permissions',['../permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7',1,'permissions.php']]], + ['check_5fphp',['check_php',['../setup_8php.html#a14d208682a88632290c895d20da6e7d6',1,'setup.php']]], + ['check_5fsmarty3',['check_smarty3',['../setup_8php.html#afd8b0b3ade1507c45325caf377bf459d',1,'setup.php']]], + ['check_5fwall_5fto_5fwall',['check_wall_to_wall',['../classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8',1,'Item']]], + ['check_5fwebbie',['check_webbie',['../text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3',1,'text.php']]], + ['clean_5furls',['clean_urls',['../boot_8php.html#ab79b8b4555cae20d03f8200666d89d63',1,'boot.php']]], + ['clear',['clear',['../classCache.html#ab14d0f4bdf7116a94d545c574b38f568',1,'Cache']]], + ['cleardiv',['cleardiv',['../text_8php.html#a8c59dbc3c93b2601c6bb22ddff163349',1,'text.php']]], + ['cli_5fstartup',['cli_startup',['../cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b',1,'cli_startup.php']]], + ['cli_5fstartup_2ephp',['cli_startup.php',['../cli__startup_8php.html',1,'']]], + ['collect',['collect',['../classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d',1,'ProtoDriver\collect()'],['../classZotDriver.html#af65febb26031eb7f39871b9e2a539797',1,'ZotDriver\collect()']]], + ['collect_5fprivate',['collect_private',['../classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b',1,'ProtoDriver\collect_private()'],['../classZotDriver.html#a2e15ff09772f0608203dad1c98299394',1,'ZotDriver\collect_private()']]], + ['collect_5frecipients',['collect_recipients',['../items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70',1,'items.php']]], + ['collecturls',['collecturls',['../html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201',1,'html2plain.php']]], + ['common_2ephp',['common.php',['../common_8php.html',1,'']]], + ['common_5faside',['common_aside',['../common_8php.html#a3b12ec67b3d3edcf595c8d195da5d14a',1,'common.php']]], + ['common_5fcontent',['common_content',['../common_8php.html#ab63408f39abef7a6915186e8dabc5a96',1,'common.php']]], + ['common_5ffriends',['common_friends',['../socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918',1,'socgraph.php']]], + ['common_5ffriends_5fvisitor_5fwidget',['common_friends_visitor_widget',['../contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65',1,'contact_widgets.php']]], + ['common_5ffriends_5fzcid',['common_friends_zcid',['../socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9',1,'socgraph.php']]], + ['common_5finit',['common_init',['../common_8php.html#aca62f113655809f41f49042ce9b123c2',1,'common.php']]], + ['community_2ephp',['community.php',['../community_8php.html',1,'']]], + ['community_5fcontent',['community_content',['../community_8php.html#a1197aafd6a6b540dbb4a0c04ade3a25a',1,'community.php']]], + ['community_5finit',['community_init',['../community_8php.html#a56c94ec978a38633c5628fa6f8e386d9',1,'community.php']]], + ['compare_5fpermissions',['compare_permissions',['../items_8php.html#a0790a4550b829e85504af548623002ca',1,'items.php']]], + ['completeurl',['completeurl',['../parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a',1,'parse_url.php']]], + ['config_2emd',['config.md',['../config_8md.html',1,'']]], + ['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]], + ['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]], + ['connections_2ephp',['connections.php',['../connections_8php.html',1,'']]], + ['connections_5faside',['connections_aside',['../connections_8php.html#af48f7ad20914760ba9874c090384e35a',1,'connections.php']]], + ['connections_5fcontent',['connections_content',['../connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c',1,'connections.php']]], + ['connections_5finit',['connections_init',['../connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558',1,'connections.php']]], + ['connections_5fpost',['connections_post',['../connections_8php.html#a1224058db8e3fb56463eb312f98e561d',1,'connections.php']]], + ['construct_5factivity_5fobject',['construct_activity_object',['../items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee',1,'items.php']]], + ['construct_5factivity_5ftarget',['construct_activity_target',['../items_8php.html#aa579bc4445d60098b1410961ca8e96b7',1,'items.php']]], + ['construct_5fpage',['construct_page',['../boot_8php.html#acc4e0c910af066148b810e5fde55fff1',1,'boot.php']]], + ['construct_5fverb',['construct_verb',['../items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8',1,'items.php']]], + ['consume_5ffeed',['consume_feed',['../items_8php.html#a8794863cdf8ce1333040933d3a3f66bd',1,'items.php']]], + ['contact_2ephp',['Contact.php',['../Contact_8php.html',1,'']]], + ['contact_5fis_5ffollower',['CONTACT_IS_FOLLOWER',['../boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29',1,'boot.php']]], + ['contact_5fis_5ffriend',['CONTACT_IS_FRIEND',['../boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f',1,'boot.php']]], + ['contact_5fis_5fsharing',['CONTACT_IS_SHARING',['../boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9',1,'boot.php']]], + ['contact_5fpoll_5finterval',['contact_poll_interval',['../contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f',1,'contact_selectors.php']]], + ['contact_5fprofile_5fassign',['contact_profile_assign',['../contact__selectors_8php.html#aba7a4db18efa41d78bed1076b2d59886',1,'contact_selectors.php']]], + ['contact_5fremove',['contact_remove',['../Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6',1,'Contact.php']]], + ['contact_5freputation',['contact_reputation',['../contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53',1,'contact_selectors.php']]], + ['contact_5fselect',['contact_select',['../acl__selectors_8php.html#a9476997d2968a5794f3723878ed89c91',1,'acl_selectors.php']]], + ['contact_5fselectors_2ephp',['contact_selectors.php',['../contact__selectors_8php.html',1,'']]], + ['contact_5fwidgets_2ephp',['contact_widgets.php',['../contact__widgets_8php.html',1,'']]], + ['contactgroup_2ephp',['contactgroup.php',['../contactgroup_8php.html',1,'']]], + ['contactgroup_5fcontent',['contactgroup_content',['../contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3',1,'contactgroup.php']]], + ['contacts_5fnot_5fgrouped',['contacts_not_grouped',['../Contact_8php.html#a228fc01f90ae9bfdde4c2ad0772bd7dc',1,'Contact.php']]], + ['conv_5fsort',['conv_sort',['../conversation_8php.html#abed85a41f1160598de880b84021c9cf7',1,'conversation.php']]], + ['conversation',['Conversation',['../classConversation.html',1,'']]], + ['conversation_2ephp',['conversation.php',['../conversation_8php.html',1,'']]], + ['conversationobject_2ephp',['ConversationObject.php',['../ConversationObject_8php.html',1,'']]], + ['convert',['convert',['../namespacefriendica-to-smarty-tpl.html#a38503e37fe68ac27c88cce91a9ac9efa',1,'friendica-to-smarty-tpl']]], + ['convert_5fxml_5felement_5fto_5farray',['convert_xml_element_to_array',['../include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246',1,'network.php']]], + ['count_5fall_5ffriends',['count_all_friends',['../socgraph_8php.html#af29d056beec10b4e38e5209c92452894',1,'socgraph.php']]], + ['count_5fcommon_5ffriends',['count_common_friends',['../socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84',1,'socgraph.php']]], + ['count_5fcommon_5ffriends_5fzcid',['count_common_friends_zcid',['../socgraph_8php.html#af175807406d94407a5e11742a3287746',1,'socgraph.php']]], + ['count_5fdescendants',['count_descendants',['../classItem.html#aca1e66988ed00cd627b2a359b72cd0ae',1,'Item\count_descendants()'],['../conversation_8php.html#ab2383dff4f823e580399ff469d90ab19',1,'count_descendants(): conversation.php']]], + ['create_5faccount',['create_account',['../account_8php.html#a141fe579c351c78209d425473f978eb5',1,'account.php']]], + ['create_5fidentity',['create_identity',['../identity_8php.html#a345f4c943d84de502ec6e72d2c813945',1,'identity.php']]], + ['crepair_2ephp',['crepair.php',['../crepair_8php.html',1,'']]], + ['crepair_5fcontent',['crepair_content',['../crepair_8php.html#a29464c01838e209c8059cfcd2d195caa',1,'crepair.php']]], + ['crepair_5finit',['crepair_init',['../crepair_8php.html#ab089978e50df156bbfabf9f8f5ccd198',1,'crepair.php']]], + ['crepair_5fpost',['crepair_post',['../crepair_8php.html#acc4493e1ffd1462a605dd9b870034513',1,'crepair.php']]], + ['cronhooks_2ephp',['cronhooks.php',['../cronhooks_8php.html',1,'']]], + ['cronhooks_5frun',['cronhooks_run',['../cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca',1,'cronhooks.php']]], + ['cropimage',['cropImage',['../classPhoto.html#a4ace266825f6b2bbc3c7f990f5d92500',1,'Photo']]], + ['crypto_2ephp',['crypto.php',['../crypto_8php.html',1,'']]], + ['curpageurl',['curPageURL',['../boot_8php.html#aa4221641e5c21db69fa52c426b9017f5',1,'boot.php']]], + ['current_5ftheme',['current_theme',['../boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13',1,'boot.php']]], + ['current_5ftheme_5furl',['current_theme_url',['../boot_8php.html#ab2878f40a7f3978476fcfb4c95b96806',1,'boot.php']]], + ['cli_20config_20utility',['CLI config utility',['../md_config.html',1,'']]] +]; diff --git a/doc/html/search/all_64.html b/doc/html/search/all_64.html new file mode 100644 index 000000000..360601fa7 --- /dev/null +++ b/doc/html/search/all_64.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_64.js b/doc/html/search/all_64.js new file mode 100644 index 000000000..d055c5ef2 --- /dev/null +++ b/doc/html/search/all_64.js @@ -0,0 +1,65 @@ +var searchData= +[ + ['datesel',['datesel',['../datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8',1,'datetime.php']]], + ['datesel_5fformat',['datesel_format',['../datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa',1,'datetime.php']]], + ['datetime_2ephp',['datetime.php',['../datetime_8php.html',1,'']]], + ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], + ['db_5fupdate_2ephp',['db_update.php',['../db__update_8php.html',1,'']]], + ['db_5fupdate_5fversion',['DB_UPDATE_VERSION',['../boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03',1,'boot.php']]], + ['dba',['dba',['../classdba.html',1,'']]], + ['dba_2ephp',['dba.php',['../dba_8php.html',1,'']]], + ['dba_5ftimer',['dba_timer',['../boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4',1,'boot.php']]], + ['dbesc',['dbesc',['../dba_8php.html#ab222aa1dbf9ea93b320f82028739127e',1,'dba.php']]], + ['dbesc_5farray',['dbesc_array',['../dba_8php.html#a65b83462bd26968106aebd43f16540e4',1,'dba.php']]], + ['dbesc_5farray_5fcb',['dbesc_array_cb',['../dba_8php.html#af531546fac5f0836a8557a4f6dfee930',1,'dba.php']]], + ['dbg',['dbg',['../classdba.html#a2c6fecf396c66e07f00276fc18d31ca7',1,'dba\dbg()'],['../dba_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb',1,'dbg(): dba.php']]], + ['dbq',['dbq',['../dba_8php.html#aa377074e70981e8c4e82ca0accd068ee',1,'dba.php']]], + ['decode_5ftags',['decode_tags',['../items_8php.html#a56b2a4abcadfac71175cd50555528cc3',1,'items.php']]], + ['default_2ephp',['default.php',['../default_8php.html',1,'']]], + ['default_5fdb_5fengine',['DEFAULT_DB_ENGINE',['../boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d',1,'boot.php']]], + ['del_5fconfig',['del_config',['../include_2config_8php.html#a549910227348003efc3c05c9105c42da',1,'config.php']]], + ['del_5fpconfig',['del_pconfig',['../include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941',1,'config.php']]], + ['delegate_2ephp',['delegate.php',['../delegate_8php.html',1,'']]], + ['delegate_5fcontent',['delegate_content',['../delegate_8php.html#a943eea8996ef348eb845c498f9f354dd',1,'delegate.php']]], + ['delete_5fimported_5fitem',['delete_imported_item',['../zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72',1,'zot.php']]], + ['delete_5fitem_5flowlevel',['delete_item_lowlevel',['../items_8php.html#a2b56a4c01bd22a648d52ec9af1a04259',1,'items.php']]], + ['deletenode',['deletenode',['../html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2',1,'html2bbcode.php']]], + ['deliver',['deliver',['../classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b',1,'ProtoDriver\deliver()'],['../classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f',1,'ZotDriver\deliver()']]], + ['deliver_2ephp',['deliver.php',['../deliver_8php.html',1,'']]], + ['deliver_5fprivate',['deliver_private',['../classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181',1,'ProtoDriver\deliver_private()'],['../classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6',1,'ZotDriver\deliver_private()']]], + ['deliver_5frun',['deliver_run',['../deliver_8php.html#a397afcb9afecf0c1816b0951189dd346',1,'deliver.php']]], + ['dertopem',['DerToPem',['../crypto_8php.html#a630e1574554f34e7c38511585d9e71a2',1,'crypto.php']]], + ['dertorsa',['DerToRsa',['../crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839',1,'crypto.php']]], + ['detect_5flanguage',['detect_language',['../language_8php.html#a2b07ec591277aaae57e4d03a12c929b7',1,'language.php']]], + ['dfrn_5fdeliver',['dfrn_deliver',['../items_8php.html#a8395d189a36abfa0dfff81a2b0e70669',1,'items.php']]], + ['diaspora2bb',['diaspora2bb',['../bb2diaspora_8php.html#a26c09c218413610e62e60754c579f6c6',1,'bb2diaspora.php']]], + ['diaspora_5fol',['diaspora_ol',['../bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4',1,'bb2diaspora.php']]], + ['diaspora_5ful',['diaspora_ul',['../bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc',1,'bb2diaspora.php']]], + ['dir_5ffns_2ephp',['dir_fns.php',['../dir__fns_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../include_2directory_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], + ['directory_5faside',['directory_aside',['../mod_2directory_8php.html#aa1d928543212871491706216742dd73c',1,'directory.php']]], + ['directory_5fcontent',['directory_content',['../mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44',1,'directory.php']]], + ['directory_5ffallback_5fmaster',['DIRECTORY_FALLBACK_MASTER',['../boot_8php.html#abedd940e664017c61b48c6efa31d0cb8',1,'boot.php']]], + ['directory_5finit',['directory_init',['../mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf',1,'directory.php']]], + ['directory_5fmode_5fnormal',['DIRECTORY_MODE_NORMAL',['../boot_8php.html#ab7d65a7e7417825a4db62906bb600729',1,'boot.php']]], + ['directory_5fmode_5fprimary',['DIRECTORY_MODE_PRIMARY',['../boot_8php.html#a8a60cc38bb567765fd926fef70205f16',1,'boot.php']]], + ['directory_5fmode_5fsecondary',['DIRECTORY_MODE_SECONDARY',['../boot_8php.html#aedfb9501ed408278667995524e0d15cf',1,'boot.php']]], + ['directory_5fmode_5fstandalone',['DIRECTORY_MODE_STANDALONE',['../boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8',1,'boot.php']]], + ['directory_5frealm',['DIRECTORY_REALM',['../boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd',1,'boot.php']]], + ['directory_5frun',['directory_run',['../include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0',1,'directory.php']]], + ['dirfind_2ephp',['dirfind.php',['../dirfind_8php.html',1,'']]], + ['dirfind_5fcontent',['dirfind_content',['../dirfind_8php.html#af22b0283f928c4c32e62248a5ae67cee',1,'dirfind.php']]], + ['dirfind_5finit',['dirfind_init',['../dirfind_8php.html#ac689a812c84f161b3a0d42349f83981c',1,'dirfind.php']]], + ['dirsearch_2ephp',['dirsearch.php',['../dirsearch_8php.html',1,'']]], + ['dirsearch_5fcontent',['dirsearch_content',['../dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c',1,'dirsearch.php']]], + ['dirsearch_5finit',['dirsearch_init',['../dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752',1,'dirsearch.php']]], + ['discover',['discover',['../classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337',1,'ProtoDriver\discover()'],['../classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514',1,'ZotDriver\discover()']]], + ['display_2ephp',['display.php',['../display_8php.html',1,'']]], + ['display_5fcontent',['display_content',['../display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0',1,'display.php']]], + ['do',['do',['../docblox__errorchecker_8php.html#a721c6ff80a6d3e4ad4ffa52a04c60085',1,'docblox_errorchecker.php']]], + ['dob',['dob',['../datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8',1,'datetime.php']]], + ['docblox_5ferrorchecker_2ephp',['docblox_errorchecker.php',['../docblox__errorchecker_8php.html',1,'']]], + ['drop_5fitem',['drop_item',['../items_8php.html#afa1db13c2a8b73b5b17b97f17e5a19d1',1,'items.php']]], + ['drop_5fitems',['drop_items',['../items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55',1,'items.php']]] +]; diff --git a/doc/html/search/all_65.html b/doc/html/search/all_65.html new file mode 100644 index 000000000..c2f4fcd94 --- /dev/null +++ b/doc/html/search/all_65.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_65.js b/doc/html/search/all_65.js new file mode 100644 index 000000000..0adc9c986 --- /dev/null +++ b/doc/html/search/all_65.js @@ -0,0 +1,32 @@ +var searchData= +[ + ['editpost_2ephp',['editpost.php',['../editpost_8php.html',1,'']]], + ['editpost_5fcontent',['editpost_content',['../editpost_8php.html#a34011690864d122680c802e9e748ccfb',1,'editpost.php']]], + ['else',['else',['../auth_8php.html#a0950af7c2888ca1d4743fe5d0bff9ae5',1,'else(): auth.php'],['../fpostit_8php.html#a501b5ca82f287509fc691c88524064c1',1,'else(): fpostit.php']]], + ['email_5fheader_5fencode',['email_header_encode',['../include_2network_8php.html#a540420ff3675a72cb781ef9a7e8c2cd9',1,'network.php']]], + ['email_5fsend',['email_send',['../include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0',1,'network.php']]], + ['encode_5fitem',['encode_item',['../items_8php.html#a82955cc578f0fa600acec84475026194',1,'items.php']]], + ['encode_5fitem_5fflags',['encode_item_flags',['../items_8php.html#a5f690fc2484abec07840b4f9dd525bd9',1,'items.php']]], + ['encode_5fitem_5fterms',['encode_item_terms',['../items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a',1,'items.php']]], + ['encode_5fitem_5fxchan',['encode_item_xchan',['../items_8php.html#a566c601726697e044e75284af7fb6f17',1,'items.php']]], + ['encode_5fmail',['encode_mail',['../items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7',1,'items.php']]], + ['encode_5frel_5flinks',['encode_rel_links',['../items_8php.html#aa723c0571e314a1853a24c5854b4f54f',1,'items.php']]], + ['enotify',['enotify',['../classenotify.html',1,'']]], + ['enotify_2ephp',['enotify.php',['../enotify_8php.html',1,'']]], + ['enumerate_5fpermissions',['enumerate_permissions',['../items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67',1,'items.php']]], + ['eol',['EOL',['../boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b',1,'boot.php']]], + ['eot',['EOT',['../typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805',1,'typohelper.php']]], + ['escape',['escape',['../classdba.html#a522329687ff042074c1cbc8bd3226d2f',1,'dba']]], + ['ev_5fcompare',['ev_compare',['../event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850',1,'event.php']]], + ['event_2ephp',['event.php',['../event_8php.html',1,'']]], + ['event_5fstore',['event_store',['../event_8php.html#a89ef533faf345db8d64a58d4856bde3a',1,'event.php']]], + ['events_2ephp',['events.php',['../events_8php.html',1,'']]], + ['events_5fcontent',['events_content',['../events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec',1,'events.php']]], + ['events_5fpost',['events_post',['../events_8php.html#ab3e8a8f901175f8e40a8089eea45c075',1,'events.php']]], + ['excludepaths',['excludepaths',['../namespaceupdatetpl.html#a988d937ed5d5c2b592b763036af5cf94',1,'updatetpl']]], + ['expand_5fgroups',['expand_groups',['../include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345',1,'group.php']]], + ['expire_2ephp',['expire.php',['../expire_8php.html',1,'']]], + ['expire_5frun',['expire_run',['../expire_8php.html#a444e45c9b67727b27db4c779fd51a298',1,'expire.php']]], + ['ext',['ext',['../namespacefriendica-to-smarty-tpl.html#aecf730e0884bb4ddc6c0deb1ef85f8eb',1,'friendica-to-smarty-tpl']]], + ['extract_2ephp',['extract.php',['../extract_8php.html',1,'']]] +]; diff --git a/doc/html/search/all_66.html b/doc/html/search/all_66.html new file mode 100644 index 000000000..a9ac881c0 --- /dev/null +++ b/doc/html/search/all_66.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_66.js b/doc/html/search/all_66.js new file mode 100644 index 000000000..6de1d5d5f --- /dev/null +++ b/doc/html/search/all_66.js @@ -0,0 +1,77 @@ +var searchData= +[ + ['f',['f',['../namespacefriendica-to-smarty-tpl.html#a965e1d6d6293654a56e029a7e454dec7',1,'friendica-to-smarty-tpl']]], + ['fbrowser_2ephp',['fbrowser.php',['../fbrowser_8php.html',1,'']]], + ['fbrowser_5fcontent',['fbrowser_content',['../fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4',1,'fbrowser.php']]], + ['fcontact_2ephp',['fcontact.php',['../fcontact_8php.html',1,'']]], + ['fcontact_5fstore',['fcontact_store',['../fcontact_8php.html#a4ce1d8d444c938790e0d50e003d04a15',1,'fcontact.php']]], + ['feature_5fenabled',['feature_enabled',['../features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0',1,'features.php']]], + ['features_2ephp',['features.php',['../features_8php.html',1,'']]], + ['feed_2ephp',['feed.php',['../feed_8php.html',1,'']]], + ['feed_5finit',['feed_init',['../feed_8php.html#af86137700b56f33d1d5f25c8dec22c04',1,'feed.php']]], + ['fetch_5flrdd_5ftemplate',['fetch_lrdd_template',['../include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0',1,'network.php']]], + ['fetch_5fpost_5ftags',['fetch_post_tags',['../items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9',1,'items.php']]], + ['fetch_5furl',['fetch_url',['../include_2network_8php.html#a37ddeb88a3fd1dee9e8339723f9edf9a',1,'network.php']]], + ['fetch_5fxrd_5flinks',['fetch_xrd_links',['../include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d',1,'network.php']]], + ['ffinder_5fstore',['ffinder_store',['../fcontact_8php.html#a4512592814dc7883b57bf01ac33353f6',1,'fcontact.php']]], + ['field_5ftimezone',['field_timezone',['../datetime_8php.html#a03900dcf0f9e3c58793a031673a70326',1,'datetime.php']]], + ['file_5ftag_5fdecode',['file_tag_decode',['../text_8php.html#a08df5164926d2b31b8e9fcfe919de2b6',1,'text.php']]], + ['file_5ftag_5fencode',['file_tag_encode',['../text_8php.html#a3299482ac20e9d79453048dd52881d37',1,'text.php']]], + ['file_5ftag_5ffile_5fquery',['file_tag_file_query',['../text_8php.html#a163b5131f388080b0fc82398d3a32fe1',1,'text.php']]], + ['file_5ftag_5ffile_5fto_5flist',['file_tag_file_to_list',['../text_8php.html#a544fc13c1798371e5a5984b5482108f8',1,'text.php']]], + ['file_5ftag_5flist_5fto_5ffile',['file_tag_list_to_file',['../text_8php.html#abb55ec0142207aeec3d90b25ed4d7266',1,'text.php']]], + ['file_5ftag_5fsave_5ffile',['file_tag_save_file',['../text_8php.html#a30311fd46e05be0e2cc466118641a4ed',1,'text.php']]], + ['file_5ftag_5funsave_5ffile',['file_tag_unsave_file',['../text_8php.html#a48f6d04513d26270e10e9b7d153f7526',1,'text.php']]], + ['file_5ftag_5fupdate_5fpconfig',['file_tag_update_pconfig',['../text_8php.html#abbe4894b4e746e47e1f91c7df27f6e81',1,'text.php']]], + ['fileas_5fwidget',['fileas_widget',['../contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b',1,'contact_widgets.php']]], + ['filename',['filename',['../namespacefriendica-to-smarty-tpl.html#a5f9bf7a67d955c0d6be70a82097611c5',1,'friendica-to-smarty-tpl']]], + ['filer_2ephp',['filer.php',['../filer_8php.html',1,'']]], + ['filer_5fcontent',['filer_content',['../filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274',1,'filer.php']]], + ['filerm_2ephp',['filerm.php',['../filerm_8php.html',1,'']]], + ['filerm_5fcontent',['filerm_content',['../filerm_8php.html#ae2eb28d2054fa2c37e38689882172208',1,'filerm.php']]], + ['files',['files',['../namespacefriendica-to-smarty-tpl.html#ae74419b16516956c66f7db714a93a6ac',1,'friendica-to-smarty-tpl']]], + ['find_5fthread_5fparent_5findex',['find_thread_parent_index',['../conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6',1,'conversation.php']]], + ['find_5fupstream_5fdirectory',['find_upstream_directory',['../dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d',1,'dir_fns.php']]], + ['find_5fxchan_5fin_5farray',['find_xchan_in_array',['../text_8php.html#ace3c98538c63e09b70a363210b414112',1,'text.php']]], + ['findpeople_5fwidget',['findpeople_widget',['../contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6',1,'contact_widgets.php']]], + ['first_5fpost_5fdate',['first_post_date',['../items_8php.html#a0cf98bb619f07dd18f602683a55a5f59',1,'items.php']]], + ['fix_5fattached_5ffile_5fpermissions',['fix_attached_file_permissions',['../item_8php.html#a3daae7944f737bd30412a0d042207c0f',1,'item.php']]], + ['fix_5fattached_5fphoto_5fpermissions',['fix_attached_photo_permissions',['../item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10',1,'item.php']]], + ['fix_5fcontact_5fssl_5fpolicy',['fix_contact_ssl_policy',['../include_2network_8php.html#a2729d012410e470c527a62a3f777ded8',1,'network.php']]], + ['fix_5felement',['fix_element',['../namespacefriendica-to-smarty-tpl.html#a3719dd46e286a57d315e6adae1845854',1,'friendica-to-smarty-tpl']]], + ['fix_5fmce_5flf',['fix_mce_lf',['../text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28',1,'text.php']]], + ['fix_5fprivate_5fphotos',['fix_private_photos',['../items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87',1,'items.php']]], + ['fixacl',['fixacl',['../acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e',1,'acl_selectors.php']]], + ['fkoauth1',['FKOAuth1',['../classFKOAuth1.html',1,'']]], + ['fkoauthdatastore',['FKOAuthDataStore',['../classFKOAuthDataStore.html',1,'']]], + ['flip',['flip',['../classPhoto.html#a7acd95a0380f95999dd069fbb5629ea5',1,'Photo']]], + ['fnull',['fnull',['../namespaceupdatetpl.html#a79c20eb62d568c999b56eb08530355d3',1,'updatetpl']]], + ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], + ['follow_2ephp',['follow.php',['../mod_2follow_8php.html',1,'']]], + ['follow_5finit',['follow_init',['../mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a',1,'follow.php']]], + ['follow_5fwidget',['follow_widget',['../contact__widgets_8php.html#af24e693532a045954caab515942cfc6f',1,'contact_widgets.php']]], + ['foreach',['foreach',['../typo_8php.html#a3bb638ebb8472e4ee7c85afe721f4fe3',1,'typo.php']]], + ['format_5fcss_5fif_5fexists',['format_css_if_exists',['../plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6',1,'plugin.php']]], + ['format_5fevent_5fbbcode',['format_event_bbcode',['../event_8php.html#abb74206cf42d694307c3d7abb7af9869',1,'event.php']]], + ['format_5fevent_5fdiaspora',['format_event_diaspora',['../bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863',1,'bb2diaspora.php']]], + ['format_5fevent_5fhtml',['format_event_html',['../event_8php.html#a2ac9f1b08de03250ecd794f705781d17',1,'event.php']]], + ['format_5fjs_5fif_5fexists',['format_js_if_exists',['../plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f',1,'plugin.php']]], + ['format_5flocation',['format_location',['../conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3',1,'conversation.php']]], + ['format_5fnotification',['format_notification',['../include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3',1,'notify.php']]], + ['format_5fterm_5ffor_5fdisplay',['format_term_for_display',['../text_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1',1,'text.php']]], + ['fpostit_2ephp',['fpostit.php',['../fpostit_8php.html',1,'']]], + ['fresh_2emd',['fresh.md',['../fresh_8md.html',1,'']]], + ['friendica',['Friendica',['../namespaceFriendica.html',1,'']]], + ['friendica_2dto_2dsmarty_2dtpl',['friendica-to-smarty-tpl',['../namespacefriendica-to-smarty-tpl.html',1,'']]], + ['friendica_2dto_2dsmarty_2dtpl_2epy',['friendica-to-smarty-tpl.py',['../friendica-to-smarty-tpl_8py.html',1,'']]], + ['friendica_5fplatform',['FRIENDICA_PLATFORM',['../boot_8php.html#a7a27d05ec84f9eef2f06097e6b8892f3',1,'boot.php']]], + ['friendica_5fsmarty_2ephp',['friendica_smarty.php',['../friendica__smarty_8php.html',1,'']]], + ['friendica_5fversion',['FRIENDICA_VERSION',['../boot_8php.html#a78d5f284dc096b2a739c1fa47f22b7be',1,'boot.php']]], + ['friendicasmarty',['FriendicaSmarty',['../classFriendicaSmarty.html',1,'']]], + ['fsuggest_2ephp',['fsuggest.php',['../fsuggest_8php.html',1,'']]], + ['fsuggest_5fcontent',['fsuggest_content',['../fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998',1,'fsuggest.php']]], + ['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,'']]], + ['fresh_20_2d_20the_20friendica_20red_20shell',['Fresh - The Friendica REd Shell',['../md_fresh.html',1,'']]] +]; diff --git a/doc/html/search/all_67.html b/doc/html/search/all_67.html new file mode 100644 index 000000000..747fb512c --- /dev/null +++ b/doc/html/search/all_67.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_67.js b/doc/html/search/all_67.js new file mode 100644 index 000000000..dce34d8e3 --- /dev/null +++ b/doc/html/search/all_67.js @@ -0,0 +1,101 @@ +var searchData= +[ + ['gen_5ftoken',['gen_token',['../classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819',1,'FKOAuthDataStore']]], + ['gender_5fselector',['gender_selector',['../profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355',1,'profile_selectors.php']]], + ['generate_5fuser_5fguid',['generate_user_guid',['../text_8php.html#a149372f9167903c31d4cdb9e81ac0d19',1,'text.php']]], + ['get',['get',['../classCache.html#a70392b109331897bf9fdd7f1960e21de',1,'Cache']]], + ['get_5faccount',['get_account',['../classApp.html#a08bc87aff64f39fbc084e9d6545cee4d',1,'App']]], + ['get_5faccount_5fid',['get_account_id',['../boot_8php.html#afe88b920aa285982edb817a0dd44eb37',1,'boot.php']]], + ['get_5fall_5fperms',['get_all_perms',['../permissions_8php.html#aeca9b280f3dc3358c89976d81d690008',1,'permissions.php']]], + ['get_5fapp',['get_app',['../classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2',1,'BaseObject\get_app()'],['../boot_8php.html#a0e6db7e365f2b041a828b93786f694bc',1,'get_app(): boot.php']]], + ['get_5fapps',['get_apps',['../classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad',1,'App']]], + ['get_5fatom_5felements',['get_atom_elements',['../items_8php.html#a896c1809d58f2d7a42cfe14577958ddf',1,'items.php']]], + ['get_5fbaseurl',['get_baseurl',['../classApp.html#a604d659d6977a99de42a160343e5289a',1,'App']]], + ['get_5fbb_5ftag_5fpos',['get_bb_tag_pos',['../bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2',1,'bb2diaspora.php']]], + ['get_5fbest_5flanguage',['get_best_language',['../language_8php.html#afc07168c25fb662579a52923daa10ee1',1,'language.php']]], + ['get_5fbirthdays',['get_birthdays',['../boot_8php.html#ad2c97627a313d53df1a1c7b4215ddb51',1,'boot.php']]], + ['get_5fcapath',['get_capath',['../include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7',1,'network.php']]], + ['get_5fchannel',['get_channel',['../classApp.html#a084e03c77686d8c13390fef3f7428a2b',1,'App']]], + ['get_5fchild',['get_child',['../classItem.html#a632185dd25c5caf277067c76230a4320',1,'Item']]], + ['get_5fchildren',['get_children',['../classItem.html#aa0ee775ec94abccec6c798428835d001',1,'Item']]], + ['get_5fcomment_5fbox',['get_comment_box',['../classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf',1,'Item']]], + ['get_5fcomment_5fbox_5ftemplate',['get_comment_box_template',['../classItem.html#a904421c7a427411bb2ab473bca872f63',1,'Item']]], + ['get_5fconfig',['get_config',['../include_2config_8php.html#a5d19130818ea4c6b8726ab62cd989c15',1,'config.php']]], + ['get_5fconversation',['get_conversation',['../classItem.html#a0c301aaed2b7d682728d18db3a22afa3',1,'Item']]], + ['get_5fcurl_5fcode',['get_curl_code',['../classApp.html#ab410451f132910773d0a02e35d0dced9',1,'App']]], + ['get_5fcurl_5fheaders',['get_curl_headers',['../classApp.html#abaf2173711e861ae4aebf43a7f70157e',1,'App']]], + ['get_5fdata',['get_data',['../classItem.html#ad3638f93065693c1f69eb349feb1b7aa',1,'Item']]], + ['get_5fdata_5fvalue',['get_data_value',['../classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c',1,'Item']]], + ['get_5fdb_5ferrno',['get_db_errno',['../setup_8php.html#a8652788e8589778c5f81634a9d5b9429',1,'setup.php']]], + ['get_5fdim',['get_dim',['../datetime_8php.html#a7df24d72ea05922d3127363e2295174c',1,'datetime.php']]], + ['get_5fevents',['get_events',['../boot_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312',1,'boot.php']]], + ['get_5ffeatures',['get_features',['../features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c',1,'features.php']]], + ['get_5ffeed_5ffor',['get_feed_for',['../items_8php.html#a59abb61d7581dc6592257ef022cbfada',1,'items.php']]], + ['get_5ffirst_5fdim',['get_first_dim',['../datetime_8php.html#aba971b67f17fecf050813f1eba72367f',1,'datetime.php']]], + ['get_5fform_5fsecurity_5ftoken',['get_form_security_token',['../security_8php.html#acd06ef411116115c2f0a92633700db8a',1,'security.php']]], + ['get_5fformatsmap',['get_FormatsMap',['../classPhoto.html#a1f00f0e1b6d90c5d83d8d3febb703075',1,'Photo']]], + ['get_5fgroups',['get_groups',['../classApp.html#a4659785d13e4bac0bed50dbb1b0d4299',1,'App']]], + ['get_5fhostname',['get_hostname',['../classApp.html#a622eace13f8fc9f4b5672a68e2bc4396',1,'App']]], + ['get_5fid',['get_id',['../classItem.html#ac0f27e58532612f6e7a54c8a621b9b92',1,'Item']]], + ['get_5fitem_5fchildren',['get_item_children',['../conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67',1,'conversation.php']]], + ['get_5fitem_5fcontact',['get_item_contact',['../items_8php.html#aab9c6bae4c40799867596bdaae9829fd',1,'items.php']]], + ['get_5fitem_5felements',['get_item_elements',['../items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361',1,'items.php']]], + ['get_5fmail_5felements',['get_mail_elements',['../items_8php.html#a94ddb1d6c8fa21dd7433677e85168037',1,'items.php']]], + ['get_5fmax_5fimport_5fsize',['get_max_import_size',['../boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90',1,'boot.php']]], + ['get_5fmode',['get_mode',['../classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd',1,'Conversation']]], + ['get_5fmood_5fverbs',['get_mood_verbs',['../text_8php.html#a736db13a966b8abaf8c9198faa35911a',1,'text.php']]], + ['get_5fmy_5faddress',['get_my_address',['../boot_8php.html#a490972c02fdb638c52ec0e012a30bfd2',1,'boot.php']]], + ['get_5fmy_5furl',['get_my_url',['../boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec',1,'boot.php']]], + ['get_5fobserver',['get_observer',['../classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2',1,'App']]], + ['get_5fobserver_5fhash',['get_observer_hash',['../boot_8php.html#a623e49c79943f3e7bdb770d021683cf7',1,'boot.php']]], + ['get_5fowner_5fname',['get_owner_name',['../classItem.html#a67892aa23d19f4431bb2e5f43c74000e',1,'Item']]], + ['get_5fowner_5fphoto',['get_owner_photo',['../classItem.html#aa541bc4290e51bfd688d6921bebabc73',1,'Item']]], + ['get_5fowner_5furl',['get_owner_url',['../classItem.html#a9f2d219da712390f59012fc32a342074',1,'Item']]], + ['get_5fparent',['get_parent',['../classItem.html#a4b92e3a9d6212c553aa2661489bd95d8',1,'Item']]], + ['get_5fpath',['get_path',['../classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be',1,'App']]], + ['get_5fpconfig',['get_pconfig',['../include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad',1,'config.php']]], + ['get_5fperms',['get_perms',['../classApp.html#adb5a4bb657881e553978ff390babd01f',1,'App\get_perms()'],['../permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972',1,'get_perms(): permissions.php']]], + ['get_5fpoke_5fverbs',['get_poke_verbs',['../text_8php.html#a75fbba83ab521c145e262646c3128da5',1,'text.php']]], + ['get_5fprofile_5felements',['get_profile_elements',['../items_8php.html#a251343637ff40a50cca93452cd530c26',1,'items.php']]], + ['get_5fprofile_5fowner',['get_profile_owner',['../classConversation.html#a5effe8ad3007e01333df44b81432b813',1,'Conversation']]], + ['get_5fpublic_5ffeed',['get_public_feed',['../items_8php.html#a079e099e15d88d47aeb6ca6d60da7107',1,'items.php']]], + ['get_5fredirect_5furl',['get_redirect_url',['../classItem.html#a428f448f89a8629055ea3294eb942aea',1,'Item']]], + ['get_5frel_5flink',['get_rel_link',['../text_8php.html#a3972701c5c83624ec4e2d06242f614e7',1,'text.php']]], + ['get_5ftemplate',['get_template',['../classItem.html#aba23a0a9d89e316d2b343cc46d695d91',1,'Item']]], + ['get_5ftemplate_5fdata',['get_template_data',['../classConversation.html#a2a96b7a6573ae53db861624659e831cb',1,'Conversation\get_template_data()'],['../classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8',1,'Item\get_template_data()']]], + ['get_5ftemplate_5fengine',['get_template_engine',['../classApp.html#acb27e607fe4c82603444676e25c36b70',1,'App']]], + ['get_5ftemplate_5fldelim',['get_template_ldelim',['../classApp.html#ad2eff1f9335d607846e39e8c63b88b51',1,'App']]], + ['get_5ftemplate_5frdelim',['get_template_rdelim',['../classApp.html#a9e1856f714ac5755798fd7a2fa035e42',1,'App']]], + ['get_5fterms_5foftype',['get_terms_oftype',['../text_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1',1,'text.php']]], + ['get_5ftheme_5fconfig_5ffile',['get_theme_config_file',['../settings_8php.html#a39abc76ff5459c57e3b957664f273f18',1,'settings.php']]], + ['get_5ftheme_5fscreenshot',['get_theme_screenshot',['../plugin_8php.html#a888a4c565cf06eb86ffc67131e5f19e0',1,'plugin.php']]], + ['get_5fthread',['get_thread',['../classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8',1,'Conversation']]], + ['get_5fwidgets',['get_widgets',['../classApp.html#a871898becd0697d778f36d9336253ae8',1,'App']]], + ['getdb',['getdb',['../classdba.html#a066ce6eab1282c9220ac4652ac2dbd27',1,'dba']]], + ['getext',['getExt',['../classPhoto.html#ade61db6eb69c065e4df66feaa1942d29',1,'Photo']]], + ['getheight',['getHeight',['../classPhoto.html#ab83e29500828ead47ac0a8cb9439082c',1,'Photo']]], + ['getimage',['getImage',['../classPhoto.html#a29213571e2688f17240cd2b3892d7a62',1,'Photo']]], + ['gettype',['getType',['../classPhoto.html#ad17537abe440ac133c3b2d951f92677b',1,'Photo']]], + ['getwidth',['getWidth',['../classPhoto.html#a74a04f56215cee00533b85b24daecfb1',1,'Photo']]], + ['goaway',['goaway',['../boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1',1,'boot.php']]], + ['gprobe_2ephp',['gprobe.php',['../gprobe_8php.html',1,'']]], + ['gprobe_5frun',['gprobe_run',['../gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1',1,'gprobe.php']]], + ['gravity_5fcomment',['GRAVITY_COMMENT',['../boot_8php.html#a4a12ce5de39789b0361e308d89925a20',1,'boot.php']]], + ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], + ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]], + ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], + ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]], + ['group_5fadd',['group_add',['../include_2group_8php.html#a0a515d42ec78aa0066aac4c278ead5b0',1,'group.php']]], + ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], + ['group_5faside',['group_aside',['../mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c',1,'group.php']]], + ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], + ['group_5fcontent',['group_content',['../mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83',1,'group.php']]], + ['group_5fget_5fmembers',['group_get_members',['../include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09',1,'group.php']]], + ['group_5fpost',['group_post',['../mod_2group_8php.html#aed1f009b1221348021bb34761160ef35',1,'group.php']]], + ['group_5frmv',['group_rmv',['../include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5',1,'group.php']]], + ['group_5frmv_5fmember',['group_rmv_member',['../include_2group_8php.html#a540e3ef36f47d47532646be4241f6518',1,'group.php']]], + ['group_5fselect',['group_select',['../acl__selectors_8php.html#aa1e3bc344ca2b29f97eb9860216d21a0',1,'acl_selectors.php']]], + ['group_5fside',['group_side',['../include_2group_8php.html#a1042d74055bafe54a6a30103d87a7f17',1,'group.php']]], + ['groups_5fcontaining',['groups_containing',['../include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f',1,'group.php']]], + ['guess_5fimage_5ftype',['guess_image_type',['../Photo_8php.html#a7273b82b017fd96d29b2c57bab03aea6',1,'Photo.php']]] +]; diff --git a/doc/html/search/all_68.html b/doc/html/search/all_68.html new file mode 100644 index 000000000..dec41d62e --- /dev/null +++ b/doc/html/search/all_68.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_68.js b/doc/html/search/all_68.js new file mode 100644 index 000000000..fa9ace76c --- /dev/null +++ b/doc/html/search/all_68.js @@ -0,0 +1,26 @@ +var searchData= +[ + ['handle_5ftag',['handle_tag',['../item_8php.html#abd0e603a6696051af16476eb968d52e7',1,'item.php']]], + ['has_5fpermissions',['has_permissions',['../items_8php.html#a77051724d1784074ff187e73a4db93fe',1,'items.php']]], + ['hcard_2ephp',['hcard.php',['../hcard_8php.html',1,'']]], + ['hcard_5faside',['hcard_aside',['../hcard_8php.html#a956c7cae2009652a37900306e5b7b73d',1,'hcard.php']]], + ['hcard_5finit',['hcard_init',['../hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d',1,'hcard.php']]], + ['head_5fadd_5fcss',['head_add_css',['../plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a',1,'plugin.php']]], + ['head_5fadd_5fjs',['head_add_js',['../plugin_8php.html#a516591850f4fd49fd1425cfa54089db8',1,'plugin.php']]], + ['head_5fget_5fcss',['head_get_css',['../plugin_8php.html#af92789f559b89a380e49d303218aeeca',1,'plugin.php']]], + ['head_5fget_5fjs',['head_get_js',['../plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1',1,'plugin.php']]], + ['help',['help',['../namespacefriendica-to-smarty-tpl.html#af6b2c793958aae2aadc294577431f749',1,'friendica-to-smarty-tpl.help()'],['../namespaceupdatetpl.html#ac9d11279fed403a329a719298feafc4f',1,'updatetpl.help()']]], + ['help_2ephp',['help.php',['../help_8php.html',1,'']]], + ['help_5fcontent',['help_content',['../help_8php.html#af055e15f600ffa6fbca9386fdf715224',1,'help.php']]], + ['home_2ephp',['home.php',['../home_8php.html',1,'']]], + ['hostxrd_2ephp',['hostxrd.php',['../hostxrd_8php.html',1,'']]], + ['hostxrd_5finit',['hostxrd_init',['../hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92',1,'hostxrd.php']]], + ['html2bb_5fvideo',['html2bb_video',['../text_8php.html#a138a3a611fa7f4f3630674145fc826bf',1,'text.php']]], + ['html2bbcode',['html2bbcode',['../html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837',1,'html2bbcode.php']]], + ['html2bbcode_2ephp',['html2bbcode.php',['../html2bbcode_8php.html',1,'']]], + ['html2plain',['html2plain',['../html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04',1,'html2plain.php']]], + ['html2plain_2ephp',['html2plain.php',['../html2plain_8php.html',1,'']]], + ['http_5fstatus_5fexit',['http_status_exit',['../include_2network_8php.html#abed1d466435a12b6a4dd7aa4a05e5ba9',1,'network.php']]], + ['hubloc_5fflags_5fprimary',['HUBLOC_FLAGS_PRIMARY',['../boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955',1,'boot.php']]], + ['hubloc_5fflags_5funverified',['HUBLOC_FLAGS_UNVERIFIED',['../boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764',1,'boot.php']]] +]; diff --git a/doc/html/search/all_69.html b/doc/html/search/all_69.html new file mode 100644 index 000000000..192e4bab2 --- /dev/null +++ b/doc/html/search/all_69.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_69.js b/doc/html/search/all_69.js new file mode 100644 index 000000000..6089e85ee --- /dev/null +++ b/doc/html/search/all_69.js @@ -0,0 +1,71 @@ +var searchData= +[ + ['identity_2ephp',['identity.php',['../identity_8php.html',1,'']]], + ['identity_5fbasic_5fexport',['identity_basic_export',['../identity_8php.html#a3570a4eb77332b292d394c4132cb8f03',1,'identity.php']]], + ['identity_5fbasic_5fimport',['identity_basic_import',['../identity_8php.html#a77ee7d66eb0758f7e7882f70ad0f9485',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'],['../default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db',1,'if(): full.php'],['../style_8php.html#a0a473a25349f07563d6c56d14031f02a',1,'if(): style.php']]], + ['imagestring',['imageString',['../classPhoto.html#a7c4be19101d5a289a491428c2f8d747c',1,'Photo']]], + ['import_2ephp',['import.php',['../import_8php.html',1,'']]], + ['import_5fauthor_5fxchan',['import_author_xchan',['../items_8php.html#ae73794179b62d39bb597ff670ab1c1e5',1,'items.php']]], + ['import_5fchannel_5fphoto',['import_channel_photo',['../Photo_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a',1,'Photo.php']]], + ['import_5fcontent',['import_content',['../import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184',1,'import.php']]], + ['import_5fdirectory_5fkeywords',['import_directory_keywords',['../zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a',1,'zot.php']]], + ['import_5fdirectory_5fprofile',['import_directory_profile',['../zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32',1,'zot.php']]], + ['import_5fpost',['import_post',['../import_8php.html#af17fef0410518f7eac205d0ea416eaa2',1,'import.php']]], + ['import_5fprofile_5fphoto',['import_profile_photo',['../Photo_8php.html#a102f3f26f67e0e38f4322a771951c1ca',1,'Photo.php']]], + ['import_5fxchan',['import_xchan',['../zot_8php.html#ab0227978011d8601494a7651fa26acf0',1,'zot.php']]], + ['info',['info',['../boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498',1,'boot.php']]], + ['intro_2ephp',['intro.php',['../intro_8php.html',1,'']]], + ['intro_5faside',['intro_aside',['../intro_8php.html#abc3abf25da64f98f215126eb08c7936b',1,'intro.php']]], + ['intro_5fcontent',['intro_content',['../intro_8php.html#a3e2a523697633ddb4517b9266a515f5b',1,'intro.php']]], + ['intro_5fpost',['intro_post',['../intro_8php.html#af3681062183ccbdf065ae2647b07d6f1',1,'intro.php']]], + ['invite_2ephp',['invite.php',['../invite_8php.html',1,'']]], + ['invite_5fcontent',['invite_content',['../invite_8php.html#a244385b28cfd021d308715f01158bfd9',1,'invite.php']]], + ['invite_5fpost',['invite_post',['../invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5',1,'invite.php']]], + ['iquery_2ephp',['iquery.php',['../iquery_8php.html',1,'']]], + ['is_5fa_5fdate_5farg',['is_a_date_arg',['../text_8php.html#a1557112a774ec00fa06ed6b6f6495506',1,'text.php']]], + ['is_5fajax',['is_ajax',['../boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c',1,'boot.php']]], + ['is_5fcommentable',['is_commentable',['../classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967',1,'Item']]], + ['is_5fimagick',['is_imagick',['../classPhoto.html#abad44c9fc7a1853920555398bf905433',1,'Photo']]], + ['is_5fpreview',['is_preview',['../classConversation.html#adf25ce023b69a166c63c6e84e02c136a',1,'Conversation']]], + ['is_5fsite_5fadmin',['is_site_admin',['../boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e',1,'boot.php']]], + ['is_5fthreaded',['is_threaded',['../classItem.html#a5b2fafdca55aefeaa08993a5a60529f0',1,'Item']]], + ['is_5ftoplevel',['is_toplevel',['../classItem.html#aa49e40f961dff66da32c5ae110e32993',1,'Item']]], + ['is_5fvalid',['is_valid',['../classPhoto.html#a66705cd7db1f8dce59ceac57dbf14476',1,'Photo']]], + ['is_5fvisiting',['is_visiting',['../classItem.html#a97c7feeea7f26a73176cb19faa455e12',1,'Item']]], + ['is_5fwall_5fto_5fwall',['is_wall_to_wall',['../classItem.html#aabf87ded59c25b5fe2b2296678e70509',1,'Item']]], + ['is_5fwritable',['is_writable',['../classConversation.html#a5879199008b96bee7550b576d614e1c1',1,'Conversation\is_writable()'],['../classItem.html#a99253fb1ca6f430a0b181689ef206861',1,'Item\is_writable()']]], + ['item',['Item',['../classItem.html',1,'']]], + ['item_2ephp',['item.php',['../item_8php.html',1,'']]], + ['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]], + ['item_5fcontent',['item_content',['../item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221',1,'item.php']]], + ['item_5fdeleted',['ITEM_DELETED',['../boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49',1,'boot.php']]], + ['item_5fexpire',['item_expire',['../items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc',1,'items.php']]], + ['item_5fgetfeedattach',['item_getfeedattach',['../items_8php.html#a09d425596b9f8663472cf7474ad36d96',1,'items.php']]], + ['item_5fgetfeedtags',['item_getfeedtags',['../items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7',1,'items.php']]], + ['item_5fhidden',['ITEM_HIDDEN',['../boot_8php.html#ac99fc4d040764eac1736bec6973556fe',1,'boot.php']]], + ['item_5fmentionsme',['ITEM_MENTIONSME',['../boot_8php.html#a8da836617174eed9fc2ac8054125354b',1,'boot.php']]], + ['item_5fmoderated',['ITEM_MODERATED',['../boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450',1,'boot.php']]], + ['item_5fnotshown',['ITEM_NOTSHOWN',['../boot_8php.html#a8663f32171568489dbb2a01dd00371f8',1,'boot.php']]], + ['item_5fnsfw',['ITEM_NSFW',['../boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08',1,'boot.php']]], + ['item_5forigin',['ITEM_ORIGIN',['../boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7',1,'boot.php']]], + ['item_5fpermissions_5fsql',['item_permissions_sql',['../security_8php.html#a9355488460ab11d6058656ff919e5cf9',1,'security.php']]], + ['item_5fpost',['item_post',['../item_8php.html#a693cd09805755ab85bbb5ecae69a48c3',1,'item.php']]], + ['item_5fpost_5ftype',['item_post_type',['../text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e',1,'text.php']]], + ['item_5frelay',['ITEM_RELAY',['../boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221',1,'boot.php']]], + ['item_5fspam',['ITEM_SPAM',['../boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb',1,'boot.php']]], + ['item_5fstarred',['ITEM_STARRED',['../boot_8php.html#a7af107fab8d62b9a73801713b774ed30',1,'boot.php']]], + ['item_5fstore',['item_store',['../items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049',1,'items.php']]], + ['item_5fthread_5ftop',['ITEM_THREAD_TOP',['../boot_8php.html#a749144d8dd9c1366596a0213c277d050',1,'boot.php']]], + ['item_5funpublished',['ITEM_UNPUBLISHED',['../boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272',1,'boot.php']]], + ['item_5funseen',['ITEM_UNSEEN',['../boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0',1,'boot.php']]], + ['item_5fuplink',['ITEM_UPLINK',['../boot_8php.html#aefba06f1c0842036329033e7567ecf6d',1,'boot.php']]], + ['item_5fuplink_5fprv',['ITEM_UPLINK_PRV',['../boot_8php.html#aad33b494084f729b6ee3b0bc457718a1',1,'boot.php']]], + ['item_5fvisible',['ITEM_VISIBLE',['../boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf',1,'boot.php']]], + ['item_5fwall',['ITEM_WALL',['../boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322',1,'boot.php']]], + ['item_5fwebpage',['ITEM_WEBPAGE',['../boot_8php.html#af489d0c3166551b93e63a79ff2c9be35',1,'boot.php']]], + ['itemobject_2ephp',['ItemObject.php',['../ItemObject_8php.html',1,'']]], + ['items_2ephp',['items.php',['../items_8php.html',1,'']]] +]; diff --git a/doc/html/search/all_6a.html b/doc/html/search/all_6a.html new file mode 100644 index 000000000..6d8c91cd3 --- /dev/null +++ b/doc/html/search/all_6a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_6a.js b/doc/html/search/all_6a.js new file mode 100644 index 000000000..08d26535c --- /dev/null +++ b/doc/html/search/all_6a.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['jindent',['jindent',['../text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8',1,'text.php']]], + ['jpeg_5fquality',['JPEG_QUALITY',['../boot_8php.html#a3475ff6c2e575f946ea0ee377e944173',1,'boot.php']]], + ['json_5freturn_5fand_5fdie',['json_return_and_die',['../include_2network_8php.html#a4c5d50079e089168d9248427018fffd4',1,'network.php']]] +]; diff --git a/doc/html/search/all_6b.html b/doc/html/search/all_6b.html new file mode 100644 index 000000000..d70dca016 --- /dev/null +++ b/doc/html/search/all_6b.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_6b.js b/doc/html/search/all_6b.js new file mode 100644 index 000000000..cb620eeee --- /dev/null +++ b/doc/html/search/all_6b.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['key_5fnot_5fexists',['KEY_NOT_EXISTS',['../template__processor_8php.html#a797745996c7839a93b2ab1af456631ab',1,'template_processor.php']]], + ['killme',['killme',['../boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c',1,'boot.php']]] +]; diff --git a/doc/html/search/all_6c.html b/doc/html/search/all_6c.html new file mode 100644 index 000000000..ae8bc48da --- /dev/null +++ b/doc/html/search/all_6c.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_6c.js b/doc/html/search/all_6c.js new file mode 100644 index 000000000..6af89230f --- /dev/null +++ b/doc/html/search/all_6c.js @@ -0,0 +1,38 @@ +var searchData= +[ + ['language_2ephp',['language.php',['../language_8php.html',1,'']]], + ['language_5fdetect_5fmin_5fconfidence',['LANGUAGE_DETECT_MIN_CONFIDENCE',['../boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11',1,'boot.php']]], + ['language_5fdetect_5fmin_5flength',['LANGUAGE_DETECT_MIN_LENGTH',['../boot_8php.html#a17cf72338b040891781a4bcbdd9a8595',1,'boot.php']]], + ['ldelim',['ldelim',['../namespacefriendica-to-smarty-tpl.html#a0b4cf73d1a8d201a28d269eeb62a5d5c',1,'friendica-to-smarty-tpl']]], + ['legal_5fwebbie',['legal_webbie',['../text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728',1,'text.php']]], + ['like_2ephp',['like.php',['../like_8php.html',1,'']]], + ['like_5fcontent',['like_content',['../like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538',1,'like.php']]], + ['load_5fconfig',['load_config',['../include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1',1,'config.php']]], + ['load_5fcontact_5flinks',['load_contact_links',['../boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6',1,'boot.php']]], + ['load_5fdatabase',['load_database',['../setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a',1,'setup.php']]], + ['load_5fdatabase_5frem',['load_database_rem',['../setup_8php.html#a2b375ddc555140236fc500135de99371',1,'setup.php']]], + ['load_5fpconfig',['load_pconfig',['../include_2config_8php.html#ab012f852866a0aff9b5180daffa454f5',1,'config.php']]], + ['local_5fdelivery',['local_delivery',['../items_8php.html#ae1c27d1a6379231ac7c0435c8a791d45',1,'items.php']]], + ['local_5fuser',['local_user',['../boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44',1,'boot.php']]], + ['localize_5fitem',['localize_item',['../conversation_8php.html#afea815dd1768e8417d2b30be53e9e0b4',1,'conversation.php']]], + ['lockview_2ephp',['lockview.php',['../lockview_8php.html',1,'']]], + ['lockview_5fcontent',['lockview_content',['../lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44',1,'lockview.php']]], + ['logger_5fall',['LOGGER_ALL',['../boot_8php.html#afe63ae69ba55299f813766e54df06ede',1,'boot.php']]], + ['logger_5fdata',['LOGGER_DATA',['../boot_8php.html#a6969947145a139ec374ce098224d8e81',1,'boot.php']]], + ['logger_5fdebug',['LOGGER_DEBUG',['../boot_8php.html#a93823d15ae07548a4c49de88d325cd26',1,'boot.php']]], + ['logger_5fnormal',['LOGGER_NORMAL',['../boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805',1,'boot.php']]], + ['logger_5ftrace',['LOGGER_TRACE',['../boot_8php.html#a022cea669f9f13ef7c6268b63884c57f',1,'boot.php']]], + ['login',['login',['../boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4',1,'boot.php']]], + ['login_2ephp',['login.php',['../login_8php.html',1,'']]], + ['login_5fcontent',['login_content',['../login_8php.html#a1d69ca88eb9005a7026e128b9a645904',1,'login.php']]], + ['loginuser',['loginUser',['../classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f',1,'FKOAuth1']]], + ['lookup_5fconsumer',['lookup_consumer',['../classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1',1,'FKOAuthDataStore']]], + ['lookup_5fnonce',['lookup_nonce',['../classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599',1,'FKOAuthDataStore']]], + ['lookup_5ftoken',['lookup_token',['../classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab',1,'FKOAuthDataStore']]], + ['lose_5ffollower',['lose_follower',['../items_8php.html#ade53043e7bc5ab9cc9ef1e4fed6569d4',1,'items.php']]], + ['lose_5fsharer',['lose_sharer',['../items_8php.html#a3a218d5e8ffbe261f773225ecded86a2',1,'items.php']]], + ['lostpass_2ephp',['lostpass.php',['../lostpass_8php.html',1,'']]], + ['lostpass_5fcontent',['lostpass_content',['../lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3',1,'lostpass.php']]], + ['lostpass_5fpost',['lostpass_post',['../lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc',1,'lostpass.php']]], + ['lrdd',['lrdd',['../include_2network_8php.html#adbc7fe45cc7fd9cd78f6b2f425ee9041',1,'network.php']]] +]; diff --git a/doc/html/search/all_6d.html b/doc/html/search/all_6d.html new file mode 100644 index 000000000..ee90718ff --- /dev/null +++ b/doc/html/search/all_6d.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_6d.js b/doc/html/search/all_6d.js new file mode 100644 index 000000000..f42e72037 --- /dev/null +++ b/doc/html/search/all_6d.js @@ -0,0 +1,39 @@ +var searchData= +[ + ['magic_2ephp',['magic.php',['../magic_8php.html',1,'']]], + ['magic_5finit',['magic_init',['../magic_8php.html#acea2cc792849ca2d71d4b689f66518bf',1,'magic.php']]], + ['magic_5flink',['magic_link',['../text_8php.html#a1e510c53624933ce9b7d6715784894db',1,'text.php']]], + ['magiclink_5furl',['magiclink_url',['../text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6',1,'text.php']]], + ['mail_5fdeleted',['MAIL_DELETED',['../boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8',1,'boot.php']]], + ['mail_5fisreply',['MAIL_ISREPLY',['../boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2',1,'boot.php']]], + ['mail_5freplied',['MAIL_REPLIED',['../boot_8php.html#aa3679df31c8dad1b71816b0322d5baff',1,'boot.php']]], + ['mail_5fseen',['MAIL_SEEN',['../boot_8php.html#a1fbb93cf030f07391f22cc2948744869',1,'boot.php']]], + ['mail_5fstore',['mail_store',['../items_8php.html#a77da7ce9a117601d49ac4a67c71b514f',1,'items.php']]], + ['manage_2ephp',['manage.php',['../manage_8php.html',1,'']]], + ['manage_5fcontent',['manage_content',['../manage_8php.html#a2bca247b5296827638959138367db4f5',1,'manage.php']]], + ['manual_5fconfig',['manual_config',['../setup_8php.html#abe405d227ba7232971964a706d4f3bce',1,'setup.php']]], + ['map_5fscope',['map_scope',['../items_8php.html#ac1fcf621dce7370515b420a7753f4726',1,'items.php']]], + ['marital_5fselector',['marital_selector',['../profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798',1,'profile_selectors.php']]], + ['match_2ephp',['match.php',['../match_8php.html',1,'']]], + ['match_5fcontent',['match_content',['../match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d',1,'match.php']]], + ['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]], + ['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]], + ['member_5fof',['member_of',['../include_2group_8php.html#a048f6892bfd28852de1b76470df411de',1,'group.php']]], + ['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]], + ['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]], + ['message_5faside',['message_aside',['../mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7',1,'message.php']]], + ['message_5fcontent',['message_content',['../mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79',1,'message.php']]], + ['message_5fpost',['message_post',['../mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718',1,'message.php']]], + ['metopem',['metopem',['../crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85',1,'crypto.php']]], + ['metorsa',['metorsa',['../crypto_8php.html#a573f02517abe4ac9241268263063b2a0',1,'crypto.php']]], + ['mini_5fgroup_5fselect',['mini_group_select',['../include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f',1,'group.php']]], + ['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]], + ['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]], + ['mod_5fnew_5fchannel_2ephp',['mod_new_channel.php',['../mod__new__channel_8php.html',1,'']]], + ['mod_5fregister_2ephp',['mod_register.php',['../mod__register_8php.html',1,'']]], + ['mood_2ephp',['mood.php',['../mood_8php.html',1,'']]], + ['mood_5fcontent',['mood_content',['../mood_8php.html#a721b9b6703b3234a005641c92d409b8f',1,'mood.php']]], + ['mood_5finit',['mood_init',['../mood_8php.html#a7ae136dd7476865b4828136175db5022',1,'mood.php']]], + ['msearch_2ephp',['msearch.php',['../msearch_8php.html',1,'']]], + ['msearch_5fpost',['msearch_post',['../msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8',1,'msearch.php']]] +]; diff --git a/doc/html/search/all_6e.html b/doc/html/search/all_6e.html new file mode 100644 index 000000000..e0fd7653a --- /dev/null +++ b/doc/html/search/all_6e.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_6e.js b/doc/html/search/all_6e.js new file mode 100644 index 000000000..851067ee2 --- /dev/null +++ b/doc/html/search/all_6e.js @@ -0,0 +1,85 @@ +var searchData= +[ + ['n',['n',['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'php2po.php']]], + ['names',['names',['../namespaceupdatetpl.html#ab42dd79af65ee82201fd6f04715f62f6',1,'updatetpl']]], + ['nameslist',['namesList',['../docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b',1,'docblox_errorchecker.php']]], + ['namespace_5factivity',['NAMESPACE_ACTIVITY',['../boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2',1,'boot.php']]], + ['namespace_5factivity_5fschema',['NAMESPACE_ACTIVITY_SCHEMA',['../boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133',1,'boot.php']]], + ['namespace_5fatom1',['NAMESPACE_ATOM1',['../boot_8php.html#a444ce608ce34efb82ee11852f36e825f',1,'boot.php']]], + ['namespace_5fdfrn',['NAMESPACE_DFRN',['../boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028',1,'boot.php']]], + ['namespace_5ffeed',['NAMESPACE_FEED',['../boot_8php.html#ac195fc9003298923ea81f144388e24b1',1,'boot.php']]], + ['namespace_5fgeorss',['NAMESPACE_GEORSS',['../boot_8php.html#a03d19251c245587de7ed959300b87bdf',1,'boot.php']]], + ['namespace_5fmedia',['NAMESPACE_MEDIA',['../boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16',1,'boot.php']]], + ['namespace_5fostatus',['NAMESPACE_OSTATUS',['../boot_8php.html#acca19aae62e1a6951a856b945de20d67',1,'boot.php']]], + ['namespace_5fostatussub',['NAMESPACE_OSTATUSSUB',['../boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd',1,'boot.php']]], + ['namespace_5fpoco',['NAMESPACE_POCO',['../boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a',1,'boot.php']]], + ['namespace_5fsalmon_5fme',['NAMESPACE_SALMON_ME',['../boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67',1,'boot.php']]], + ['namespace_5fstatusnet',['NAMESPACE_STATUSNET',['../boot_8php.html#afaf93b7026f784b113b4f8921745891e',1,'boot.php']]], + ['namespace_5fthread',['NAMESPACE_THREAD',['../boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86',1,'boot.php']]], + ['namespace_5ftomb',['NAMESPACE_TOMB',['../boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e',1,'boot.php']]], + ['namespace_5fzot',['NAMESPACE_ZOT',['../boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47',1,'boot.php']]], + ['nav',['nav',['../nav_8php.html#a43be0df73b90647ea70947ce004e231e',1,'nav.php']]], + ['nav_2ephp',['nav.php',['../nav_8php.html',1,'']]], + ['nav_5fset_5fselected',['nav_set_selected',['../nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a',1,'nav.php']]], + ['navbar_5fcomplete',['navbar_complete',['../acl_8php.html#a57dceff370d4a0e7ae673d50fbfda61f',1,'acl.php']]], + ['network_2ephp',['network.php',['../include_2network_8php.html',1,'']]], + ['network_2ephp',['network.php',['../mod_2network_8php.html',1,'']]], + ['network_5fcontent',['network_content',['../mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4',1,'network.php']]], + ['network_5fdfrn',['NETWORK_DFRN',['../boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e',1,'boot.php']]], + ['network_5fdiaspora',['NETWORK_DIASPORA',['../boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa',1,'boot.php']]], + ['network_5ffacebook',['NETWORK_FACEBOOK',['../boot_8php.html#af3905ea8f8568d0236db13fca40514e3',1,'boot.php']]], + ['network_5ffeed',['NETWORK_FEED',['../boot_8php.html#ab4bddb41a0cf407178ec5278b950c393',1,'boot.php']]], + ['network_5fgplus',['NETWORK_GPLUS',['../boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701',1,'boot.php']]], + ['network_5finit',['network_init',['../mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec',1,'network.php']]], + ['network_5flinkedin',['NETWORK_LINKEDIN',['../boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa',1,'boot.php']]], + ['network_5fmail',['NETWORK_MAIL',['../boot_8php.html#a7236b2cdcf59f02a42302e893a99013b',1,'boot.php']]], + ['network_5fmail2',['NETWORK_MAIL2',['../boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42',1,'boot.php']]], + ['network_5fmyspace',['NETWORK_MYSPACE',['../boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95',1,'boot.php']]], + ['network_5fostatus',['NETWORK_OSTATUS',['../boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d',1,'boot.php']]], + ['network_5fphantom',['NETWORK_PHANTOM',['../boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f',1,'boot.php']]], + ['network_5fquery',['network_query',['../iquery_8php.html#aa41c07bf856eb8b386430cc53d80d4ac',1,'iquery.php']]], + ['network_5fquery_5fget_5fsel_5ftab',['network_query_get_sel_tab',['../mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666',1,'network.php']]], + ['network_5fto_5fname',['network_to_name',['../contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be',1,'contact_selectors.php']]], + ['network_5fxmpp',['NETWORK_XMPP',['../boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e',1,'boot.php']]], + ['network_5fzot',['NETWORK_ZOT',['../boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0',1,'boot.php']]], + ['new_5faccess_5ftoken',['new_access_token',['../classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934',1,'FKOAuthDataStore']]], + ['new_5fchannel_2ephp',['new_channel.php',['../new__channel_8php.html',1,'']]], + ['new_5fchannel_5fcontent',['new_channel_content',['../new__channel_8php.html#ae585191610f79da129492482ce8e2fee',1,'new_channel.php']]], + ['new_5fchannel_5finit',['new_channel_init',['../new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164',1,'new_channel.php']]], + ['new_5fchannel_5fpost',['new_channel_post',['../new__channel_8php.html#a180b0646957db8290482f02454ad7f23',1,'new_channel.php']]], + ['new_5fcontact',['new_contact',['../include_2follow_8php.html#a6553a7650fae55f95660510d90983144',1,'follow.php']]], + ['new_5fcookie',['new_cookie',['../auth_8php.html#af8cde2fbf14abc2dd7ffa310400a59e3',1,'auth.php']]], + ['new_5ffollower',['new_follower',['../items_8php.html#a53eb3d27e1c55083be93a32f392d54e7',1,'items.php']]], + ['new_5fkeypair',['new_keypair',['../crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a',1,'crypto.php']]], + ['new_5frequest_5ftoken',['new_request_token',['../classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050',1,'FKOAuthDataStore']]], + ['newfilename',['newfilename',['../namespacefriendica-to-smarty-tpl.html#ad9ef87ccb2c9960501f5e02424a22d80',1,'friendica-to-smarty-tpl']]], + ['node2bbcode',['node2bbcode',['../html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8',1,'html2bbcode.php']]], + ['node2bbcodesub',['node2bbcodesub',['../html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7',1,'html2bbcode.php']]], + ['nogroup_2ephp',['nogroup.php',['../nogroup_8php.html',1,'']]], + ['nogroup_5fcontent',['nogroup_content',['../nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30',1,'nogroup.php']]], + ['nogroup_5finit',['nogroup_init',['../nogroup_8php.html#a099cb353bf62e8453069ce107b763212',1,'nogroup.php']]], + ['normalise_5fopenid',['normalise_openid',['../text_8php.html#adba17ec946f4285285dc100f7860bf51',1,'text.php']]], + ['notice',['notice',['../boot_8php.html#a9255af5ae9c887520091ea04763c1a88',1,'boot.php']]], + ['notification',['notification',['../enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc',1,'enotify.php']]], + ['notifications_2ephp',['notifications.php',['../notifications_8php.html',1,'']]], + ['notifications_5fcontent',['notifications_content',['../notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62',1,'notifications.php']]], + ['notifications_5fpost',['notifications_post',['../notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33',1,'notifications.php']]], + ['notifier_2ephp',['notifier.php',['../notifier_8php.html',1,'']]], + ['notifier_5frun',['notifier_run',['../notifier_8php.html#a568c502f626cff95e344c0748938b85d',1,'notifier.php']]], + ['notify_2ephp',['notify.php',['../include_2notify_8php.html',1,'']]], + ['notify_2ephp',['notify.php',['../mod_2notify_8php.html',1,'']]], + ['notify_5fcomment',['NOTIFY_COMMENT',['../boot_8php.html#a20f0eed431d25870b624b8937a07a59f',1,'boot.php']]], + ['notify_5fconfirm',['NOTIFY_CONFIRM',['../boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d',1,'boot.php']]], + ['notify_5fcontent',['notify_content',['../mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3',1,'notify.php']]], + ['notify_5finit',['notify_init',['../mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae',1,'notify.php']]], + ['notify_5fintro',['NOTIFY_INTRO',['../boot_8php.html#a56fd673eaa7014150297ce1162502db5',1,'boot.php']]], + ['notify_5fmail',['NOTIFY_MAIL',['../boot_8php.html#a285732e7889fa7f333cbe431111e1029',1,'boot.php']]], + ['notify_5fpoke',['NOTIFY_POKE',['../boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8',1,'boot.php']]], + ['notify_5fprofile',['NOTIFY_PROFILE',['../boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b',1,'boot.php']]], + ['notify_5fsuggest',['NOTIFY_SUGGEST',['../boot_8php.html#a9d01ef178b72b145016cca1393415bc4',1,'boot.php']]], + ['notify_5fsystem',['NOTIFY_SYSTEM',['../boot_8php.html#a14d44d4a00223dc3db4ea962325db192',1,'boot.php']]], + ['notify_5ftagself',['NOTIFY_TAGSELF',['../boot_8php.html#ab724491497ab2618b23a01d5da60aec0',1,'boot.php']]], + ['notify_5ftagshare',['NOTIFY_TAGSHARE',['../boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461',1,'boot.php']]], + ['notify_5fwall',['NOTIFY_WALL',['../boot_8php.html#a505410c7edc5f5bb5fa227b98359793e',1,'boot.php']]], + ['nuke_5fsession',['nuke_session',['../auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a',1,'auth.php']]] +]; diff --git a/doc/html/search/all_6f.html b/doc/html/search/all_6f.html new file mode 100644 index 000000000..5e86b030d --- /dev/null +++ b/doc/html/search/all_6f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_6f.js b/doc/html/search/all_6f.js new file mode 100644 index 000000000..9c76c063b --- /dev/null +++ b/doc/html/search/all_6f.js @@ -0,0 +1,26 @@ +var searchData= +[ + ['oauth_2ephp',['oauth.php',['../oauth_8php.html',1,'']]], + ['oauth_5fget_5fclient',['oauth_get_client',['../mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117',1,'api.php']]], + ['oe_5fbuild_5fxpath',['oe_build_xpath',['../include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319',1,'oembed.php']]], + ['oe_5fget_5finner_5fhtml',['oe_get_inner_html',['../include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487',1,'oembed.php']]], + ['oembed_2ephp',['oembed.php',['../include_2oembed_8php.html',1,'']]], + ['oembed_2ephp',['oembed.php',['../mod_2oembed_8php.html',1,'']]], + ['oembed_5fbbcode2html',['oembed_bbcode2html',['../include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2',1,'oembed.php']]], + ['oembed_5ffetch_5furl',['oembed_fetch_url',['../include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2',1,'oembed.php']]], + ['oembed_5fformat_5fobject',['oembed_format_object',['../include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3',1,'oembed.php']]], + ['oembed_5fhtml2bbcode',['oembed_html2bbcode',['../include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172',1,'oembed.php']]], + ['oembed_5fiframe',['oembed_iframe',['../include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a',1,'oembed.php']]], + ['oembed_5finit',['oembed_init',['../mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014',1,'oembed.php']]], + ['oembed_5freplacecb',['oembed_replacecb',['../include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0',1,'oembed.php']]], + ['oexchange_2ephp',['oexchange.php',['../oexchange_8php.html',1,'']]], + ['oexchange_5fcontent',['oexchange_content',['../oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26',1,'oexchange.php']]], + ['oexchange_5finit',['oexchange_init',['../oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59',1,'oexchange.php']]], + ['onepoll_2ephp',['onepoll.php',['../onepoll_8php.html',1,'']]], + ['onepoll_5frun',['onepoll_run',['../onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d',1,'onepoll.php']]], + ['opensearch_2ephp',['opensearch.php',['../opensearch_8php.html',1,'']]], + ['opensearch_5finit',['opensearch_init',['../opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9',1,'opensearch.php']]], + ['orient',['orient',['../classPhoto.html#a32ff09cd464a48bc8e510a1403410753',1,'Photo']]], + ['outf',['outf',['../namespacefriendica-to-smarty-tpl.html#a87182a9bab47640428bd0b2b9946bef9',1,'friendica-to-smarty-tpl']]], + ['outpath',['outpath',['../namespacefriendica-to-smarty-tpl.html#a005c1b7a69cac31fad72a941974ba7bb',1,'friendica-to-smarty-tpl']]] +]; diff --git a/doc/html/search/all_70.html b/doc/html/search/all_70.html new file mode 100644 index 000000000..799c1a277 --- /dev/null +++ b/doc/html/search/all_70.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_70.js b/doc/html/search/all_70.js new file mode 100644 index 000000000..54b1b3dcc --- /dev/null +++ b/doc/html/search/all_70.js @@ -0,0 +1,135 @@ +var searchData= +[ + ['page',['page',['../mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page(): mod_import.php'],['../mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page(): mod_new_channel.php'],['../mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page(): mod_register.php']]], + ['page_2ephp',['page.php',['../page_8php.html',1,'']]], + ['page_5fapplication',['PAGE_APPLICATION',['../boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed',1,'boot.php']]], + ['page_5fautoconnect',['PAGE_AUTOCONNECT',['../boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9',1,'boot.php']]], + ['page_5fcontent',['page_content',['../page_8php.html#a91a5f649f68406149108bded1dc90b22',1,'page.php']]], + ['page_5fhidden',['PAGE_HIDDEN',['../boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640',1,'boot.php']]], + ['page_5fnormal',['PAGE_NORMAL',['../boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3',1,'boot.php']]], + ['page_5fremoved',['PAGE_REMOVED',['../boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6',1,'boot.php']]], + ['parse_5furl_2ephp',['parse_url.php',['../parse__url_8php.html',1,'']]], + ['parse_5furl_5fcontent',['parse_url_content',['../parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b',1,'parse_url.php']]], + ['parse_5fxml_5fstring',['parse_xml_string',['../include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6',1,'network.php']]], + ['parsed',['parsed',['../classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9',1,'FriendicaSmarty']]], + ['parseurl_5fgetsiteinfo',['parseurl_getsiteinfo',['../parse__url_8php.html#a25635549f2c22955d72465f4d2e58993',1,'parse_url.php']]], + ['path',['path',['../namespacefriendica-to-smarty-tpl.html#a68d15934660cd1f4301ce251b1646f09',1,'friendica-to-smarty-tpl.path()'],['../namespaceupdatetpl.html#ae694f5e1f25f8a92a945eb90c432dfe6',1,'updatetpl.path()']]], + ['pemtome',['pemtome',['../crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c',1,'crypto.php']]], + ['pemtorsa',['pemtorsa',['../crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8',1,'crypto.php']]], + ['perm_5fis_5fallowed',['perm_is_allowed',['../permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835',1,'permissions.php']]], + ['permissions_2ephp',['permissions.php',['../permissions_8php.html',1,'']]], + ['permissions_5fsql',['permissions_sql',['../security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f',1,'security.php']]], + ['perms_5fa_5fdelegate',['PERMS_A_DELEGATE',['../boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b',1,'boot.php']]], + ['perms_5fcontacts',['PERMS_CONTACTS',['../boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6',1,'boot.php']]], + ['perms_5fnetwork',['PERMS_NETWORK',['../boot_8php.html#a6df1102664f64b274810db85197c2755',1,'boot.php']]], + ['perms_5fpublic',['PERMS_PUBLIC',['../boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7',1,'boot.php']]], + ['perms_5fr_5fabook',['PERMS_R_ABOOK',['../boot_8php.html#a3d6d4fc5fafcc9156811669158541caf',1,'boot.php']]], + ['perms_5fr_5fpages',['PERMS_R_PAGES',['../boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e',1,'boot.php']]], + ['perms_5fr_5fphotos',['PERMS_R_PHOTOS',['../boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62',1,'boot.php']]], + ['perms_5fr_5fprofile',['PERMS_R_PROFILE',['../boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137',1,'boot.php']]], + ['perms_5fr_5fstorage',['PERMS_R_STORAGE',['../boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc',1,'boot.php']]], + ['perms_5fr_5fstream',['PERMS_R_STREAM',['../boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4',1,'boot.php']]], + ['perms_5fsite',['PERMS_SITE',['../boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f',1,'boot.php']]], + ['perms_5fspecific',['PERMS_SPECIFIC',['../boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964',1,'boot.php']]], + ['perms_5fw_5fchat',['PERMS_W_CHAT',['../boot_8php.html#acd877c405b06b348b37b6f7e62a211e9',1,'boot.php']]], + ['perms_5fw_5fcomment',['PERMS_W_COMMENT',['../boot_8php.html#a32df13fec0e43281da5979e1f5579aa8',1,'boot.php']]], + ['perms_5fw_5fmail',['PERMS_W_MAIL',['../boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf',1,'boot.php']]], + ['perms_5fw_5fpages',['PERMS_W_PAGES',['../boot_8php.html#aa9244fc9cc221980c07a20cc534111be',1,'boot.php']]], + ['perms_5fw_5fphotos',['PERMS_W_PHOTOS',['../boot_8php.html#a57eee7352714c004d36c26dda74af73e',1,'boot.php']]], + ['perms_5fw_5fstorage',['PERMS_W_STORAGE',['../boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115',1,'boot.php']]], + ['perms_5fw_5fstream',['PERMS_W_STREAM',['../boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55',1,'boot.php']]], + ['perms_5fw_5ftagwall',['PERMS_W_TAGWALL',['../boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777',1,'boot.php']]], + ['perms_5fw_5fwall',['PERMS_W_WALL',['../boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2',1,'boot.php']]], + ['photo',['Photo',['../classPhoto.html',1,'']]], + ['photo_2ephp',['Photo.php',['../Photo_8php.html',1,'(Global Namespace)'],['../photo_8php.html',1,'(Global Namespace)']]], + ['photo_5finit',['photo_init',['../photo_8php.html#a582779d24882b0d31ee909a91d70a448',1,'photo.php']]], + ['photo_5fupload',['photo_upload',['../include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109',1,'photos.php']]], + ['photos_2ephp',['photos.php',['../include_2photos_8php.html',1,'']]], + ['photos_2ephp',['photos.php',['../mod_2photos_8php.html',1,'']]], + ['photos_5falbum_5fexists',['photos_album_exists',['../include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35',1,'photos.php']]], + ['photos_5falbum_5fget_5fdb_5fidstr',['photos_album_get_db_idstr',['../include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe',1,'photos.php']]], + ['photos_5falbum_5frename',['photos_album_rename',['../include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab',1,'photos.php']]], + ['photos_5falbum_5fwidget',['photos_album_widget',['../include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979',1,'photos.php']]], + ['photos_5falbums_5flist',['photos_albums_list',['../include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9',1,'photos.php']]], + ['photos_5fcontent',['photos_content',['../mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812',1,'photos.php']]], + ['photos_5fcreate_5fitem',['photos_create_item',['../include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274',1,'photos.php']]], + ['photos_5finit',['photos_init',['../mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014',1,'photos.php']]], + ['photos_5fpost',['photos_post',['../mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080',1,'photos.php']]], + ['php2po_2ephp',['php2po.php',['../php2po_8php.html',1,'']]], + ['php_5ftpl',['php_tpl',['../namespacefriendica-to-smarty-tpl.html#a5dfc21ab8282dda8e3a7dff43cd0e283',1,'friendica-to-smarty-tpl']]], + ['ping_2ephp',['ping.php',['../ping_8php.html',1,'']]], + ['ping_5finit',['ping_init',['../ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1',1,'ping.php']]], + ['pkcs1_5fencode',['pkcs1_encode',['../crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5',1,'crypto.php']]], + ['pkcs5_5fpad',['pkcs5_pad',['../crypto_8php.html#a3398666e184faf8e516c8e5d91de86eb',1,'crypto.php']]], + ['pkcs5_5funpad',['pkcs5_unpad',['../crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85',1,'crypto.php']]], + ['pkcs8_5fencode',['pkcs8_encode',['../crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2',1,'crypto.php']]], + ['plugin_2ephp',['plugin.php',['../plugin_8php.html',1,'']]], + ['png_5fquality',['PNG_QUALITY',['../boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce',1,'boot.php']]], + ['po2php_2ephp',['po2php.php',['../po2php_8php.html',1,'']]], + ['po2php_5frun',['po2php_run',['../po2php_8php.html#a3b75e36f913198299e99559b175cd8b4',1,'po2php.php']]], + ['poco_2ephp',['poco.php',['../poco_8php.html',1,'']]], + ['poco_5finit',['poco_init',['../poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498',1,'poco.php']]], + ['poco_5fload',['poco_load',['../socgraph_8php.html#aad9ee2421fd1ca405b241e8ed72d9aca',1,'socgraph.php']]], + ['poke_2ephp',['poke.php',['../poke_8php.html',1,'']]], + ['poke_5fcontent',['poke_content',['../poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993',1,'poke.php']]], + ['poke_5finit',['poke_init',['../poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b',1,'poke.php']]], + ['poller_2ephp',['poller.php',['../poller_8php.html',1,'']]], + ['poller_5frun',['poller_run',['../poller_8php.html#a5f12df3a4738124b6c039971e87e76da',1,'poller.php']]], + ['pop_5flang',['pop_lang',['../language_8php.html#a78bd204955ec4cc3a9ac651285a1689d',1,'language.php']]], + ['populate_5facl',['populate_acl',['../acl__selectors_8php.html#a51f2ec7a143d5a5b38e35efd5f3d6e2c',1,'acl_selectors.php']]], + ['post_2ephp',['post.php',['../post_8php.html',1,'']]], + ['post_5finit',['post_init',['../post_8php.html#af4b48181ce773ef0cdfc972441445c34',1,'post.php']]], + ['post_5fpost',['post_post',['../post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75',1,'post.php']]], + ['post_5furl',['post_url',['../include_2network_8php.html#aa44d9e33a579d930e9e79c4ebb3d6b5e',1,'network.php']]], + ['posted_5fdate_5fwidget',['posted_date_widget',['../items_8php.html#abe695dd89e1e10ed042c26b80114f0ed',1,'items.php']]], + ['posted_5fdates',['posted_dates',['../items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0',1,'items.php']]], + ['preg_5fheart',['preg_heart',['../text_8php.html#ac19d2b33a58372a357a43d51eed19162',1,'text.php']]], + ['prepare_5fpage',['prepare_page',['../conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c',1,'conversation.php']]], + ['pretheme_2ephp',['pretheme.php',['../pretheme_8php.html',1,'']]], + ['pretheme_5finit',['pretheme_init',['../pretheme_8php.html#af5660943ee99db5fd75182316522eafe',1,'pretheme.php']]], + ['printable',['printable',['../dba_8php.html#a55bf30d8176967e682656b5be4ad9249',1,'dba.php']]], + ['private_5fmessages_5fdrop',['private_messages_drop',['../include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1',1,'message.php']]], + ['private_5fmessages_5ffetch_5fconversation',['private_messages_fetch_conversation',['../include_2message_8php.html#a5f8de9847e203329e317ac38dc646898',1,'message.php']]], + ['private_5fmessages_5ffetch_5fmessage',['private_messages_fetch_message',['../include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091',1,'message.php']]], + ['private_5fmessages_5flist',['private_messages_list',['../include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e',1,'message.php']]], + ['probe_2ephp',['probe.php',['../probe_8php.html',1,'']]], + ['probe_5fcontent',['probe_content',['../probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99',1,'probe.php']]], + ['probe_5fnormal',['PROBE_NORMAL',['../Scrape_8php.html#aa6b0bdcf6e8f9d44e699fd94d2207c98',1,'Scrape.php']]], + ['probe_5furl',['probe_url',['../Scrape_8php.html#a32883beb7dbf311fc9bfa99200a7402c',1,'Scrape.php']]], + ['proc_5frun',['proc_run',['../boot_8php.html#ab346a2ece14993861f3e4206befa94f0',1,'boot.php']]], + ['process_5fdelivery',['process_delivery',['../zot_8php.html#a37ec13b18057634eadb071f05297f5e1',1,'zot.php']]], + ['process_5fmail_5fdelivery',['process_mail_delivery',['../zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc',1,'zot.php']]], + ['process_5fprofile_5fdelivery',['process_profile_delivery',['../zot_8php.html#a9a57b40669351c9791126b925cb7ef3b',1,'zot.php']]], + ['profile_2ephp',['profile.php',['../profile_8php.html',1,'']]], + ['profile_5factivity',['profile_activity',['../activities_8php.html#a80134e807719b3c54aba971958d2e132',1,'activities.php']]], + ['profile_5fadvanced_2ephp',['profile_advanced.php',['../profile__advanced_8php.html',1,'']]], + ['profile_5faside',['profile_aside',['../profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e',1,'profile.php']]], + ['profile_5fcontent',['profile_content',['../profile_8php.html#a3775cf6eef6587e5143133356a7b76c0',1,'profile.php']]], + ['profile_5fcreate_5fsidebar',['profile_create_sidebar',['../boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67',1,'boot.php']]], + ['profile_5finit',['profile_init',['../profile_8php.html#ab5d0246be0552e2182a585c1206d22a5',1,'profile.php']]], + ['profile_5fload',['profile_load',['../boot_8php.html#aebc5ed38c73ade57f360471da712ded2',1,'boot.php']]], + ['profile_5fphoto_2ephp',['profile_photo.php',['../profile__photo_8php.html',1,'']]], + ['profile_5fphoto_5faside',['profile_photo_aside',['../profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3',1,'profile_photo.php']]], + ['profile_5fphoto_5finit',['profile_photo_init',['../profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02',1,'profile_photo.php']]], + ['profile_5fphoto_5fpost',['profile_photo_post',['../profile__photo_8php.html#a4b80234074bd603221aa5364f330e479',1,'profile_photo.php']]], + ['profile_5fselectors_2ephp',['profile_selectors.php',['../profile__selectors_8php.html',1,'']]], + ['profile_5fsidebar',['profile_sidebar',['../boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b',1,'boot.php']]], + ['profile_5ftabs',['profile_tabs',['../boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273',1,'boot.php']]], + ['profiler',['profiler',['../text_8php.html#aac3721c73b3ceadf02a172704d0a27b7',1,'text.php']]], + ['profiles_2ephp',['profiles.php',['../profiles_8php.html',1,'']]], + ['profiles_5faside',['profiles_aside',['../profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c',1,'profiles.php']]], + ['profiles_5fcontent',['profiles_content',['../profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00',1,'profiles.php']]], + ['profiles_5finit',['profiles_init',['../profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e',1,'profiles.php']]], + ['profiles_5fpost',['profiles_post',['../profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04',1,'profiles.php']]], + ['profperm_2ephp',['profperm.php',['../profperm_8php.html',1,'']]], + ['profperm_5faside',['profperm_aside',['../profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc',1,'profperm.php']]], + ['profperm_5fcontent',['profperm_content',['../profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023',1,'profperm.php']]], + ['profperm_5finit',['profperm_init',['../profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6',1,'profperm.php']]], + ['protect_5fsprintf',['protect_sprintf',['../text_8php.html#a4e7698aca48982512594b274543c3b9b',1,'text.php']]], + ['protodriver',['ProtoDriver',['../classProtoDriver.html',1,'']]], + ['protodriver_2ephp',['ProtoDriver.php',['../ProtoDriver_8php.html',1,'']]], + ['public_5fpermissions_5fsql',['public_permissions_sql',['../security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01',1,'security.php']]], + ['public_5frecips',['public_recips',['../zot_8php.html#a083aec6c900d244e1bfc1406f9461465',1,'zot.php']]], + ['pubrsatome',['pubrsatome',['../crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287',1,'crypto.php']]], + ['push_5flang',['push_lang',['../language_8php.html#ac9142ef1d01a235c760deb0f16643f5a',1,'language.php']]] +]; diff --git a/doc/html/search/all_71.html b/doc/html/search/all_71.html new file mode 100644 index 000000000..e9d391f66 --- /dev/null +++ b/doc/html/search/all_71.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_71.js b/doc/html/search/all_71.js new file mode 100644 index 000000000..f8e43937a --- /dev/null +++ b/doc/html/search/all_71.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['q',['q',['../classdba.html#a0060c8611e3c3ee71049904ad028a695',1,'dba\q()'],['../dba_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba.php']]], + ['qsearch_2ephp',['qsearch.php',['../qsearch_8php.html',1,'']]], + ['qsearch_5finit',['qsearch_init',['../qsearch_8php.html#a0501887b95bd8fa21018b2936a668894',1,'qsearch.php']]], + ['queue_2ephp',['queue.php',['../queue_8php.html',1,'']]], + ['queue_5ffn_2ephp',['queue_fn.php',['../queue__fn_8php.html',1,'']]], + ['queue_5frun',['queue_run',['../queue_8php.html#af8c93de86d866c3200174c8450a0f341',1,'queue.php']]], + ['quotelevel',['quotelevel',['../html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0',1,'html2plain.php']]] +]; diff --git a/doc/html/search/all_72.html b/doc/html/search/all_72.html new file mode 100644 index 000000000..347b9f666 --- /dev/null +++ b/doc/html/search/all_72.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_72.js b/doc/html/search/all_72.js new file mode 100644 index 000000000..06317d864 --- /dev/null +++ b/doc/html/search/all_72.js @@ -0,0 +1,49 @@ +var searchData= +[ + ['random_5fprofile',['random_profile',['../Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c',1,'Contact.php']]], + ['random_5fstring_5fhex',['RANDOM_STRING_HEX',['../text_8php.html#a5bb69d560e9d8a9acc8778eba6cf2f4e',1,'text.php']]], + ['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']]], + ['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]], + ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], + ['redbasic_5fform',['redbasic_form',['../view_2theme_2redbasic_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e',1,'config.php']]], + ['redbasic_5finit',['redbasic_init',['../redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b',1,'theme.php']]], + ['redir_2ephp',['redir.php',['../redir_8php.html',1,'']]], + ['redir_5finit',['redir_init',['../redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5',1,'redir.php']]], + ['reduce',['reduce',['../docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f',1,'docblox_errorchecker.php']]], + ['register_2ephp',['register.php',['../register_8php.html',1,'']]], + ['register_5fapprove',['REGISTER_APPROVE',['../boot_8php.html#a7176c0f9f1c98421b97735d892cf6252',1,'boot.php']]], + ['register_5fclosed',['REGISTER_CLOSED',['../boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1',1,'boot.php']]], + ['register_5fcontent',['register_content',['../register_8php.html#a0e91f57f111407ea8d3223a05022bb2a',1,'register.php']]], + ['register_5finit',['register_init',['../register_8php.html#ae20c0cd40f738d6295de58b9202c83d5',1,'register.php']]], + ['register_5fopen',['REGISTER_OPEN',['../boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63',1,'boot.php']]], + ['register_5fpost',['register_post',['../register_8php.html#a51731dcc1917c58a790eb1c0f6132271',1,'register.php']]], + ['regmod_2ephp',['regmod.php',['../regmod_8php.html',1,'']]], + ['regmod_5fcontent',['regmod_content',['../regmod_8php.html#a7953df4e32e63946565e90cdd5d50409',1,'regmod.php']]], + ['relative_5fdate',['relative_date',['../datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82',1,'datetime.php']]], + ['reltoabs',['reltoabs',['../text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2',1,'text.php']]], + ['remote_5fuser',['remote_user',['../boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209',1,'boot.php']]], + ['remove_5fall_5fxchan_5fresources',['remove_all_xchan_resources',['../Contact_8php.html#acc12cda999c88c4d6185cca967c15125',1,'Contact.php']]], + ['remove_5fchild',['remove_child',['../classItem.html#a2ce70ef63f9f4d86a09c351678806925',1,'Item']]], + ['remove_5fparent',['remove_parent',['../classItem.html#aa452b5bcd8dea12119b09212c615cb41',1,'Item']]], + ['remove_5fqueue_5fitem',['remove_queue_item',['../queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24',1,'queue_fn.php']]], + ['removeme_2ephp',['removeme.php',['../removeme_8php.html',1,'']]], + ['removeme_5fcontent',['removeme_content',['../removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c',1,'removeme.php']]], + ['removeme_5fpost',['removeme_post',['../removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88',1,'removeme.php']]], + ['render_5flocation_5fdefault',['render_location_default',['../conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2',1,'conversation.php']]], + ['replace',['replace',['../classTemplate.html#a285b5b2007dbbf733476273df3fed4ef',1,'Template']]], + ['request_5ftoken_5fduration',['REQUEST_TOKEN_DURATION',['../oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16',1,'oauth.php']]], + ['requestdata',['requestdata',['../include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e',1,'api.php']]], + ['rmagic_2ephp',['rmagic.php',['../rmagic_8php.html',1,'']]], + ['rmagic_5fcontent',['rmagic_content',['../rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef',1,'rmagic.php']]], + ['rmagic_5finit',['rmagic_init',['../rmagic_8php.html#a95455edd43f1bff39446a57388cdde16',1,'rmagic.php']]], + ['rmagic_5fpost',['rmagic_post',['../rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f',1,'rmagic.php']]], + ['rotate',['rotate',['../classPhoto.html#a8b2b0a7f949a566c21e0160fbf047666',1,'Photo']]], + ['rsa_5fsign',['rsa_sign',['../crypto_8php.html#a920e5f222d0020f47556033d8b2b6552',1,'crypto.php']]], + ['rsa_5fverify',['rsa_verify',['../crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96',1,'crypto.php']]], + ['rsatopem',['rsatopem',['../crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26',1,'crypto.php']]], + ['rsd_5fxml_2ephp',['rsd_xml.php',['../rsd__xml_8php.html',1,'']]], + ['rsd_5fxml_5fcontent',['rsd_xml_content',['../rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82',1,'rsd_xml.php']]], + ['runs',['runs',['../docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec',1,'docblox_errorchecker.php']]] +]; diff --git a/doc/html/search/all_73.html b/doc/html/search/all_73.html new file mode 100644 index 000000000..9abac91a9 --- /dev/null +++ b/doc/html/search/all_73.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_73.js b/doc/html/search/all_73.js new file mode 100644 index 000000000..ddb33cf27 --- /dev/null +++ b/doc/html/search/all_73.js @@ -0,0 +1,99 @@ +var searchData= +[ + ['salmon_5fkey',['salmon_key',['../crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5',1,'crypto.php']]], + ['saved_5fsearches',['saved_searches',['../mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad',1,'network.php']]], + ['saveimage',['saveImage',['../classPhoto.html#af522871c8ab451155b9745fa7f057943',1,'Photo']]], + ['scale_5fexternal_5fimages',['scale_external_images',['../include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f',1,'network.php']]], + ['scaleimage',['scaleImage',['../classPhoto.html#a4ff11117ada771637a61a668d2af6636',1,'Photo']]], + ['scaleimagesquare',['scaleImageSquare',['../classPhoto.html#a080a5219eb09c2621dabeae153ce6a03',1,'Photo']]], + ['scaleimageup',['scaleImageUp',['../classPhoto.html#a735eb657277e7a46cebe7f6fde0af80a',1,'Photo']]], + ['scrape_2ephp',['Scrape.php',['../Scrape_8php.html',1,'']]], + ['search_2ephp',['search.php',['../search_8php.html',1,'']]], + ['search_5fac_2ephp',['search_ac.php',['../search__ac_8php.html',1,'']]], + ['search_5fac_5finit',['search_ac_init',['../search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138',1,'search_ac.php']]], + ['search_5fcontent',['search_content',['../search_8php.html#a9f726b45d369bd7f94f5be4d0c99636f',1,'search.php']]], + ['search_5finit',['search_init',['../search_8php.html#acf19fd30f07f495781ca0d7a0a08b435',1,'search.php']]], + ['search_5fpost',['search_post',['../search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7',1,'search.php']]], + ['search_5fsaved_5fsearches',['search_saved_searches',['../search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6',1,'search.php']]], + ['security_2ephp',['security.php',['../security_8php.html',1,'']]], + ['select_5ftimezone',['select_timezone',['../datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f',1,'datetime.php']]], + ['send',['send',['../classenotify.html#afbc088860f534c6c05788b48cfc262c6',1,'enotify']]], + ['send_5fmessage',['send_message',['../include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd',1,'message.php']]], + ['send_5freg_5fapproval_5femail',['send_reg_approval_email',['../account_8php.html#a014de2d5d5c9785de5bf547a485822fa',1,'account.php']]], + ['send_5fstatus_5fnotifications',['send_status_notifications',['../items_8php.html#aab9e0c58247427126de0699c729c3b6c',1,'items.php']]], + ['send_5fverification_5femail',['send_verification_email',['../account_8php.html#aa9c29c497c17d8f9344dce8631ad8761',1,'account.php']]], + ['service_5fclass_5fallows',['service_class_allows',['../plugin_8php.html#a030cec6793b909c439c0336ba39b1571',1,'plugin.php']]], + ['service_5fclass_5ffetch',['service_class_fetch',['../plugin_8php.html#a905b54e10704b283ac64680a8abc0971',1,'plugin.php']]], + ['session_2ephp',['session.php',['../session_8php.html',1,'']]], + ['set',['set',['../classCache.html#ae622b82adc1c2fb1f3e2cc4fd9688fce',1,'Cache']]], + ['set_5faccount',['set_account',['../classApp.html#a5c83c957ada53e170901e3c025080862',1,'App']]], + ['set_5fapp',['set_app',['../classBaseObject.html#a0a9acda12d751692834cf6999f889223',1,'BaseObject']]], + ['set_5fapps',['set_apps',['../classApp.html#abea5a4f77dcd53c928dc4eed86616637',1,'App']]], + ['set_5fbaseurl',['set_baseurl',['../classApp.html#a78788f6e9d8b713b138f81e457c5cd08',1,'App']]], + ['set_5fchannel',['set_channel',['../classApp.html#a89e9feb2bfb5253883a9720beaffe876',1,'App']]], + ['set_5fconfig',['set_config',['../include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a',1,'config.php']]], + ['set_5fconversation',['set_conversation',['../classItem.html#aa8b1bbc4236890694635295e46d7fd72',1,'Item']]], + ['set_5fcurl_5fcode',['set_curl_code',['../classApp.html#a5e6a6bd641e4d9909df56f0283c03821',1,'App']]], + ['set_5fcurl_5fheaders',['set_curl_headers',['../classApp.html#a9632092d9e8fdaa82a9fc4586433fd31',1,'App']]], + ['set_5fdefault_5flogin_5fidentity',['set_default_login_identity',['../identity_8php.html#a78151baf4407a8482d2681a91a9c486b',1,'identity.php']]], + ['set_5fgroups',['set_groups',['../classApp.html#a3d84af5e42082098672531cd1a618853',1,'App']]], + ['set_5fhostname',['set_hostname',['../classApp.html#a344d2b7dc2f276648d521aee4da1731c',1,'App']]], + ['set_5fmode',['set_mode',['../classConversation.html#a66f121ca4026246f86a732e5faa0682c',1,'Conversation']]], + ['set_5fobserver',['set_observer',['../classApp.html#a4776d9322edea17fae56afa5d01a323e',1,'App']]], + ['set_5fpager_5fitemspage',['set_pager_itemspage',['../classApp.html#a4bdd7bfed62f50515fce652127bf481b',1,'App']]], + ['set_5fpager_5ftotal',['set_pager_total',['../classApp.html#a560189f048d3db2f526841963cc43e97',1,'App']]], + ['set_5fparent',['set_parent',['../classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7',1,'Item']]], + ['set_5fpath',['set_path',['../classApp.html#adb060d5c7f35a521ec7ec0effbe08097',1,'App']]], + ['set_5fpconfig',['set_pconfig',['../include_2config_8php.html#a61591371cb18764138655d67dc817ab2',1,'config.php']]], + ['set_5fperms',['set_perms',['../classApp.html#a557d7b779d8259027f4724ebf7b248dc',1,'App']]], + ['set_5ftemplate_5fengine',['set_template_engine',['../classApp.html#a325f05bdc15d1b341044b389b21cd195',1,'App']]], + ['set_5fwidget',['set_widget',['../classApp.html#a123b903dfe5d3488cc68db3471d36fd2',1,'App']]], + ['settings_2ephp',['settings.php',['../settings_8php.html',1,'']]], + ['settings_5faside',['settings_aside',['../settings_8php.html#ae5aebccb006bee1300078576baaf5582',1,'settings.php']]], + ['settings_5fpost',['settings_post',['../settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586',1,'settings.php']]], + ['setup_2ephp',['setup.php',['../setup_8php.html',1,'']]], + ['setup_5fcontent',['setup_content',['../setup_8php.html#a88247384a96e14516f474d7af6a465c1',1,'setup.php']]], + ['setup_5finit',['setup_init',['../setup_8php.html#a267555abd17290e659b4bf44b885e4e0',1,'setup.php']]], + ['setup_5fpost',['setup_post',['../setup_8php.html#a13cf286774149a0a7bd8adb8179cec75',1,'setup.php']]], + ['sexpref_5fselector',['sexpref_selector',['../profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7',1,'profile_selectors.php']]], + ['share_2ephp',['share.php',['../share_8php.html',1,'']]], + ['share_5finit',['share_init',['../share_8php.html#afeb26046bdd02567ecd29ab5f188b249',1,'share.php']]], + ['showform',['showForm',['../fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443',1,'fpostit.php']]], + ['siteinfo_2ephp',['siteinfo.php',['../siteinfo_8php.html',1,'']]], + ['siteinfo_5fcontent',['siteinfo_content',['../siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656',1,'siteinfo.php']]], + ['siteinfo_5finit',['siteinfo_init',['../siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0',1,'siteinfo.php']]], + ['smile_5fdecode',['smile_decode',['../text_8php.html#aca0f589be74fab1a460c57e88dad9779',1,'text.php']]], + ['smile_5fencode',['smile_encode',['../text_8php.html#a6232a23958366a80955a5782f4ba9073',1,'text.php']]], + ['smilies_2ephp',['smilies.php',['../smilies_8php.html',1,'']]], + ['smilies_5fcontent',['smilies_content',['../smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f',1,'smilies.php']]], + ['socgraph_2ephp',['socgraph.php',['../socgraph_8php.html',1,'']]], + ['sort_5fby_5fdate',['sort_by_date',['../event_8php.html#a018ea4484910a873a7c1eaa126de9b1a',1,'event.php']]], + ['sort_5fitem_5fchildren',['sort_item_children',['../conversation_8php.html#ae996eb116d397a2c6396c312d7b98664',1,'conversation.php']]], + ['sort_5fthr_5fcommented',['sort_thr_commented',['../conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11',1,'conversation.php']]], + ['sort_5fthr_5fcreated',['sort_thr_created',['../conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d',1,'conversation.php']]], + ['sort_5fthr_5fcreated_5frev',['sort_thr_created_rev',['../conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0',1,'conversation.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']]], + ['starred_2ephp',['starred.php',['../starred_8php.html',1,'']]], + ['starred_5finit',['starred_init',['../starred_8php.html#a63024fb418c678e49fd535e3752d349a',1,'starred.php']]], + ['startup',['startup',['../boot_8php.html#aca47505b8732177f52bb2d647eb2741c',1,'boot.php']]], + ['status_5feditor',['status_editor',['../conversation_8php.html#aedf008b9eac87f693d7dcc1a01404d85',1,'conversation.php']]], + ['store',['store',['../classPhoto.html#a15e21237805d5f1019b4e40322389194',1,'Photo']]], + ['store_5fitem_5ftag',['store_item_tag',['../text_8php.html#a4ba1339b2a7054971178ce194e4440fd',1,'text.php']]], + ['stream_5fperms_5fapi_5fuids',['stream_perms_api_uids',['../security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809',1,'security.php']]], + ['stringify_5farray_5felms',['stringify_array_elms',['../text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13',1,'text.php']]], + ['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]], + ['style_2ephp',['style.php',['../style_8php.html',1,'']]], + ['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]], + ['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]], + ['suggest_2ephp',['suggest.php',['../suggest_8php.html',1,'']]], + ['suggest_5fcontent',['suggest_content',['../suggest_8php.html#a58748a8235d4523f8333847f3e42dd91',1,'suggest.php']]], + ['suggest_5finit',['suggest_init',['../suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c',1,'suggest.php']]], + ['suggestion_5fquery',['suggestion_query',['../socgraph_8php.html#aab445ff14a151fda2efbabde65faf134',1,'socgraph.php']]], + ['supportedtypes',['supportedTypes',['../classPhoto.html#af46fdc365916728deb59adf5c99f528d',1,'Photo']]], + ['syncdirs',['syncdirs',['../dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a',1,'dir_fns.php']]], + ['system_5fdown',['system_down',['../system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa',1,'system_unavailable.php']]], + ['system_5funavailable',['system_unavailable',['../boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0',1,'boot.php']]], + ['system_5funavailable_2ephp',['system_unavailable.php',['../system__unavailable_8php.html',1,'']]] +]; diff --git a/doc/html/search/all_74.html b/doc/html/search/all_74.html new file mode 100644 index 000000000..c646aeffc --- /dev/null +++ b/doc/html/search/all_74.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_74.js b/doc/html/search/all_74.js new file mode 100644 index 000000000..7de6ee8ba --- /dev/null +++ b/doc/html/search/all_74.js @@ -0,0 +1,51 @@ +var searchData= +[ + ['tag_5fdeliver',['tag_deliver',['../items_8php.html#ab1bce4261bcf75ad62753b498a144d17',1,'items.php']]], + ['tagadelic',['tagadelic',['../text_8php.html#afe44c30f1d0f8cb3ca097d4e189d852d',1,'text.php']]], + ['tagblock',['tagblock',['../text_8php.html#a4f3605ee8de717a401ea9df2401b59f6',1,'text.php']]], + ['tagger_2ephp',['tagger.php',['../tagger_8php.html',1,'']]], + ['tagger_5fcontent',['tagger_content',['../tagger_8php.html#a0e4a3eb177d1684553c547503d67161c',1,'tagger.php']]], + ['tagrm_2ephp',['tagrm.php',['../tagrm_8php.html',1,'']]], + ['tagrm_5fcontent',['tagrm_content',['../tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a',1,'tagrm.php']]], + ['tagrm_5fpost',['tagrm_post',['../tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78',1,'tagrm.php']]], + ['tags_5fsort',['tags_sort',['../text_8php.html#aaeded36bcc983b35d9205fe5b6c18c43',1,'text.php']]], + ['template',['Template',['../classTemplate.html',1,'']]], + ['template_5fescape',['template_escape',['../template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5',1,'template_processor.php']]], + ['template_5fprocessor_2ephp',['template_processor.php',['../template__processor_8php.html',1,'']]], + ['template_5funescape',['template_unescape',['../template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e',1,'template_processor.php']]], + ['term_5fcategory',['TERM_CATEGORY',['../boot_8php.html#af33d1b2e98a1e21af672005525d46dfe',1,'boot.php']]], + ['term_5ffile',['TERM_FILE',['../boot_8php.html#afb97615e985a013799839b68b99018d7',1,'boot.php']]], + ['term_5fhashtag',['TERM_HASHTAG',['../boot_8php.html#a2750985ec445617d7e82ae3098c91e3f',1,'boot.php']]], + ['term_5fmention',['TERM_MENTION',['../boot_8php.html#ae37444eaa42705185080ccf3e670cbc2',1,'boot.php']]], + ['term_5fobj_5fphoto',['TERM_OBJ_PHOTO',['../boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd',1,'boot.php']]], + ['term_5fobj_5fpost',['TERM_OBJ_POST',['../boot_8php.html#a9eeb8989272d5ff804a616898bb13659',1,'boot.php']]], + ['term_5fpcategory',['TERM_PCATEGORY',['../boot_8php.html#a45b12aefab9675baffc7a07a09486db8',1,'boot.php']]], + ['term_5fquery',['term_query',['../text_8php.html#a7a913d19c77610da689be48fbbf6734c',1,'text.php']]], + ['term_5fsavedsearch',['TERM_SAVEDSEARCH',['../boot_8php.html#abd7bb40da9cc073297e49736b338ca07',1,'boot.php']]], + ['term_5funknown',['TERM_UNKNOWN',['../boot_8php.html#a0c59dde058efebbc66520d136cbd1631',1,'boot.php']]], + ['terminate_5ffriendship',['terminate_friendship',['../Contact_8php.html#a38daa1c210b78385307123450ca9a1fc',1,'Contact.php']]], + ['termtype',['termtype',['../items_8php.html#ad34827ed330898456783fb14c7b46154',1,'items.php']]], + ['test_2ephp',['test.php',['../test_8php.html',1,'']]], + ['test_5fcontent',['test_content',['../test_8php.html#aaff133c1f566a332b5a3ae41b70941f8',1,'test.php']]], + ['test_5finit',['test_init',['../test_2php_2theme_8php.html#ad4235a22a5389b2291cdee55677e3cc5',1,'theme.php']]], + ['text_2ephp',['text.php',['../text_8php.html',1,'']]], + ['tgroup_5fcheck',['tgroup_check',['../items_8php.html#a88c6cf7649ac836fbbed82a7a0315110',1,'items.php']]], + ['theme_2ephp',['theme.php',['../redbasic_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../test_2php_2theme_8php.html',1,'']]], + ['theme_5fcontent',['theme_content',['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'config.php']]], + ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], + ['theme_5finfo',['theme_info',['../test_2php_2theme_8php.html#ae74b5c3ec259b616b5137f6cfc591fb5',1,'theme.php']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme__init_8php.html',1,'']]], + ['theme_5fpost',['theme_post',['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'config.php']]], + ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], + ['timesel',['timesel',['../datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1',1,'datetime.php']]], + ['timezone_5fcmp',['timezone_cmp',['../datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865',1,'datetime.php']]], + ['title_5fis_5fbody',['title_is_body',['../items_8php.html#a1f747db2277904f85ac7b9e64c024e4e',1,'items.php']]], + ['toggle_5fmobile_2ephp',['toggle_mobile.php',['../toggle__mobile_8php.html',1,'']]], + ['toggle_5fmobile_5finit',['toggle_mobile_init',['../toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254',1,'toggle_mobile.php']]], + ['toggle_5ftheme',['toggle_theme',['../admin_8php.html#af81f081851791cd15e49e8ff6722dc27',1,'admin.php']]], + ['tplpaths',['tplpaths',['../namespaceupdatetpl.html#a52a85ffa6b6d63d840b185a133478c12',1,'updatetpl']]], + ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]], + ['typo_2ephp',['typo.php',['../typo_8php.html',1,'']]], + ['typohelper_2ephp',['typohelper.php',['../typohelper_8php.html',1,'']]] +]; diff --git a/doc/html/search/all_75.html b/doc/html/search/all_75.html new file mode 100644 index 000000000..550133a97 --- /dev/null +++ b/doc/html/search/all_75.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_75.js b/doc/html/search/all_75.js new file mode 100644 index 000000000..6bafb6f24 --- /dev/null +++ b/doc/html/search/all_75.js @@ -0,0 +1,29 @@ +var searchData= +[ + ['uexport_2ephp',['uexport.php',['../uexport_8php.html',1,'']]], + ['uexport_5finit',['uexport_init',['../uexport_8php.html#a118920137dedebe0581623a2e57e7b0d',1,'uexport.php']]], + ['undo_5fpost_5ftagging',['undo_post_tagging',['../text_8php.html#a740ad03e00459039a2c0992246c4e727',1,'text.php']]], + ['unescape_5funderscores_5fin_5flinks',['unescape_underscores_in_links',['../bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747',1,'bb2diaspora.php']]], + ['update_5fchannel_2ephp',['update_channel.php',['../update__channel_8php.html',1,'']]], + ['update_5fchannel_5fcontent',['update_channel_content',['../update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba',1,'update_channel.php']]], + ['update_5fcommunity_2ephp',['update_community.php',['../update__community_8php.html',1,'']]], + ['update_5fcommunity_5fcontent',['update_community_content',['../update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1',1,'update_community.php']]], + ['update_5fdisplay_2ephp',['update_display.php',['../update__display_8php.html',1,'']]], + ['update_5fdisplay_5fcontent',['update_display_content',['../update__display_8php.html#aa36ac524059e209d5d75a03c16206246',1,'update_display.php']]], + ['update_5ffailed',['UPDATE_FAILED',['../boot_8php.html#a75fc600186b13c3b25e661afefb5eac8',1,'boot.php']]], + ['update_5fimported_5fitem',['update_imported_item',['../zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df',1,'zot.php']]], + ['update_5fnetwork_2ephp',['update_network.php',['../update__network_8php.html',1,'']]], + ['update_5fnetwork_5fcontent',['update_network_content',['../update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41',1,'update_network.php']]], + ['update_5fqueue_5ftime',['update_queue_time',['../queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1',1,'queue_fn.php']]], + ['update_5fsuccess',['UPDATE_SUCCESS',['../boot_8php.html#ac86615ddc0763a00f5311c90e991730c',1,'boot.php']]], + ['update_5fsuggestions',['update_suggestions',['../socgraph_8php.html#a790690bb1a1d02483fe31632a160144d',1,'socgraph.php']]], + ['updatetpl',['updatetpl',['../namespaceupdatetpl.html',1,'']]], + ['updatetpl_2epy',['updatetpl.py',['../updatetpl_8py.html',1,'']]], + ['upgrade_5fbool_5fmessage',['upgrade_bool_message',['../plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d',1,'plugin.php']]], + ['upgrade_5flink',['upgrade_link',['../plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040',1,'plugin.php']]], + ['upgrade_5fmessage',['upgrade_message',['../plugin_8php.html#a901657dd078e070516cf97285e0bada7',1,'plugin.php']]], + ['user_5fallow',['user_allow',['../account_8php.html#ac5c570a2d46446bad4dd2501e9c5a4b1',1,'account.php']]], + ['user_5fdeny',['user_deny',['../account_8php.html#ac1653efba62493b9d87513e1b6c04c83',1,'account.php']]], + ['user_5fremove',['user_remove',['../Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15',1,'Contact.php']]], + ['util',['util',['../namespaceutil.html',1,'']]] +]; diff --git a/doc/html/search/all_76.html b/doc/html/search/all_76.html new file mode 100644 index 000000000..50b86daa0 --- /dev/null +++ b/doc/html/search/all_76.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_76.js b/doc/html/search/all_76.js new file mode 100644 index 000000000..840ae9f3b --- /dev/null +++ b/doc/html/search/all_76.js @@ -0,0 +1,17 @@ +var searchData= +[ + ['validate_5fchannelname',['validate_channelname',['../identity_8php.html#af2802bc13a00a17b867bba7978ba8f58',1,'identity.php']]], + ['validate_5femail',['validate_email',['../include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02',1,'network.php']]], + ['validate_5furl',['validate_url',['../include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2',1,'network.php']]], + ['var_5freplace',['var_replace',['../classTemplate.html#abbc484016ddf5d818f55b823cae6feb0',1,'Template']]], + ['vcard_5ffrom_5fxchan',['vcard_from_xchan',['../Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960',1,'Contact.php']]], + ['view_2ephp',['view.php',['../view_8php.html',1,'']]], + ['view_5finit',['view_init',['../view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e',1,'view.php']]], + ['viewconnections_2ephp',['viewconnections.php',['../viewconnections_8php.html',1,'']]], + ['viewconnections_5faside',['viewconnections_aside',['../viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6',1,'viewconnections.php']]], + ['viewconnections_5fcontent',['viewconnections_content',['../viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776',1,'viewconnections.php']]], + ['viewconnections_5finit',['viewconnections_init',['../viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330',1,'viewconnections.php']]], + ['viewsrc_2ephp',['viewsrc.php',['../viewsrc_8php.html',1,'']]], + ['viewsrc_5fcontent',['viewsrc_content',['../viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4',1,'viewsrc.php']]], + ['visible_5factivity',['visible_activity',['../conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3',1,'conversation.php']]] +]; diff --git a/doc/html/search/all_77.html b/doc/html/search/all_77.html new file mode 100644 index 000000000..55d714292 --- /dev/null +++ b/doc/html/search/all_77.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_77.js b/doc/html/search/all_77.js new file mode 100644 index 000000000..cde7a9842 --- /dev/null +++ b/doc/html/search/all_77.js @@ -0,0 +1,13 @@ +var searchData= +[ + ['wall_5fattach_2ephp',['wall_attach.php',['../wall__attach_8php.html',1,'']]], + ['wall_5fattach_5fpost',['wall_attach_post',['../wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653',1,'wall_attach.php']]], + ['wall_5fupload_2ephp',['wall_upload.php',['../wall__upload_8php.html',1,'']]], + ['wall_5fupload_5fpost',['wall_upload_post',['../wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f',1,'wall_upload.php']]], + ['webfinger',['webfinger',['../include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5',1,'network.php']]], + ['webfinger_2ephp',['webfinger.php',['../webfinger_8php.html',1,'']]], + ['webfinger_5fcontent',['webfinger_content',['../webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3',1,'webfinger.php']]], + ['webfinger_5fdfrn',['webfinger_dfrn',['../include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335',1,'network.php']]], + ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]], + ['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]] +]; diff --git a/doc/html/search/all_78.html b/doc/html/search/all_78.html new file mode 100644 index 000000000..39075d44e --- /dev/null +++ b/doc/html/search/all_78.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_78.js b/doc/html/search/all_78.js new file mode 100644 index 000000000..eac968350 --- /dev/null +++ b/doc/html/search/all_78.js @@ -0,0 +1,13 @@ +var searchData= +[ + ['x',['x',['../boot_8php.html#a01353c9abebc3544ea080ac161729632',1,'boot.php']]], + ['xchan_2ephp',['xchan.php',['../xchan_8php.html',1,'']]], + ['xchan_5fcontent',['xchan_content',['../xchan_8php.html#a9853348bf1a35c644460221ba75edc2d',1,'xchan.php']]], + ['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]], + ['xchan_5fmail_5fquery',['xchan_mail_query',['../text_8php.html#a543447c5ed766535221e2d9636b379ee',1,'text.php']]], + ['xchan_5fquery',['xchan_query',['../text_8php.html#a24b2b69b9162da789ab6514e0e09a37c',1,'text.php']]], + ['xml2array',['xml2array',['../include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff',1,'network.php']]], + ['xml_5fstatus',['xml_status',['../include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6',1,'network.php']]], + ['xrd_2ephp',['xrd.php',['../xrd_8php.html',1,'']]], + ['xrd_5finit',['xrd_init',['../xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270',1,'xrd.php']]] +]; diff --git a/doc/html/search/all_7a.html b/doc/html/search/all_7a.html new file mode 100644 index 000000000..5d99ff761 --- /dev/null +++ b/doc/html/search/all_7a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/all_7a.js b/doc/html/search/all_7a.js new file mode 100644 index 000000000..5b1cef502 --- /dev/null +++ b/doc/html/search/all_7a.js @@ -0,0 +1,34 @@ +var searchData= +[ + ['z_5fbirthday',['z_birthday',['../boot_8php.html#ab55e545b72ec8c097e052ea7d373491f',1,'boot.php']]], + ['z_5ffetch_5furl',['z_fetch_url',['../include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37',1,'network.php']]], + ['z_5fmime_5fcontent_5ftype',['z_mime_content_type',['../include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a',1,'attach.php']]], + ['z_5fpath',['z_path',['../boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda',1,'boot.php']]], + ['z_5fpost_5furl',['z_post_url',['../include_2network_8php.html#a6259181fec4d36722d1e91ac6210e876',1,'network.php']]], + ['z_5froot',['z_root',['../boot_8php.html#add517a0958ac684792c62142a3877f81',1,'boot.php']]], + ['zcurl_5ftimeout',['ZCURL_TIMEOUT',['../boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af',1,'boot.php']]], + ['zfinger_2ephp',['zfinger.php',['../zfinger_8php.html',1,'']]], + ['zfinger_5finit',['zfinger_init',['../zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0',1,'zfinger.php']]], + ['zid',['zid',['../boot_8php.html#a5b7ce5c0a79796800883644c389dc87f',1,'boot.php']]], + ['zid_5finit',['zid_init',['../boot_8php.html#a680fbafc2db023c5b1309e0180e81315',1,'boot.php']]], + ['zot_2ephp',['zot.php',['../zot_8php.html',1,'']]], + ['zot_5fbuild_5fpacket',['zot_build_packet',['../zot_8php.html#a3862b3161b2c8557dc1a95020179bd81',1,'zot.php']]], + ['zot_5ffeed',['zot_feed',['../items_8php.html#a004e89d86b0f29b2c4da20108ecc4091',1,'items.php']]], + ['zot_5ffetch',['zot_fetch',['../zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea',1,'zot.php']]], + ['zot_5ffinger',['zot_finger',['../zot_8php.html#a77720d6b59894e9b609af89c310c8a4d',1,'zot.php']]], + ['zot_5fget_5fhubloc',['zot_get_hubloc',['../zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e',1,'zot.php']]], + ['zot_5fgethub',['zot_gethub',['../zot_8php.html#a55056e863a7860bc0cf922e78fcce073',1,'zot.php']]], + ['zot_5fimport',['zot_import',['../zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c',1,'zot.php']]], + ['zot_5fnew_5fuid',['zot_new_uid',['../zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7',1,'zot.php']]], + ['zot_5fnotify',['zot_notify',['../zot_8php.html#af22a8732e60d30055617a95f77493446',1,'zot.php']]], + ['zot_5fprocess_5fresponse',['zot_process_response',['../zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03',1,'zot.php']]], + ['zot_5frefresh',['zot_refresh',['../zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d',1,'zot.php']]], + ['zot_5fregister_5fhub',['zot_register_hub',['../zot_8php.html#a5bcdfef419b16075a0eca990956223dc',1,'zot.php']]], + ['zot_5frevision',['ZOT_REVISION',['../boot_8php.html#a36b31575f992a10b5927b76efba9362e',1,'boot.php']]], + ['zot_5fzot',['zot_zot',['../zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142',1,'zot.php']]], + ['zotdriver',['ZotDriver',['../classZotDriver.html',1,'']]], + ['zotfeed_2ephp',['zotfeed.php',['../zotfeed_8php.html',1,'']]], + ['zotfeed_5finit',['zotfeed_init',['../zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac',1,'zotfeed.php']]], + ['zperms_2ephp',['zperms.php',['../zperms_8php.html',1,'']]], + ['zperms_5finit',['zperms_init',['../zperms_8php.html#a2f698dcd51150bda3146425f038da628',1,'zperms.php']]] +]; diff --git a/doc/html/search/classes_61.html b/doc/html/search/classes_61.html new file mode 100644 index 000000000..a4c07d590 --- /dev/null +++ b/doc/html/search/classes_61.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_61.js b/doc/html/search/classes_61.js new file mode 100644 index 000000000..9703f2f97 --- /dev/null +++ b/doc/html/search/classes_61.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['app',['App',['../classApp.html',1,'']]] +]; diff --git a/doc/html/search/classes_62.html b/doc/html/search/classes_62.html new file mode 100644 index 000000000..04a59d2ef --- /dev/null +++ b/doc/html/search/classes_62.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_62.js b/doc/html/search/classes_62.js new file mode 100644 index 000000000..1aa035405 --- /dev/null +++ b/doc/html/search/classes_62.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['baseobject',['BaseObject',['../classBaseObject.html',1,'']]] +]; diff --git a/doc/html/search/classes_63.html b/doc/html/search/classes_63.html new file mode 100644 index 000000000..def37a7e1 --- /dev/null +++ b/doc/html/search/classes_63.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_63.js b/doc/html/search/classes_63.js new file mode 100644 index 000000000..56b080754 --- /dev/null +++ b/doc/html/search/classes_63.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['cache',['Cache',['../classCache.html',1,'']]], + ['conversation',['Conversation',['../classConversation.html',1,'']]] +]; diff --git a/doc/html/search/classes_64.html b/doc/html/search/classes_64.html new file mode 100644 index 000000000..4092564e3 --- /dev/null +++ b/doc/html/search/classes_64.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_64.js b/doc/html/search/classes_64.js new file mode 100644 index 000000000..42d81a0b9 --- /dev/null +++ b/doc/html/search/classes_64.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['dba',['dba',['../classdba.html',1,'']]] +]; diff --git a/doc/html/search/classes_65.html b/doc/html/search/classes_65.html new file mode 100644 index 000000000..4f441f9de --- /dev/null +++ b/doc/html/search/classes_65.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_65.js b/doc/html/search/classes_65.js new file mode 100644 index 000000000..ad80724c8 --- /dev/null +++ b/doc/html/search/classes_65.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['enotify',['enotify',['../classenotify.html',1,'']]] +]; diff --git a/doc/html/search/classes_66.html b/doc/html/search/classes_66.html new file mode 100644 index 000000000..b83e5933f --- /dev/null +++ b/doc/html/search/classes_66.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_66.js b/doc/html/search/classes_66.js new file mode 100644 index 000000000..cd285912e --- /dev/null +++ b/doc/html/search/classes_66.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['fkoauth1',['FKOAuth1',['../classFKOAuth1.html',1,'']]], + ['fkoauthdatastore',['FKOAuthDataStore',['../classFKOAuthDataStore.html',1,'']]], + ['friendicasmarty',['FriendicaSmarty',['../classFriendicaSmarty.html',1,'']]] +]; diff --git a/doc/html/search/classes_69.html b/doc/html/search/classes_69.html new file mode 100644 index 000000000..7a0d01368 --- /dev/null +++ b/doc/html/search/classes_69.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_69.js b/doc/html/search/classes_69.js new file mode 100644 index 000000000..875ce6426 --- /dev/null +++ b/doc/html/search/classes_69.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['item',['Item',['../classItem.html',1,'']]] +]; diff --git a/doc/html/search/classes_70.html b/doc/html/search/classes_70.html new file mode 100644 index 000000000..7c5b3e595 --- /dev/null +++ b/doc/html/search/classes_70.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_70.js b/doc/html/search/classes_70.js new file mode 100644 index 000000000..a71b881ea --- /dev/null +++ b/doc/html/search/classes_70.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['photo',['Photo',['../classPhoto.html',1,'']]], + ['protodriver',['ProtoDriver',['../classProtoDriver.html',1,'']]] +]; diff --git a/doc/html/search/classes_74.html b/doc/html/search/classes_74.html new file mode 100644 index 000000000..4b0fdaa16 --- /dev/null +++ b/doc/html/search/classes_74.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_74.js b/doc/html/search/classes_74.js new file mode 100644 index 000000000..a8854d502 --- /dev/null +++ b/doc/html/search/classes_74.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['template',['Template',['../classTemplate.html',1,'']]] +]; diff --git a/doc/html/search/classes_7a.html b/doc/html/search/classes_7a.html new file mode 100644 index 000000000..d9534cdbc --- /dev/null +++ b/doc/html/search/classes_7a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/classes_7a.js b/doc/html/search/classes_7a.js new file mode 100644 index 000000000..1b4744a16 --- /dev/null +++ b/doc/html/search/classes_7a.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['zotdriver',['ZotDriver',['../classZotDriver.html',1,'']]] +]; diff --git a/doc/html/search/close.png b/doc/html/search/close.png new file mode 100644 index 000000000..9342d3dfe Binary files /dev/null and b/doc/html/search/close.png differ diff --git a/doc/html/search/files_5f.html b/doc/html/search/files_5f.html new file mode 100644 index 000000000..b6c444603 --- /dev/null +++ b/doc/html/search/files_5f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_5f.js b/doc/html/search/files_5f.js new file mode 100644 index 000000000..2dbe8fc3a --- /dev/null +++ b/doc/html/search/files_5f.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_5fwell_5fknown_2ephp',['_well_known.php',['../__well__known_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_61.html b/doc/html/search/files_61.html new file mode 100644 index 000000000..0aa6beb10 --- /dev/null +++ b/doc/html/search/files_61.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_61.js b/doc/html/search/files_61.js new file mode 100644 index 000000000..6ad1b427b --- /dev/null +++ b/doc/html/search/files_61.js @@ -0,0 +1,15 @@ +var searchData= +[ + ['account_2ephp',['account.php',['../account_8php.html',1,'']]], + ['acl_2ephp',['acl.php',['../acl_8php.html',1,'']]], + ['acl_5fselectors_2ephp',['acl_selectors.php',['../acl__selectors_8php.html',1,'']]], + ['activities_2ephp',['activities.php',['../activities_8php.html',1,'']]], + ['admin_2ephp',['admin.php',['../admin_8php.html',1,'']]], + ['allfriends_2ephp',['allfriends.php',['../allfriends_8php.html',1,'']]], + ['api_2ephp',['api.php',['../mod_2api_8php.html',1,'']]], + ['api_2ephp',['api.php',['../include_2api_8php.html',1,'']]], + ['apps_2ephp',['apps.php',['../apps_8php.html',1,'']]], + ['attach_2ephp',['attach.php',['../mod_2attach_8php.html',1,'']]], + ['attach_2ephp',['attach.php',['../include_2attach_8php.html',1,'']]], + ['auth_2ephp',['auth.php',['../auth_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_62.html b/doc/html/search/files_62.html new file mode 100644 index 000000000..86dfe39e6 --- /dev/null +++ b/doc/html/search/files_62.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_62.js b/doc/html/search/files_62.js new file mode 100644 index 000000000..f982e5a2f --- /dev/null +++ b/doc/html/search/files_62.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['baseobject_2ephp',['BaseObject.php',['../BaseObject_8php.html',1,'']]], + ['bb2diaspora_2ephp',['bb2diaspora.php',['../bb2diaspora_8php.html',1,'']]], + ['bbcode_2ephp',['bbcode.php',['../bbcode_8php.html',1,'']]], + ['boot_2ephp',['boot.php',['../boot_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_63.html b/doc/html/search/files_63.html new file mode 100644 index 000000000..788d523a8 --- /dev/null +++ b/doc/html/search/files_63.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_63.js b/doc/html/search/files_63.js new file mode 100644 index 000000000..cd856759a --- /dev/null +++ b/doc/html/search/files_63.js @@ -0,0 +1,22 @@ +var searchData= +[ + ['cache_2ephp',['cache.php',['../cache_8php.html',1,'']]], + ['channel_2ephp',['channel.php',['../channel_8php.html',1,'']]], + ['chanview_2ephp',['chanview.php',['../chanview_8php.html',1,'']]], + ['cli_5fstartup_2ephp',['cli_startup.php',['../cli__startup_8php.html',1,'']]], + ['common_2ephp',['common.php',['../common_8php.html',1,'']]], + ['community_2ephp',['community.php',['../community_8php.html',1,'']]], + ['config_2emd',['config.md',['../config_8md.html',1,'']]], + ['config_2ephp',['config.php',['../view_2theme_2redbasic_2php_2config_8php.html',1,'']]], + ['config_2ephp',['config.php',['../include_2config_8php.html',1,'']]], + ['connections_2ephp',['connections.php',['../connections_8php.html',1,'']]], + ['contact_2ephp',['Contact.php',['../Contact_8php.html',1,'']]], + ['contact_5fselectors_2ephp',['contact_selectors.php',['../contact__selectors_8php.html',1,'']]], + ['contact_5fwidgets_2ephp',['contact_widgets.php',['../contact__widgets_8php.html',1,'']]], + ['contactgroup_2ephp',['contactgroup.php',['../contactgroup_8php.html',1,'']]], + ['conversation_2ephp',['conversation.php',['../conversation_8php.html',1,'']]], + ['conversationobject_2ephp',['ConversationObject.php',['../ConversationObject_8php.html',1,'']]], + ['crepair_2ephp',['crepair.php',['../crepair_8php.html',1,'']]], + ['cronhooks_2ephp',['cronhooks.php',['../cronhooks_8php.html',1,'']]], + ['crypto_2ephp',['crypto.php',['../crypto_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_64.html b/doc/html/search/files_64.html new file mode 100644 index 000000000..175a900cc --- /dev/null +++ b/doc/html/search/files_64.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_64.js b/doc/html/search/files_64.js new file mode 100644 index 000000000..53d11a02c --- /dev/null +++ b/doc/html/search/files_64.js @@ -0,0 +1,16 @@ +var searchData= +[ + ['datetime_2ephp',['datetime.php',['../datetime_8php.html',1,'']]], + ['db_5fupdate_2ephp',['db_update.php',['../db__update_8php.html',1,'']]], + ['dba_2ephp',['dba.php',['../dba_8php.html',1,'']]], + ['default_2ephp',['default.php',['../default_8php.html',1,'']]], + ['delegate_2ephp',['delegate.php',['../delegate_8php.html',1,'']]], + ['deliver_2ephp',['deliver.php',['../deliver_8php.html',1,'']]], + ['dir_5ffns_2ephp',['dir_fns.php',['../dir__fns_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../mod_2directory_8php.html',1,'']]], + ['directory_2ephp',['directory.php',['../include_2directory_8php.html',1,'']]], + ['dirfind_2ephp',['dirfind.php',['../dirfind_8php.html',1,'']]], + ['dirsearch_2ephp',['dirsearch.php',['../dirsearch_8php.html',1,'']]], + ['display_2ephp',['display.php',['../display_8php.html',1,'']]], + ['docblox_5ferrorchecker_2ephp',['docblox_errorchecker.php',['../docblox__errorchecker_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_65.html b/doc/html/search/files_65.html new file mode 100644 index 000000000..2347de991 --- /dev/null +++ b/doc/html/search/files_65.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_65.js b/doc/html/search/files_65.js new file mode 100644 index 000000000..defec9b4f --- /dev/null +++ b/doc/html/search/files_65.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['editpost_2ephp',['editpost.php',['../editpost_8php.html',1,'']]], + ['enotify_2ephp',['enotify.php',['../enotify_8php.html',1,'']]], + ['event_2ephp',['event.php',['../event_8php.html',1,'']]], + ['events_2ephp',['events.php',['../events_8php.html',1,'']]], + ['expire_2ephp',['expire.php',['../expire_8php.html',1,'']]], + ['extract_2ephp',['extract.php',['../extract_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_66.html b/doc/html/search/files_66.html new file mode 100644 index 000000000..70873b352 --- /dev/null +++ b/doc/html/search/files_66.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_66.js b/doc/html/search/files_66.js new file mode 100644 index 000000000..4260575e6 --- /dev/null +++ b/doc/html/search/files_66.js @@ -0,0 +1,17 @@ +var searchData= +[ + ['fbrowser_2ephp',['fbrowser.php',['../fbrowser_8php.html',1,'']]], + ['fcontact_2ephp',['fcontact.php',['../fcontact_8php.html',1,'']]], + ['features_2ephp',['features.php',['../features_8php.html',1,'']]], + ['feed_2ephp',['feed.php',['../feed_8php.html',1,'']]], + ['filer_2ephp',['filer.php',['../filer_8php.html',1,'']]], + ['filerm_2ephp',['filerm.php',['../filerm_8php.html',1,'']]], + ['follow_2ephp',['follow.php',['../mod_2follow_8php.html',1,'']]], + ['follow_2ephp',['follow.php',['../include_2follow_8php.html',1,'']]], + ['fpostit_2ephp',['fpostit.php',['../fpostit_8php.html',1,'']]], + ['fresh_2emd',['fresh.md',['../fresh_8md.html',1,'']]], + ['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,'']]] +]; diff --git a/doc/html/search/files_67.html b/doc/html/search/files_67.html new file mode 100644 index 000000000..65d69ddc0 --- /dev/null +++ b/doc/html/search/files_67.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_67.js b/doc/html/search/files_67.js new file mode 100644 index 000000000..f9924735e --- /dev/null +++ b/doc/html/search/files_67.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['gprobe_2ephp',['gprobe.php',['../gprobe_8php.html',1,'']]], + ['group_2ephp',['group.php',['../include_2group_8php.html',1,'']]], + ['group_2ephp',['group.php',['../mod_2group_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_68.html b/doc/html/search/files_68.html new file mode 100644 index 000000000..35734d1fc --- /dev/null +++ b/doc/html/search/files_68.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_68.js b/doc/html/search/files_68.js new file mode 100644 index 000000000..4377d15af --- /dev/null +++ b/doc/html/search/files_68.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['hcard_2ephp',['hcard.php',['../hcard_8php.html',1,'']]], + ['help_2ephp',['help.php',['../help_8php.html',1,'']]], + ['home_2ephp',['home.php',['../home_8php.html',1,'']]], + ['hostxrd_2ephp',['hostxrd.php',['../hostxrd_8php.html',1,'']]], + ['html2bbcode_2ephp',['html2bbcode.php',['../html2bbcode_8php.html',1,'']]], + ['html2plain_2ephp',['html2plain.php',['../html2plain_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_69.html b/doc/html/search/files_69.html new file mode 100644 index 000000000..4e0baee7a --- /dev/null +++ b/doc/html/search/files_69.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_69.js b/doc/html/search/files_69.js new file mode 100644 index 000000000..1465b3c0e --- /dev/null +++ b/doc/html/search/files_69.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['identity_2ephp',['identity.php',['../identity_8php.html',1,'']]], + ['import_2ephp',['import.php',['../import_8php.html',1,'']]], + ['intro_2ephp',['intro.php',['../intro_8php.html',1,'']]], + ['invite_2ephp',['invite.php',['../invite_8php.html',1,'']]], + ['iquery_2ephp',['iquery.php',['../iquery_8php.html',1,'']]], + ['item_2ephp',['item.php',['../item_8php.html',1,'']]], + ['itemobject_2ephp',['ItemObject.php',['../ItemObject_8php.html',1,'']]], + ['items_2ephp',['items.php',['../items_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_6c.html b/doc/html/search/files_6c.html new file mode 100644 index 000000000..088b17f00 --- /dev/null +++ b/doc/html/search/files_6c.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_6c.js b/doc/html/search/files_6c.js new file mode 100644 index 000000000..f917d39b0 --- /dev/null +++ b/doc/html/search/files_6c.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['language_2ephp',['language.php',['../language_8php.html',1,'']]], + ['like_2ephp',['like.php',['../like_8php.html',1,'']]], + ['lockview_2ephp',['lockview.php',['../lockview_8php.html',1,'']]], + ['login_2ephp',['login.php',['../login_8php.html',1,'']]], + ['lostpass_2ephp',['lostpass.php',['../lostpass_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_6d.html b/doc/html/search/files_6d.html new file mode 100644 index 000000000..5796e5280 --- /dev/null +++ b/doc/html/search/files_6d.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_6d.js b/doc/html/search/files_6d.js new file mode 100644 index 000000000..dfe1de471 --- /dev/null +++ b/doc/html/search/files_6d.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['magic_2ephp',['magic.php',['../magic_8php.html',1,'']]], + ['manage_2ephp',['manage.php',['../manage_8php.html',1,'']]], + ['match_2ephp',['match.php',['../match_8php.html',1,'']]], + ['message_2ephp',['message.php',['../mod_2message_8php.html',1,'']]], + ['message_2ephp',['message.php',['../include_2message_8php.html',1,'']]], + ['minimal_2ephp',['minimal.php',['../minimal_8php.html',1,'']]], + ['mod_5fimport_2ephp',['mod_import.php',['../mod__import_8php.html',1,'']]], + ['mod_5fnew_5fchannel_2ephp',['mod_new_channel.php',['../mod__new__channel_8php.html',1,'']]], + ['mod_5fregister_2ephp',['mod_register.php',['../mod__register_8php.html',1,'']]], + ['mood_2ephp',['mood.php',['../mood_8php.html',1,'']]], + ['msearch_2ephp',['msearch.php',['../msearch_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_6e.html b/doc/html/search/files_6e.html new file mode 100644 index 000000000..def03fe7d --- /dev/null +++ b/doc/html/search/files_6e.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_6e.js b/doc/html/search/files_6e.js new file mode 100644 index 000000000..1d6cb6c17 --- /dev/null +++ b/doc/html/search/files_6e.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['nav_2ephp',['nav.php',['../nav_8php.html',1,'']]], + ['network_2ephp',['network.php',['../include_2network_8php.html',1,'']]], + ['network_2ephp',['network.php',['../mod_2network_8php.html',1,'']]], + ['new_5fchannel_2ephp',['new_channel.php',['../new__channel_8php.html',1,'']]], + ['nogroup_2ephp',['nogroup.php',['../nogroup_8php.html',1,'']]], + ['notifications_2ephp',['notifications.php',['../notifications_8php.html',1,'']]], + ['notifier_2ephp',['notifier.php',['../notifier_8php.html',1,'']]], + ['notify_2ephp',['notify.php',['../mod_2notify_8php.html',1,'']]], + ['notify_2ephp',['notify.php',['../include_2notify_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_6f.html b/doc/html/search/files_6f.html new file mode 100644 index 000000000..4f9b7bbdb --- /dev/null +++ b/doc/html/search/files_6f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_6f.js b/doc/html/search/files_6f.js new file mode 100644 index 000000000..85c779ba1 --- /dev/null +++ b/doc/html/search/files_6f.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['oauth_2ephp',['oauth.php',['../oauth_8php.html',1,'']]], + ['oembed_2ephp',['oembed.php',['../include_2oembed_8php.html',1,'']]], + ['oembed_2ephp',['oembed.php',['../mod_2oembed_8php.html',1,'']]], + ['oexchange_2ephp',['oexchange.php',['../oexchange_8php.html',1,'']]], + ['onepoll_2ephp',['onepoll.php',['../onepoll_8php.html',1,'']]], + ['opensearch_2ephp',['opensearch.php',['../opensearch_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_70.html b/doc/html/search/files_70.html new file mode 100644 index 000000000..e159ceaae --- /dev/null +++ b/doc/html/search/files_70.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_70.js b/doc/html/search/files_70.js new file mode 100644 index 000000000..0d7981711 --- /dev/null +++ b/doc/html/search/files_70.js @@ -0,0 +1,26 @@ +var searchData= +[ + ['page_2ephp',['page.php',['../page_8php.html',1,'']]], + ['parse_5furl_2ephp',['parse_url.php',['../parse__url_8php.html',1,'']]], + ['permissions_2ephp',['permissions.php',['../permissions_8php.html',1,'']]], + ['photo_2ephp',['Photo.php',['../Photo_8php.html',1,'(Global Namespace)'],['../photo_8php.html',1,'(Global Namespace)']]], + ['photos_2ephp',['photos.php',['../mod_2photos_8php.html',1,'']]], + ['photos_2ephp',['photos.php',['../include_2photos_8php.html',1,'']]], + ['php2po_2ephp',['php2po.php',['../php2po_8php.html',1,'']]], + ['ping_2ephp',['ping.php',['../ping_8php.html',1,'']]], + ['plugin_2ephp',['plugin.php',['../plugin_8php.html',1,'']]], + ['po2php_2ephp',['po2php.php',['../po2php_8php.html',1,'']]], + ['poco_2ephp',['poco.php',['../poco_8php.html',1,'']]], + ['poke_2ephp',['poke.php',['../poke_8php.html',1,'']]], + ['poller_2ephp',['poller.php',['../poller_8php.html',1,'']]], + ['post_2ephp',['post.php',['../post_8php.html',1,'']]], + ['pretheme_2ephp',['pretheme.php',['../pretheme_8php.html',1,'']]], + ['probe_2ephp',['probe.php',['../probe_8php.html',1,'']]], + ['profile_2ephp',['profile.php',['../profile_8php.html',1,'']]], + ['profile_5fadvanced_2ephp',['profile_advanced.php',['../profile__advanced_8php.html',1,'']]], + ['profile_5fphoto_2ephp',['profile_photo.php',['../profile__photo_8php.html',1,'']]], + ['profile_5fselectors_2ephp',['profile_selectors.php',['../profile__selectors_8php.html',1,'']]], + ['profiles_2ephp',['profiles.php',['../profiles_8php.html',1,'']]], + ['profperm_2ephp',['profperm.php',['../profperm_8php.html',1,'']]], + ['protodriver_2ephp',['ProtoDriver.php',['../ProtoDriver_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_71.html b/doc/html/search/files_71.html new file mode 100644 index 000000000..a417eff53 --- /dev/null +++ b/doc/html/search/files_71.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_71.js b/doc/html/search/files_71.js new file mode 100644 index 000000000..1da0b5b3f --- /dev/null +++ b/doc/html/search/files_71.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['qsearch_2ephp',['qsearch.php',['../qsearch_8php.html',1,'']]], + ['queue_2ephp',['queue.php',['../queue_8php.html',1,'']]], + ['queue_5ffn_2ephp',['queue_fn.php',['../queue__fn_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_72.html b/doc/html/search/files_72.html new file mode 100644 index 000000000..573ec112d --- /dev/null +++ b/doc/html/search/files_72.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_72.js b/doc/html/search/files_72.js new file mode 100644 index 000000000..90c072d60 --- /dev/null +++ b/doc/html/search/files_72.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['randprof_2ephp',['randprof.php',['../randprof_8php.html',1,'']]], + ['redir_2ephp',['redir.php',['../redir_8php.html',1,'']]], + ['register_2ephp',['register.php',['../register_8php.html',1,'']]], + ['regmod_2ephp',['regmod.php',['../regmod_8php.html',1,'']]], + ['removeme_2ephp',['removeme.php',['../removeme_8php.html',1,'']]], + ['rmagic_2ephp',['rmagic.php',['../rmagic_8php.html',1,'']]], + ['rsd_5fxml_2ephp',['rsd_xml.php',['../rsd__xml_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_73.html b/doc/html/search/files_73.html new file mode 100644 index 000000000..bcc9ae6ee --- /dev/null +++ b/doc/html/search/files_73.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_73.js b/doc/html/search/files_73.js new file mode 100644 index 000000000..74e3808a3 --- /dev/null +++ b/doc/html/search/files_73.js @@ -0,0 +1,19 @@ +var searchData= +[ + ['scrape_2ephp',['Scrape.php',['../Scrape_8php.html',1,'']]], + ['search_2ephp',['search.php',['../search_8php.html',1,'']]], + ['search_5fac_2ephp',['search_ac.php',['../search__ac_8php.html',1,'']]], + ['security_2ephp',['security.php',['../security_8php.html',1,'']]], + ['session_2ephp',['session.php',['../session_8php.html',1,'']]], + ['settings_2ephp',['settings.php',['../settings_8php.html',1,'']]], + ['setup_2ephp',['setup.php',['../setup_8php.html',1,'']]], + ['share_2ephp',['share.php',['../share_8php.html',1,'']]], + ['siteinfo_2ephp',['siteinfo.php',['../siteinfo_8php.html',1,'']]], + ['smilies_2ephp',['smilies.php',['../smilies_8php.html',1,'']]], + ['socgraph_2ephp',['socgraph.php',['../socgraph_8php.html',1,'']]], + ['starred_2ephp',['starred.php',['../starred_8php.html',1,'']]], + ['style_2ephp',['style.php',['../style_8php.html',1,'']]], + ['subthread_2ephp',['subthread.php',['../subthread_8php.html',1,'']]], + ['suggest_2ephp',['suggest.php',['../suggest_8php.html',1,'']]], + ['system_5funavailable_2ephp',['system_unavailable.php',['../system__unavailable_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_74.html b/doc/html/search/files_74.html new file mode 100644 index 000000000..985db8690 --- /dev/null +++ b/doc/html/search/files_74.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_74.js b/doc/html/search/files_74.js new file mode 100644 index 000000000..8b5822694 --- /dev/null +++ b/doc/html/search/files_74.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['tagger_2ephp',['tagger.php',['../tagger_8php.html',1,'']]], + ['tagrm_2ephp',['tagrm.php',['../tagrm_8php.html',1,'']]], + ['template_5fprocessor_2ephp',['template_processor.php',['../template__processor_8php.html',1,'']]], + ['test_2ephp',['test.php',['../test_8php.html',1,'']]], + ['text_2ephp',['text.php',['../text_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../test_2php_2theme_8php.html',1,'']]], + ['theme_2ephp',['theme.php',['../redbasic_2php_2theme_8php.html',1,'']]], + ['theme_5finit_2ephp',['theme_init.php',['../theme__init_8php.html',1,'']]], + ['toggle_5fmobile_2ephp',['toggle_mobile.php',['../toggle__mobile_8php.html',1,'']]], + ['typo_2ephp',['typo.php',['../typo_8php.html',1,'']]], + ['typohelper_2ephp',['typohelper.php',['../typohelper_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_75.html b/doc/html/search/files_75.html new file mode 100644 index 000000000..70607dd35 --- /dev/null +++ b/doc/html/search/files_75.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_75.js b/doc/html/search/files_75.js new file mode 100644 index 000000000..f6ba9b0fc --- /dev/null +++ b/doc/html/search/files_75.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['uexport_2ephp',['uexport.php',['../uexport_8php.html',1,'']]], + ['update_5fchannel_2ephp',['update_channel.php',['../update__channel_8php.html',1,'']]], + ['update_5fcommunity_2ephp',['update_community.php',['../update__community_8php.html',1,'']]], + ['update_5fdisplay_2ephp',['update_display.php',['../update__display_8php.html',1,'']]], + ['update_5fnetwork_2ephp',['update_network.php',['../update__network_8php.html',1,'']]], + ['updatetpl_2epy',['updatetpl.py',['../updatetpl_8py.html',1,'']]] +]; diff --git a/doc/html/search/files_76.html b/doc/html/search/files_76.html new file mode 100644 index 000000000..174dedb49 --- /dev/null +++ b/doc/html/search/files_76.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_76.js b/doc/html/search/files_76.js new file mode 100644 index 000000000..2f5aac4b4 --- /dev/null +++ b/doc/html/search/files_76.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['view_2ephp',['view.php',['../view_8php.html',1,'']]], + ['viewconnections_2ephp',['viewconnections.php',['../viewconnections_8php.html',1,'']]], + ['viewsrc_2ephp',['viewsrc.php',['../viewsrc_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_77.html b/doc/html/search/files_77.html new file mode 100644 index 000000000..63bf92c09 --- /dev/null +++ b/doc/html/search/files_77.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_77.js b/doc/html/search/files_77.js new file mode 100644 index 000000000..4e4a682f7 --- /dev/null +++ b/doc/html/search/files_77.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['wall_5fattach_2ephp',['wall_attach.php',['../wall__attach_8php.html',1,'']]], + ['wall_5fupload_2ephp',['wall_upload.php',['../wall__upload_8php.html',1,'']]], + ['webfinger_2ephp',['webfinger.php',['../webfinger_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_78.html b/doc/html/search/files_78.html new file mode 100644 index 000000000..d1e306db2 --- /dev/null +++ b/doc/html/search/files_78.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_78.js b/doc/html/search/files_78.js new file mode 100644 index 000000000..cd29e0cce --- /dev/null +++ b/doc/html/search/files_78.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['xchan_2ephp',['xchan.php',['../xchan_8php.html',1,'']]], + ['xrd_2ephp',['xrd.php',['../xrd_8php.html',1,'']]] +]; diff --git a/doc/html/search/files_7a.html b/doc/html/search/files_7a.html new file mode 100644 index 000000000..935df7f2d --- /dev/null +++ b/doc/html/search/files_7a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/files_7a.js b/doc/html/search/files_7a.js new file mode 100644 index 000000000..02bfad2af --- /dev/null +++ b/doc/html/search/files_7a.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['zfinger_2ephp',['zfinger.php',['../zfinger_8php.html',1,'']]], + ['zot_2ephp',['zot.php',['../zot_8php.html',1,'']]], + ['zotfeed_2ephp',['zotfeed.php',['../zotfeed_8php.html',1,'']]], + ['zperms_2ephp',['zperms.php',['../zperms_8php.html',1,'']]] +]; diff --git a/doc/html/search/functions_5f.html b/doc/html/search/functions_5f.html new file mode 100644 index 000000000..2946e1e69 --- /dev/null +++ b/doc/html/search/functions_5f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_5f.js b/doc/html/search/functions_5f.js new file mode 100644 index 000000000..d9e793fe7 --- /dev/null +++ b/doc/html/search/functions_5f.js @@ -0,0 +1,17 @@ +var searchData= +[ + ['_5f_5fconstruct',['__construct',['../classApp.html#af6d39f63fb7116bbeb04e51696f99474',1,'App\__construct()'],['../classConversation.html#a6b064d00c56a6b7dec359d4348711c84',1,'Conversation\__construct()'],['../classdba.html#aa36df91d776eedd1b90b9518a610d9fb',1,'dba\__construct()'],['../classFriendicaSmarty.html#af12091b920b95eeef1218cbc48066ca6',1,'FriendicaSmarty\__construct()'],['../classItem.html#a248f45871ecfe82a08d1d4c0769b2eb2',1,'Item\__construct()'],['../classFKOAuth1.html#a2f1276872329a6f0b704ccda1a4b9fa6',1,'FKOAuth1\__construct()'],['../classPhoto.html#ad06199e7c1222350ef8c1cdcfade265c',1,'Photo\__construct()']]], + ['_5f_5fdestruct',['__destruct',['../classdba.html#ac25853e4d454aec9cfead4814429550d',1,'dba\__destruct()'],['../classPhoto.html#a0906cba2a2a895cc22179de27449cbd2',1,'Photo\__destruct()']]], + ['_5fbuild_5fnodes',['_build_nodes',['../classTemplate.html#ac41c96e1f407b1a910029e5f4b7de8e4',1,'Template']]], + ['_5fget_5fvar',['_get_var',['../classTemplate.html#aae9c4d761ea1298e745e8052d7910194',1,'Template']]], + ['_5fpop_5fstack',['_pop_stack',['../classTemplate.html#a35d599c9b53a02e2fe2232e5b7ed5da7',1,'Template']]], + ['_5fpreg_5ferror',['_preg_error',['../classTemplate.html#a37c15f6d1ade500943629f27a62808b7',1,'Template']]], + ['_5fpush_5fstack',['_push_stack',['../classTemplate.html#aa6a087e0b7b887dd1c98c9e0ecbd3b29',1,'Template']]], + ['_5freplcb',['_replcb',['../classTemplate.html#ae791766c3d055f7f1ba5a5e60d647934',1,'Template']]], + ['_5freplcb_5fdebug',['_replcb_debug',['../classTemplate.html#a4b933954086d9e01a1804b0b1c6ee93e',1,'Template']]], + ['_5freplcb_5ffor',['_replcb_for',['../classTemplate.html#abf71098c80fd1f218a59452b3408309e',1,'Template']]], + ['_5freplcb_5fif',['_replcb_if',['../classTemplate.html#ae0836e7d5bd5afceb04f50fd635f1228',1,'Template']]], + ['_5freplcb_5finc',['_replcb_inc',['../classTemplate.html#a86e8fd27955ef10cadfd86f3fca70677',1,'Template']]], + ['_5freplcb_5fnode',['_replcb_node',['../classTemplate.html#aa6f9bd7a8f7512efcf90e8d376fe05ee',1,'Template']]], + ['_5fwell_5fknown_5finit',['_well_known_init',['../__well__known_8php.html#a6ebfa937a2024f0b5dab53f0ac90fed0',1,'_well_known.php']]] +]; diff --git a/doc/html/search/functions_61.html b/doc/html/search/functions_61.html new file mode 100644 index 000000000..d68c74892 --- /dev/null +++ b/doc/html/search/functions_61.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_61.js b/doc/html/search/functions_61.js new file mode 100644 index 000000000..078cb9c08 --- /dev/null +++ b/doc/html/search/functions_61.js @@ -0,0 +1,104 @@ +var searchData= +[ + ['abook_5fconnections',['abook_connections',['../Contact_8php.html#ae8803c330352cbf1e828eb7490edf47e',1,'Contact.php']]], + ['abook_5fself',['abook_self',['../Contact_8php.html#ad5b02c2a962ee55b1b7ca6c159d6e4c5',1,'Contact.php']]], + ['abook_5ftoggle_5fflag',['abook_toggle_flag',['../Contact_8php.html#a024919623a830e8703ac4f23496dd66c',1,'Contact.php']]], + ['absurl',['absurl',['../boot_8php.html#a081307d681d7d04f17b9ced2076e7c85',1,'boot.php']]], + ['account_5ftotal',['account_total',['../account_8php.html#a43e3042b2723d76915a030bac3c668b6',1,'account.php']]], + ['account_5fverify_5fpassword',['account_verify_password',['../auth_8php.html#a07bae0e623e2daa9ee2cd5a8aa294dee',1,'auth.php']]], + ['acknowledge_5fpermissions',['acknowledge_permissions',['../classProtoDriver.html#a1593f3abae050edbd9304f4f8bc4894a',1,'ProtoDriver\acknowledge_permissions()'],['../classZotDriver.html#a3cfdf443da4e5326e205855d7c0054f2',1,'ZotDriver\acknowledge_permissions()']]], + ['acl_5finit',['acl_init',['../acl_8php.html#ac6776dba871806ecdb5d1659bc2eb07a',1,'acl.php']]], + ['activity_5fsanitise',['activity_sanitise',['../items_8php.html#a36e656667193c83aa2cc03a024fc131b',1,'items.php']]], + ['add_5fchild',['add_child',['../classItem.html#a80dcd9d0f548c3ad550abe7e6981fb51',1,'Item']]], + ['add_5fchildren_5fto_5flist',['add_children_to_list',['../conversation_8php.html#ad3e1d4b15e7d6d026ee182edd58f692b',1,'conversation.php']]], + ['add_5ffcontact',['add_fcontact',['../include_2network_8php.html#a0bdc4b0bfc54797c249dc4eca25aeda4',1,'network.php']]], + ['add_5fthread',['add_thread',['../classConversation.html#a8335cdd43f1836e3c255638e61a09e16',1,'Conversation']]], + ['admin_5fcontent',['admin_content',['../admin_8php.html#afef415e4011607fbb665610441595015',1,'admin.php']]], + ['admin_5fpage_5fdbsync',['admin_page_dbsync',['../admin_8php.html#aaa6addf2dbc3f3fcf99244a56b41eade',1,'admin.php']]], + ['admin_5fpage_5flogs',['admin_page_logs',['../admin_8php.html#a1d1362698af14d209aa3a0fb655551dd',1,'admin.php']]], + ['admin_5fpage_5flogs_5fpost',['admin_page_logs_post',['../admin_8php.html#a233b7c8c31776b7020532003c6e44e1c',1,'admin.php']]], + ['admin_5fpage_5fplugins',['admin_page_plugins',['../admin_8php.html#a54128076986ba80c4a103de3fc3e19a8',1,'admin.php']]], + ['admin_5fpage_5fsite',['admin_page_site',['../admin_8php.html#ac0f3bd12431c056aad77bac9d09fa30e',1,'admin.php']]], + ['admin_5fpage_5fsite_5fpost',['admin_page_site_post',['../admin_8php.html#add865f4ae806ecbf716f423fc3e50e4f',1,'admin.php']]], + ['admin_5fpage_5fsummary',['admin_page_summary',['../admin_8php.html#ac6e95b920b5abd030cc522964987087a',1,'admin.php']]], + ['admin_5fpage_5fthemes',['admin_page_themes',['../admin_8php.html#af124619fdc278fe2bf14c45ddaa260fb',1,'admin.php']]], + ['admin_5fpage_5fusers',['admin_page_users',['../admin_8php.html#a62f10f90c47686c9c3c37c4c03a108d2',1,'admin.php']]], + ['admin_5fpage_5fusers_5fpost',['admin_page_users_post',['../admin_8php.html#a5a696706a3869800e65fb365214241b7',1,'admin.php']]], + ['admin_5fpost',['admin_post',['../admin_8php.html#acf51f5837a7427832144c2bf7308ada3',1,'admin.php']]], + ['advanced_5fprofile',['advanced_profile',['../profile__advanced_8php.html#aa870d2c1f558cfd52bef05bc124e8fa4',1,'profile_advanced.php']]], + ['aes256cbc_5fdecrypt',['AES256CBC_decrypt',['../crypto_8php.html#ac852ee41392d1358c3a54d54935e0bf9',1,'crypto.php']]], + ['aes256cbc_5fencrypt',['AES256CBC_encrypt',['../crypto_8php.html#a5c61821d205f95f127114159cbffa764',1,'crypto.php']]], + ['aes_5fencapsulate',['aes_encapsulate',['../crypto_8php.html#a2148d7aac7b30c720f7ebda7e9790286',1,'crypto.php']]], + ['aes_5funencapsulate',['aes_unencapsulate',['../crypto_8php.html#aca7c3a574bfb6c6ef1f2403a56823914',1,'crypto.php']]], + ['age',['age',['../datetime_8php.html#abc1652f96799cec6fce8797ba2ebc2df',1,'datetime.php']]], + ['all_5ffriends',['all_friends',['../socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586',1,'socgraph.php']]], + ['allfriends_5fcontent',['allfriends_content',['../allfriends_8php.html#aad992ddbb5f20e81c5cf2259718aec83',1,'allfriends.php']]], + ['allowed_5femail',['allowed_email',['../include_2network_8php.html#aba38458a2ff2d92d3536488dbb119694',1,'network.php']]], + ['allowed_5fpublic_5frecips',['allowed_public_recips',['../zot_8php.html#a703f528ade8382cf374e4119bd6f7859',1,'zot.php']]], + ['allowed_5furl',['allowed_url',['../include_2network_8php.html#aee35d9ad6b3f872bfb39ba3598936aa7',1,'network.php']]], + ['api_5faccount_5flogout',['api_account_logout',['../include_2api_8php.html#a2e94eab9d6c164bfef7a1b2ab87b339b',1,'api.php']]], + ['api_5faccount_5frate_5flimit_5fstatus',['api_account_rate_limit_status',['../include_2api_8php.html#ae8f5863e18d69421005c71441c9d99a5',1,'api.php']]], + ['api_5faccount_5fverify_5fcredentials',['api_account_verify_credentials',['../include_2api_8php.html#a864191bb876a515ed71b17e260ef35ad',1,'api.php']]], + ['api_5fapply_5ftemplate',['api_apply_template',['../include_2api_8php.html#a5990101034e7abf6404feba3cd273629',1,'api.php']]], + ['api_5fcall',['api_call',['../include_2api_8php.html#a176c448d79c211ad41c2bbe3124658f5',1,'api.php']]], + ['api_5fcontent',['api_content',['../mod_2api_8php.html#a33315b5bbf5418f6850b2038107b526d',1,'api.php']]], + ['api_5fdate',['api_date',['../include_2api_8php.html#aea2dda92a155f2843a0ca188d8dfdf25',1,'api.php']]], + ['api_5fdirect_5fmessages_5fall',['api_direct_messages_all',['../include_2api_8php.html#a970b02c06dea8b229aa3d5fff9cf4705',1,'api.php']]], + ['api_5fdirect_5fmessages_5fbox',['api_direct_messages_box',['../include_2api_8php.html#a7759ccddc8dff012ad168e511ffe5af5',1,'api.php']]], + ['api_5fdirect_5fmessages_5fconversation',['api_direct_messages_conversation',['../include_2api_8php.html#a9160288b7ac220635942d8dc209b78c3',1,'api.php']]], + ['api_5fdirect_5fmessages_5finbox',['api_direct_messages_inbox',['../include_2api_8php.html#ad2b0192f3006918bea895de8074bf8d2',1,'api.php']]], + ['api_5fdirect_5fmessages_5fnew',['api_direct_messages_new',['../include_2api_8php.html#a0991f72554f821255397d615e76f3203',1,'api.php']]], + ['api_5fdirect_5fmessages_5fsentbox',['api_direct_messages_sentbox',['../include_2api_8php.html#a58cf4c02ef435996f5c3bc4283d3968d',1,'api.php']]], + ['api_5fexport_5fbasic',['api_export_basic',['../include_2api_8php.html#adfc035ee6303c1d8ba5336a4ead2bd53',1,'api.php']]], + ['api_5ffavorites',['api_favorites',['../include_2api_8php.html#a2c71b1226ef1283b5370bd1c200fee5f',1,'api.php']]], + ['api_5fff_5fids',['api_ff_ids',['../include_2api_8php.html#a36344c80b8e9755da2f2dd3a0e28cce8',1,'api.php']]], + ['api_5ffollowers_5fids',['api_followers_ids',['../include_2api_8php.html#ab1ecb58954f722444bfe03233345cb1b',1,'api.php']]], + ['api_5fformat_5fas',['api_format_as',['../include_2api_8php.html#a18cab7c6391df5c421753463f5d2a879',1,'api.php']]], + ['api_5fformat_5fitems',['api_format_items',['../include_2api_8php.html#a4c6fb9fb5203aa60f4b3afd4521db8ea',1,'api.php']]], + ['api_5fformat_5fmessages',['api_format_messages',['../include_2api_8php.html#ae82608c317421f27446465aa6724733d',1,'api.php']]], + ['api_5ffriendica_5fversion',['api_friendica_version',['../include_2api_8php.html#a53b0680b682ae6078f2e1ed18cfb3f74',1,'api.php']]], + ['api_5ffriends_5fids',['api_friends_ids',['../include_2api_8php.html#acafd2899309a005fcb725289173dc7fe',1,'api.php']]], + ['api_5fget_5fuser',['api_get_user',['../include_2api_8php.html#aa40bae797bcd9ccacffdce5a3b5a1afa',1,'api.php']]], + ['api_5fhelp_5ftest',['api_help_test',['../include_2api_8php.html#ac5a64cc81d70ff3cf866093ea9721d23',1,'api.php']]], + ['api_5fitem_5fget_5fuser',['api_item_get_user',['../include_2api_8php.html#aa49741342ad8ba285737eea1209a37e1',1,'api.php']]], + ['api_5flogin',['api_login',['../include_2api_8php.html#afe534f826e4282b72d66e8cadca7bb73',1,'api.php']]], + ['api_5foauth_5faccess_5ftoken',['api_oauth_access_token',['../include_2api_8php.html#aff322705cc6084b329003fc8eab0aad0',1,'api.php']]], + ['api_5foauth_5frequest_5ftoken',['api_oauth_request_token',['../include_2api_8php.html#aa1bddb580510e70cc1a7b7381667f1a3',1,'api.php']]], + ['api_5fpost',['api_post',['../mod_2api_8php.html#a6fe77f05c07cb51048df0d557b4b9bd2',1,'api.php']]], + ['api_5fregister_5ffunc',['api_register_func',['../include_2api_8php.html#ac2c2b18c426d697d11a830bca146be8a',1,'api.php']]], + ['api_5frss_5fextra',['api_rss_extra',['../include_2api_8php.html#a6a04b48168ba1d9dd2de3081a630611f',1,'api.php']]], + ['api_5fstatus_5fshow',['api_status_show',['../include_2api_8php.html#a645397787618b5c548a31e8686e8cca4',1,'api.php']]], + ['api_5fstatuses_5fdestroy',['api_statuses_destroy',['../include_2api_8php.html#ad4c29f43418f6110f85a6b3998239ab4',1,'api.php']]], + ['api_5fstatuses_5ff',['api_statuses_f',['../include_2api_8php.html#aa0d6b29fff0344a8e67f3507a6d01410',1,'api.php']]], + ['api_5fstatuses_5ffollowers',['api_statuses_followers',['../include_2api_8php.html#a6951c690d87775eb37e569c66011988e',1,'api.php']]], + ['api_5fstatuses_5ffriends',['api_statuses_friends',['../include_2api_8php.html#ade742525b2e41c82b090799ef3c51d5e',1,'api.php']]], + ['api_5fstatuses_5fhome_5ftimeline',['api_statuses_home_timeline',['../include_2api_8php.html#a528d8070ee74ea800102936ce73cf366',1,'api.php']]], + ['api_5fstatuses_5fmediap',['api_statuses_mediap',['../include_2api_8php.html#a450d8732b7b608f7ac929aee61572b95',1,'api.php']]], + ['api_5fstatuses_5fmentions',['api_statuses_mentions',['../include_2api_8php.html#a8b25a186bd0893f51aa72a62f655735e',1,'api.php']]], + ['api_5fstatuses_5fpublic_5ftimeline',['api_statuses_public_timeline',['../include_2api_8php.html#ad24ce1bf20867add4c9211a8eaf93f22',1,'api.php']]], + ['api_5fstatuses_5frepeat',['api_statuses_repeat',['../include_2api_8php.html#ae0fa388479cace9c5a7a45b571ab42f8',1,'api.php']]], + ['api_5fstatuses_5fshow',['api_statuses_show',['../include_2api_8php.html#af6f1d89cdb0a0621025efbec1597bc63',1,'api.php']]], + ['api_5fstatuses_5fupdate',['api_statuses_update',['../include_2api_8php.html#ad4d1634df6b35126552324683caaffa2',1,'api.php']]], + ['api_5fstatuses_5fuser_5ftimeline',['api_statuses_user_timeline',['../include_2api_8php.html#a32f0dda848d0c11c727fe1c3e741c283',1,'api.php']]], + ['api_5fstatusnet_5fconfig',['api_statusnet_config',['../include_2api_8php.html#a623793229a7256dd31bcfd5ab90eef08',1,'api.php']]], + ['api_5fstatusnet_5fversion',['api_statusnet_version',['../include_2api_8php.html#a8969e8d9c683f12ba17dcd4b059e020d',1,'api.php']]], + ['api_5fuser',['api_user',['../include_2api_8php.html#afb99daa6b731bf497b81f2128084852c',1,'api.php']]], + ['api_5fusers_5fshow',['api_users_show',['../include_2api_8php.html#abe8e929e93f7ab134b1cb1fb30f19a76',1,'api.php']]], + ['appdirpath',['appdirpath',['../boot_8php.html#a75a90b0eadd0df510f7e63210733634d',1,'boot.php']]], + ['apps_5fcontent',['apps_content',['../apps_8php.html#a546016cb960d0b110ee8e489dfa6c27c',1,'apps.php']]], + ['argc',['argc',['../boot_8php.html#abc0a90a1a77f5b668aa7e4b57d1776a7',1,'boot.php']]], + ['argv',['argv',['../boot_8php.html#a768f00b7d66be0daf7ef4eea2e862006',1,'boot.php']]], + ['arr_5fadd_5fhashes',['arr_add_hashes',['../parse__url_8php.html#aa7dd8f961bea042d62726ed909e4a868',1,'parse_url.php']]], + ['array_5fsanitise',['array_sanitise',['../items_8php.html#abf7a1b73eb352d79acd36309b0dababd',1,'items.php']]], + ['array_5fxmlify',['array_xmlify',['../text_8php.html#acedb584f65114a33f389efb796172a91',1,'text.php']]], + ['atom_5fauthor',['atom_author',['../items_8php.html#adc8bda87ba08626f2a8cde7748d1bdae',1,'items.php']]], + ['atom_5fentry',['atom_entry',['../items_8php.html#a275108c050f7eb18bcbb5018e6b81cf6',1,'items.php']]], + ['attach_5fby_5fhash',['attach_by_hash',['../include_2attach_8php.html#a0d07c5b83d3d54e186f752e571847b36',1,'attach.php']]], + ['attach_5fby_5fhash_5fnodata',['attach_by_hash_nodata',['../include_2attach_8php.html#ad991208ce939387e2f93a3bce7d09932',1,'attach.php']]], + ['attach_5fcount_5ffiles',['attach_count_files',['../include_2attach_8php.html#a887d2d44a3ef18dcb6624e7fb58dc8e3',1,'attach.php']]], + ['attach_5finit',['attach_init',['../mod_2attach_8php.html#aa88eb5ad87aa1036a30e70339cc6c1b1',1,'attach.php']]], + ['attach_5flist_5ffiles',['attach_list_files',['../include_2attach_8php.html#a3634af95f11a023dd8e882c3c7a3600d',1,'attach.php']]], + ['attach_5fstore',['attach_store',['../include_2attach_8php.html#a84a8a64c4805e1525b42d4add464833f',1,'attach.php']]], + ['authenticate_5fsuccess',['authenticate_success',['../security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733',1,'security.php']]], + ['avatar_5fimg',['avatar_img',['../include_2network_8php.html#ab07ce9d75eae559865ed90aad2154bd7',1,'network.php']]] +]; diff --git a/doc/html/search/functions_62.html b/doc/html/search/functions_62.html new file mode 100644 index 000000000..5134d2d29 --- /dev/null +++ b/doc/html/search/functions_62.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_62.js b/doc/html/search/functions_62.js new file mode 100644 index 000000000..3d7feb1aa --- /dev/null +++ b/doc/html/search/functions_62.js @@ -0,0 +1,19 @@ +var searchData= +[ + ['base64url_5fdecode',['base64url_decode',['../text_8php.html#a13286f8a95d2de6b102966ecc270c8d6',1,'text.php']]], + ['base64url_5fencode',['base64url_encode',['../text_8php.html#a070384ec000fd65043fce11d5392d241',1,'text.php']]], + ['bb2diaspora',['bb2diaspora',['../bb2diaspora_8php.html#a4f10e0876b27373c762bc1abbe745f5c',1,'bb2diaspora.php']]], + ['bb_5fshareattributes',['bb_ShareAttributes',['../bbcode_8php.html#a52c45273fbb7ce5ec27094f7936856e1',1,'bbcode.php']]], + ['bb_5fshareattributessimple',['bb_ShareAttributesSimple',['../bbcode_8php.html#a2be26414a367118143cc89e2d58e7377',1,'bbcode.php']]], + ['bb_5fspacefy',['bb_spacefy',['../bbcode_8php.html#a8911e027907820df3db03b4f76724b50',1,'bbcode.php']]], + ['bb_5ftag_5fpreg_5freplace',['bb_tag_preg_replace',['../bb2diaspora_8php.html#ad0abe1a7ee50aa0736a233df0a422eba',1,'bb2diaspora.php']]], + ['bb_5ftranslate_5fvideo',['bb_translate_video',['../text_8php.html#a3d2793d66db3345fd290b71e2eadf98e',1,'text.php']]], + ['bb_5funspacefy_5fand_5ftrim',['bb_unspacefy_and_trim',['../bbcode_8php.html#a064dcfd9767df6f53be1a0e11ceeb15d',1,'bbcode.php']]], + ['bbcode',['bbcode',['../bbcode_8php.html#a009f61aaf78771737ed0765c8463911b',1,'bbcode.php']]], + ['bbtoevent',['bbtoevent',['../event_8php.html#a180cccd63c2a2f00ff432b03113531f3',1,'event.php']]], + ['bbtovcal',['bbtovcal',['../event_8php.html#a184d6b9690e5b6dee35a0aa9edd47279',1,'event.php']]], + ['best_5flink_5furl',['best_link_url',['../conversation_8php.html#a32e7750ae6adbfdd1f227f6e89221ce3',1,'conversation.php']]], + ['breaklines',['breaklines',['../html2plain_8php.html#a3214912e3d00cf0a948072daccf16740',1,'html2plain.php']]], + ['build_5fpagehead',['build_pagehead',['../classApp.html#a08f0537964d98958d218066364cff785',1,'App']]], + ['build_5fquerystring',['build_querystring',['../boot_8php.html#a9cbab4ee728e9a8b4ce952bae643044e',1,'boot.php']]] +]; diff --git a/doc/html/search/functions_63.html b/doc/html/search/functions_63.html new file mode 100644 index 000000000..9114d820c --- /dev/null +++ b/doc/html/search/functions_63.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_63.js b/doc/html/search/functions_63.js new file mode 100644 index 000000000..2ea1e3505 --- /dev/null +++ b/doc/html/search/functions_63.js @@ -0,0 +1,88 @@ +var searchData= +[ + ['cal',['cal',['../datetime_8php.html#aea356409ba69f9de412298c998595dd2',1,'datetime.php']]], + ['categories_5fwidget',['categories_widget',['../contact__widgets_8php.html#a165eb021e61c4dcab2a552f28628d353',1,'contact_widgets.php']]], + ['change_5fchannel',['change_channel',['../security_8php.html#a8d23d2597aae380a3341872fe9513380',1,'security.php']]], + ['change_5fpermissions',['change_permissions',['../classProtoDriver.html#a34b97ca5ef2165f2e16eb2fe59ff6c67',1,'ProtoDriver\change_permissions()'],['../classZotDriver.html#a6776935156accb0f170e2e24577133db',1,'ZotDriver\change_permissions()']]], + ['chanlink_5fcid',['chanlink_cid',['../text_8php.html#a85e3a4851c16674834010d8419a5d7ca',1,'text.php']]], + ['chanlink_5fhash',['chanlink_hash',['../text_8php.html#a8c5d610a901665dfe6cbb64d39bfaa2f',1,'text.php']]], + ['chanlink_5furl',['chanlink_url',['../text_8php.html#a2e8d6c402603be3a1256a16605e09c2a',1,'text.php']]], + ['channel_5faside',['channel_aside',['../channel_8php.html#aea8e189f2fbabfda779349dd94082e8e',1,'channel.php']]], + ['channel_5fcontent',['channel_content',['../channel_8php.html#a9c6a6179e0e626398ebecc6151905ef1',1,'channel.php']]], + ['channel_5finit',['channel_init',['../channel_8php.html#ac7c8c7845741baadf87fae6bc279f3dc',1,'channel.php']]], + ['channel_5fremove',['channel_remove',['../Contact_8php.html#ad46ff6764f12b6d3ab45c49b797f98aa',1,'Contact.php']]], + ['channelx_5fby_5fhash',['channelx_by_hash',['../Contact_8php.html#a483cda56f9e37c3a4a8773dcdfeb0258',1,'Contact.php']]], + ['channelx_5fby_5fn',['channelx_by_n',['../Contact_8php.html#a3a0844dac1e86d523de5d2f432cfeebc',1,'Contact.php']]], + ['channelx_5fby_5fnick',['channelx_by_nick',['../Contact_8php.html#a87e699f74a1102b25e8aa0432d86a91e',1,'Contact.php']]], + ['chanview_5fcontent',['chanview_content',['../chanview_8php.html#a4192c6da888c8c1165851acf9ad4cb8b',1,'chanview.php']]], + ['check_5faccount_5fadmin',['check_account_admin',['../account_8php.html#a917d74aad0baf3e0c4b51cf1051e654f',1,'account.php']]], + ['check_5faccount_5femail',['check_account_email',['../account_8php.html#ae052bd5558847bd38e89c213561a9771',1,'account.php']]], + ['check_5faccount_5finvite',['check_account_invite',['../account_8php.html#aaff7720423417a4333697894ffd9ddeb',1,'account.php']]], + ['check_5faccount_5fpassword',['check_account_password',['../account_8php.html#a144b4891022567668375b58ea61cfff0',1,'account.php']]], + ['check_5fadd',['check_add',['../setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1',1,'setup.php']]], + ['check_5fconfig',['check_config',['../boot_8php.html#a4c02d88e66852a01bd5a1feecb7c3ce3',1,'boot.php']]], + ['check_5fform_5fsecurity_5fstd_5ferr_5fmsg',['check_form_security_std_err_msg',['../security_8php.html#a20f8b9851f23ee8894b8925584ef6821',1,'security.php']]], + ['check_5fform_5fsecurity_5ftoken',['check_form_security_token',['../security_8php.html#a9c6180e82150a5a9af91a1255d096b5c',1,'security.php']]], + ['check_5fform_5fsecurity_5ftoken_5fforbiddenonerr',['check_form_security_token_ForbiddenOnErr',['../security_8php.html#a444ac867dfa8c37cf0a7a226412bee28',1,'security.php']]], + ['check_5fform_5fsecurity_5ftoken_5fredirectonerr',['check_form_security_token_redirectOnErr',['../security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433',1,'security.php']]], + ['check_5ffuncs',['check_funcs',['../setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e',1,'setup.php']]], + ['check_5fhtaccess',['check_htaccess',['../setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4',1,'setup.php']]], + ['check_5fhtconfig',['check_htconfig',['../setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f',1,'setup.php']]], + ['check_5fkeys',['check_keys',['../setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76',1,'setup.php']]], + ['check_5flist_5fpermissions',['check_list_permissions',['../permissions_8php.html#a0f5bd9f7f4c8fb7ba4b2c1ed048b4dc7',1,'permissions.php']]], + ['check_5fphp',['check_php',['../setup_8php.html#a14d208682a88632290c895d20da6e7d6',1,'setup.php']]], + ['check_5fsmarty3',['check_smarty3',['../setup_8php.html#afd8b0b3ade1507c45325caf377bf459d',1,'setup.php']]], + ['check_5fwall_5fto_5fwall',['check_wall_to_wall',['../classItem.html#abcdb0ea9bcd1576bc99bba9b8f700bb8',1,'Item']]], + ['check_5fwebbie',['check_webbie',['../text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3',1,'text.php']]], + ['clean_5furls',['clean_urls',['../boot_8php.html#ab79b8b4555cae20d03f8200666d89d63',1,'boot.php']]], + ['clear',['clear',['../classCache.html#ab14d0f4bdf7116a94d545c574b38f568',1,'Cache']]], + ['cleardiv',['cleardiv',['../text_8php.html#a8c59dbc3c93b2601c6bb22ddff163349',1,'text.php']]], + ['cli_5fstartup',['cli_startup',['../cli__startup_8php.html#adfdde63686e33ccd4851fa5edc4fc70b',1,'cli_startup.php']]], + ['collect',['collect',['../classProtoDriver.html#a2ba1758f0f9e3564580b6ff85292804d',1,'ProtoDriver\collect()'],['../classZotDriver.html#af65febb26031eb7f39871b9e2a539797',1,'ZotDriver\collect()']]], + ['collect_5fprivate',['collect_private',['../classProtoDriver.html#af66171aa7dab9b62cee915cb4f1abe1b',1,'ProtoDriver\collect_private()'],['../classZotDriver.html#a2e15ff09772f0608203dad1c98299394',1,'ZotDriver\collect_private()']]], + ['collect_5frecipients',['collect_recipients',['../items_8php.html#a01e3cf44e082fa9bd06dcde5bf713d70',1,'items.php']]], + ['collecturls',['collecturls',['../html2plain_8php.html#ae1c203d0f089d5678d73a6c64a395201',1,'html2plain.php']]], + ['common_5faside',['common_aside',['../common_8php.html#a3b12ec67b3d3edcf595c8d195da5d14a',1,'common.php']]], + ['common_5fcontent',['common_content',['../common_8php.html#ab63408f39abef7a6915186e8dabc5a96',1,'common.php']]], + ['common_5ffriends',['common_friends',['../socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918',1,'socgraph.php']]], + ['common_5ffriends_5fvisitor_5fwidget',['common_friends_visitor_widget',['../contact__widgets_8php.html#a552f8544528cec0c995cea7287ea9d65',1,'contact_widgets.php']]], + ['common_5ffriends_5fzcid',['common_friends_zcid',['../socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9',1,'socgraph.php']]], + ['common_5finit',['common_init',['../common_8php.html#aca62f113655809f41f49042ce9b123c2',1,'common.php']]], + ['community_5fcontent',['community_content',['../community_8php.html#a1197aafd6a6b540dbb4a0c04ade3a25a',1,'community.php']]], + ['community_5finit',['community_init',['../community_8php.html#a56c94ec978a38633c5628fa6f8e386d9',1,'community.php']]], + ['compare_5fpermissions',['compare_permissions',['../items_8php.html#a0790a4550b829e85504af548623002ca',1,'items.php']]], + ['completeurl',['completeurl',['../parse__url_8php.html#a496f4e3836154f6f32b8e805a7160d3a',1,'parse_url.php']]], + ['connections_5faside',['connections_aside',['../connections_8php.html#af48f7ad20914760ba9874c090384e35a',1,'connections.php']]], + ['connections_5fcontent',['connections_content',['../connections_8php.html#aec2e457420fce3e3bf6a9f48e36df25c',1,'connections.php']]], + ['connections_5finit',['connections_init',['../connections_8php.html#a1f23623f802af7bd35e95b0e94e5d558',1,'connections.php']]], + ['connections_5fpost',['connections_post',['../connections_8php.html#a1224058db8e3fb56463eb312f98e561d',1,'connections.php']]], + ['construct_5factivity_5fobject',['construct_activity_object',['../items_8php.html#aa9e99613d38a97b39c8cf5449699c2ee',1,'items.php']]], + ['construct_5factivity_5ftarget',['construct_activity_target',['../items_8php.html#aa579bc4445d60098b1410961ca8e96b7',1,'items.php']]], + ['construct_5fpage',['construct_page',['../boot_8php.html#acc4e0c910af066148b810e5fde55fff1',1,'boot.php']]], + ['construct_5fverb',['construct_verb',['../items_8php.html#a8f3c85c584ccd2b98c3ca440e45b40f8',1,'items.php']]], + ['consume_5ffeed',['consume_feed',['../items_8php.html#a8794863cdf8ce1333040933d3a3f66bd',1,'items.php']]], + ['contact_5fpoll_5finterval',['contact_poll_interval',['../contact__selectors_8php.html#a9839e8fdaac7ffb37bf1420493f5c28f',1,'contact_selectors.php']]], + ['contact_5fprofile_5fassign',['contact_profile_assign',['../contact__selectors_8php.html#aba7a4db18efa41d78bed1076b2d59886',1,'contact_selectors.php']]], + ['contact_5fremove',['contact_remove',['../Contact_8php.html#a28e062c884331dbb5dfa713228c25ad6',1,'Contact.php']]], + ['contact_5freputation',['contact_reputation',['../contact__selectors_8php.html#ae499960d6467bd30c78607b1018baf53',1,'contact_selectors.php']]], + ['contact_5fselect',['contact_select',['../acl__selectors_8php.html#a9476997d2968a5794f3723878ed89c91',1,'acl_selectors.php']]], + ['contactgroup_5fcontent',['contactgroup_content',['../contactgroup_8php.html#a18c7391b1b25debaf98c9dba639caab3',1,'contactgroup.php']]], + ['contacts_5fnot_5fgrouped',['contacts_not_grouped',['../Contact_8php.html#a228fc01f90ae9bfdde4c2ad0772bd7dc',1,'Contact.php']]], + ['conv_5fsort',['conv_sort',['../conversation_8php.html#abed85a41f1160598de880b84021c9cf7',1,'conversation.php']]], + ['convert',['convert',['../namespacefriendica-to-smarty-tpl.html#a38503e37fe68ac27c88cce91a9ac9efa',1,'friendica-to-smarty-tpl']]], + ['convert_5fxml_5felement_5fto_5farray',['convert_xml_element_to_array',['../include_2network_8php.html#ad4056d3ce69988f5c1a997a79f503246',1,'network.php']]], + ['count_5fall_5ffriends',['count_all_friends',['../socgraph_8php.html#af29d056beec10b4e38e5209c92452894',1,'socgraph.php']]], + ['count_5fcommon_5ffriends',['count_common_friends',['../socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84',1,'socgraph.php']]], + ['count_5fcommon_5ffriends_5fzcid',['count_common_friends_zcid',['../socgraph_8php.html#af175807406d94407a5e11742a3287746',1,'socgraph.php']]], + ['count_5fdescendants',['count_descendants',['../classItem.html#aca1e66988ed00cd627b2a359b72cd0ae',1,'Item\count_descendants()'],['../conversation_8php.html#ab2383dff4f823e580399ff469d90ab19',1,'count_descendants(): conversation.php']]], + ['create_5faccount',['create_account',['../account_8php.html#a141fe579c351c78209d425473f978eb5',1,'account.php']]], + ['create_5fidentity',['create_identity',['../identity_8php.html#a345f4c943d84de502ec6e72d2c813945',1,'identity.php']]], + ['crepair_5fcontent',['crepair_content',['../crepair_8php.html#a29464c01838e209c8059cfcd2d195caa',1,'crepair.php']]], + ['crepair_5finit',['crepair_init',['../crepair_8php.html#ab089978e50df156bbfabf9f8f5ccd198',1,'crepair.php']]], + ['crepair_5fpost',['crepair_post',['../crepair_8php.html#acc4493e1ffd1462a605dd9b870034513',1,'crepair.php']]], + ['cronhooks_5frun',['cronhooks_run',['../cronhooks_8php.html#a4c4c1bbec4ecc9a0efa00dd6afd2c0ca',1,'cronhooks.php']]], + ['cropimage',['cropImage',['../classPhoto.html#a4ace266825f6b2bbc3c7f990f5d92500',1,'Photo']]], + ['curpageurl',['curPageURL',['../boot_8php.html#aa4221641e5c21db69fa52c426b9017f5',1,'boot.php']]], + ['current_5ftheme',['current_theme',['../boot_8php.html#ad206598b909e8eb67eb0e0bb5ef69c13',1,'boot.php']]], + ['current_5ftheme_5furl',['current_theme_url',['../boot_8php.html#ab2878f40a7f3978476fcfb4c95b96806',1,'boot.php']]] +]; diff --git a/doc/html/search/functions_64.html b/doc/html/search/functions_64.html new file mode 100644 index 000000000..17149308a --- /dev/null +++ b/doc/html/search/functions_64.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_64.js b/doc/html/search/functions_64.js new file mode 100644 index 000000000..8096173ad --- /dev/null +++ b/doc/html/search/functions_64.js @@ -0,0 +1,42 @@ +var searchData= +[ + ['datesel',['datesel',['../datetime_8php.html#ac265b86f384ee094ed5479aae02aa5c8',1,'datetime.php']]], + ['datesel_5fformat',['datesel_format',['../datetime_8php.html#a5f29553799005b1fd4e9ce9d98ce05aa',1,'datetime.php']]], + ['datetime_5fconvert',['datetime_convert',['../datetime_8php.html#ad6301e74b0f9267d52f8d432b5beb226',1,'datetime.php']]], + ['dba_5ftimer',['dba_timer',['../boot_8php.html#a3e0930933fb2c0bf8211cc7ab4e1c3b4',1,'boot.php']]], + ['dbesc',['dbesc',['../dba_8php.html#ab222aa1dbf9ea93b320f82028739127e',1,'dba.php']]], + ['dbesc_5farray',['dbesc_array',['../dba_8php.html#a65b83462bd26968106aebd43f16540e4',1,'dba.php']]], + ['dbesc_5farray_5fcb',['dbesc_array_cb',['../dba_8php.html#af531546fac5f0836a8557a4f6dfee930',1,'dba.php']]], + ['dbg',['dbg',['../classdba.html#a2c6fecf396c66e07f00276fc18d31ca7',1,'dba\dbg()'],['../dba_8php.html#aa6607893d8f60ade9122bcfbd1a53ffb',1,'dbg(): dba.php']]], + ['dbq',['dbq',['../dba_8php.html#aa377074e70981e8c4e82ca0accd068ee',1,'dba.php']]], + ['decode_5ftags',['decode_tags',['../items_8php.html#a56b2a4abcadfac71175cd50555528cc3',1,'items.php']]], + ['del_5fconfig',['del_config',['../include_2config_8php.html#a549910227348003efc3c05c9105c42da',1,'config.php']]], + ['del_5fpconfig',['del_pconfig',['../include_2config_8php.html#a7ad2081c5f812ac4387fd76f3762d941',1,'config.php']]], + ['delegate_5fcontent',['delegate_content',['../delegate_8php.html#a943eea8996ef348eb845c498f9f354dd',1,'delegate.php']]], + ['delete_5fimported_5fitem',['delete_imported_item',['../zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72',1,'zot.php']]], + ['delete_5fitem_5flowlevel',['delete_item_lowlevel',['../items_8php.html#a2b56a4c01bd22a648d52ec9af1a04259',1,'items.php']]], + ['deletenode',['deletenode',['../html2bbcode_8php.html#a71a07f135d196ec5943b13f7b2e6a9b2',1,'html2bbcode.php']]], + ['deliver',['deliver',['../classProtoDriver.html#a85e9063f6d0c304410cd246f7900ea1b',1,'ProtoDriver\deliver()'],['../classZotDriver.html#a876e3e0e4cad83c0b58c8696b344be6f',1,'ZotDriver\deliver()']]], + ['deliver_5fprivate',['deliver_private',['../classProtoDriver.html#ae5b44739f84c10d00a9b65adf3785181',1,'ProtoDriver\deliver_private()'],['../classZotDriver.html#afaaf9941169fc966e43e25b25e6daea6',1,'ZotDriver\deliver_private()']]], + ['deliver_5frun',['deliver_run',['../deliver_8php.html#a397afcb9afecf0c1816b0951189dd346',1,'deliver.php']]], + ['dertopem',['DerToPem',['../crypto_8php.html#a630e1574554f34e7c38511585d9e71a2',1,'crypto.php']]], + ['dertorsa',['DerToRsa',['../crypto_8php.html#ae5af17db1cb5d7c91d486e1264079839',1,'crypto.php']]], + ['detect_5flanguage',['detect_language',['../language_8php.html#a2b07ec591277aaae57e4d03a12c929b7',1,'language.php']]], + ['dfrn_5fdeliver',['dfrn_deliver',['../items_8php.html#a8395d189a36abfa0dfff81a2b0e70669',1,'items.php']]], + ['diaspora2bb',['diaspora2bb',['../bb2diaspora_8php.html#a26c09c218413610e62e60754c579f6c6',1,'bb2diaspora.php']]], + ['diaspora_5fol',['diaspora_ol',['../bb2diaspora_8php.html#a8b96bd45884fa1c40b942939354197d4',1,'bb2diaspora.php']]], + ['diaspora_5ful',['diaspora_ul',['../bb2diaspora_8php.html#adc92ccda5f85ed27e64fcc17712c89cc',1,'bb2diaspora.php']]], + ['directory_5faside',['directory_aside',['../mod_2directory_8php.html#aa1d928543212871491706216742dd73c',1,'directory.php']]], + ['directory_5fcontent',['directory_content',['../mod_2directory_8php.html#aac79396570d759da2efac24fcedf5b44',1,'directory.php']]], + ['directory_5finit',['directory_init',['../mod_2directory_8php.html#a5ee59c213508b6b9787612a8219cb5bf',1,'directory.php']]], + ['directory_5frun',['directory_run',['../include_2directory_8php.html#aa75d3b0697ca1456aaabdb37a74aa0f0',1,'directory.php']]], + ['dirfind_5fcontent',['dirfind_content',['../dirfind_8php.html#af22b0283f928c4c32e62248a5ae67cee',1,'dirfind.php']]], + ['dirfind_5finit',['dirfind_init',['../dirfind_8php.html#ac689a812c84f161b3a0d42349f83981c',1,'dirfind.php']]], + ['dirsearch_5fcontent',['dirsearch_content',['../dirsearch_8php.html#aa1fb04e1de4f25b63349ac78f94ceb4c',1,'dirsearch.php']]], + ['dirsearch_5finit',['dirsearch_init',['../dirsearch_8php.html#a3e51964ae3f5ff147403407b65324752',1,'dirsearch.php']]], + ['discover',['discover',['../classProtoDriver.html#a64a3868cffe27d601d55f69a2ecc4337',1,'ProtoDriver\discover()'],['../classZotDriver.html#a40d328ff9f6b0a238afe286dddee1514',1,'ZotDriver\discover()']]], + ['display_5fcontent',['display_content',['../display_8php.html#a37137c98d47bf3306f4c2bb9f5b60de0',1,'display.php']]], + ['dob',['dob',['../datetime_8php.html#a3f2897db32e745fe2f3e70a6b46578f8',1,'datetime.php']]], + ['drop_5fitem',['drop_item',['../items_8php.html#afa1db13c2a8b73b5b17b97f17e5a19d1',1,'items.php']]], + ['drop_5fitems',['drop_items',['../items_8php.html#a668ece2c37f05cc3abe538eb0dabfe55',1,'items.php']]] +]; diff --git a/doc/html/search/functions_65.html b/doc/html/search/functions_65.html new file mode 100644 index 000000000..13260cf25 --- /dev/null +++ b/doc/html/search/functions_65.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_65.js b/doc/html/search/functions_65.js new file mode 100644 index 000000000..60330c9ec --- /dev/null +++ b/doc/html/search/functions_65.js @@ -0,0 +1,20 @@ +var searchData= +[ + ['editpost_5fcontent',['editpost_content',['../editpost_8php.html#a34011690864d122680c802e9e748ccfb',1,'editpost.php']]], + ['email_5fheader_5fencode',['email_header_encode',['../include_2network_8php.html#a540420ff3675a72cb781ef9a7e8c2cd9',1,'network.php']]], + ['email_5fsend',['email_send',['../include_2network_8php.html#a1ff07d9fad93b713b93da0ab77aab7f0',1,'network.php']]], + ['encode_5fitem',['encode_item',['../items_8php.html#a82955cc578f0fa600acec84475026194',1,'items.php']]], + ['encode_5fitem_5fflags',['encode_item_flags',['../items_8php.html#a5f690fc2484abec07840b4f9dd525bd9',1,'items.php']]], + ['encode_5fitem_5fterms',['encode_item_terms',['../items_8php.html#ac6673627d289ee4f547de0fe3b7acd0a',1,'items.php']]], + ['encode_5fitem_5fxchan',['encode_item_xchan',['../items_8php.html#a566c601726697e044e75284af7fb6f17',1,'items.php']]], + ['encode_5fmail',['encode_mail',['../items_8php.html#a2d840c74ed23d1b6c7daee05cf89dda7',1,'items.php']]], + ['encode_5frel_5flinks',['encode_rel_links',['../items_8php.html#aa723c0571e314a1853a24c5854b4f54f',1,'items.php']]], + ['enumerate_5fpermissions',['enumerate_permissions',['../items_8php.html#afbcf26dfcf8a83fff952aa858c1b7b67',1,'items.php']]], + ['escape',['escape',['../classdba.html#a522329687ff042074c1cbc8bd3226d2f',1,'dba']]], + ['ev_5fcompare',['ev_compare',['../event_8php.html#a32ba1b9ddf7a744a9a1512b052e5f850',1,'event.php']]], + ['event_5fstore',['event_store',['../event_8php.html#a89ef533faf345db8d64a58d4856bde3a',1,'event.php']]], + ['events_5fcontent',['events_content',['../events_8php.html#a1d293fb217ae6bc9e3858c4b32e363ec',1,'events.php']]], + ['events_5fpost',['events_post',['../events_8php.html#ab3e8a8f901175f8e40a8089eea45c075',1,'events.php']]], + ['expand_5fgroups',['expand_groups',['../include_2group_8php.html#a22a81875259c7d3d64d4848afea6b345',1,'group.php']]], + ['expire_5frun',['expire_run',['../expire_8php.html#a444e45c9b67727b27db4c779fd51a298',1,'expire.php']]] +]; diff --git a/doc/html/search/functions_66.html b/doc/html/search/functions_66.html new file mode 100644 index 000000000..12565e3b2 --- /dev/null +++ b/doc/html/search/functions_66.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_66.js b/doc/html/search/functions_66.js new file mode 100644 index 000000000..d264f7bd7 --- /dev/null +++ b/doc/html/search/functions_66.js @@ -0,0 +1,50 @@ +var searchData= +[ + ['fbrowser_5fcontent',['fbrowser_content',['../fbrowser_8php.html#aee476addcf7a3e0fe9454f7dfd5a56c4',1,'fbrowser.php']]], + ['fcontact_5fstore',['fcontact_store',['../fcontact_8php.html#a4ce1d8d444c938790e0d50e003d04a15',1,'fcontact.php']]], + ['feature_5fenabled',['feature_enabled',['../features_8php.html#a52b5bdfb61b256713efecf7a7b20b0c0',1,'features.php']]], + ['feed_5finit',['feed_init',['../feed_8php.html#af86137700b56f33d1d5f25c8dec22c04',1,'feed.php']]], + ['fetch_5flrdd_5ftemplate',['fetch_lrdd_template',['../include_2network_8php.html#a8d5a3afb51cc932032b5dcc159efaae0',1,'network.php']]], + ['fetch_5fpost_5ftags',['fetch_post_tags',['../items_8php.html#adf980098b6de9c3993bc3ff26a8dd6f9',1,'items.php']]], + ['fetch_5furl',['fetch_url',['../include_2network_8php.html#a37ddeb88a3fd1dee9e8339723f9edf9a',1,'network.php']]], + ['fetch_5fxrd_5flinks',['fetch_xrd_links',['../include_2network_8php.html#a850ed5307c6a18076f4b80addc99602d',1,'network.php']]], + ['ffinder_5fstore',['ffinder_store',['../fcontact_8php.html#a4512592814dc7883b57bf01ac33353f6',1,'fcontact.php']]], + ['field_5ftimezone',['field_timezone',['../datetime_8php.html#a03900dcf0f9e3c58793a031673a70326',1,'datetime.php']]], + ['file_5ftag_5fdecode',['file_tag_decode',['../text_8php.html#a08df5164926d2b31b8e9fcfe919de2b6',1,'text.php']]], + ['file_5ftag_5fencode',['file_tag_encode',['../text_8php.html#a3299482ac20e9d79453048dd52881d37',1,'text.php']]], + ['file_5ftag_5ffile_5fquery',['file_tag_file_query',['../text_8php.html#a163b5131f388080b0fc82398d3a32fe1',1,'text.php']]], + ['file_5ftag_5ffile_5fto_5flist',['file_tag_file_to_list',['../text_8php.html#a544fc13c1798371e5a5984b5482108f8',1,'text.php']]], + ['file_5ftag_5flist_5fto_5ffile',['file_tag_list_to_file',['../text_8php.html#abb55ec0142207aeec3d90b25ed4d7266',1,'text.php']]], + ['file_5ftag_5fsave_5ffile',['file_tag_save_file',['../text_8php.html#a30311fd46e05be0e2cc466118641a4ed',1,'text.php']]], + ['file_5ftag_5funsave_5ffile',['file_tag_unsave_file',['../text_8php.html#a48f6d04513d26270e10e9b7d153f7526',1,'text.php']]], + ['file_5ftag_5fupdate_5fpconfig',['file_tag_update_pconfig',['../text_8php.html#abbe4894b4e746e47e1f91c7df27f6e81',1,'text.php']]], + ['fileas_5fwidget',['fileas_widget',['../contact__widgets_8php.html#a1eda66319d170f60a8d07c7ece95533b',1,'contact_widgets.php']]], + ['filer_5fcontent',['filer_content',['../filer_8php.html#a5fd5d7e61b2f9c43cb5f110c89dc4274',1,'filer.php']]], + ['filerm_5fcontent',['filerm_content',['../filerm_8php.html#ae2eb28d2054fa2c37e38689882172208',1,'filerm.php']]], + ['find_5fthread_5fparent_5findex',['find_thread_parent_index',['../conversation_8php.html#ae59703b07ce2ddf627b4172ff26058b6',1,'conversation.php']]], + ['find_5fupstream_5fdirectory',['find_upstream_directory',['../dir__fns_8php.html#a8c15aa69da12f2d3476b9e93b82b337d',1,'dir_fns.php']]], + ['find_5fxchan_5fin_5farray',['find_xchan_in_array',['../text_8php.html#ace3c98538c63e09b70a363210b414112',1,'text.php']]], + ['findpeople_5fwidget',['findpeople_widget',['../contact__widgets_8php.html#a57e73ebcfd62bb5d8c7a7b9e663726d6',1,'contact_widgets.php']]], + ['first_5fpost_5fdate',['first_post_date',['../items_8php.html#a0cf98bb619f07dd18f602683a55a5f59',1,'items.php']]], + ['fix_5fattached_5ffile_5fpermissions',['fix_attached_file_permissions',['../item_8php.html#a3daae7944f737bd30412a0d042207c0f',1,'item.php']]], + ['fix_5fattached_5fphoto_5fpermissions',['fix_attached_photo_permissions',['../item_8php.html#a7b63a9d0cd02096e17dcf11f4afa7c10',1,'item.php']]], + ['fix_5fcontact_5fssl_5fpolicy',['fix_contact_ssl_policy',['../include_2network_8php.html#a2729d012410e470c527a62a3f777ded8',1,'network.php']]], + ['fix_5felement',['fix_element',['../namespacefriendica-to-smarty-tpl.html#a3719dd46e286a57d315e6adae1845854',1,'friendica-to-smarty-tpl']]], + ['fix_5fmce_5flf',['fix_mce_lf',['../text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28',1,'text.php']]], + ['fix_5fprivate_5fphotos',['fix_private_photos',['../items_8php.html#aba98fcbbcd7044a7e9ea34edabc14c87',1,'items.php']]], + ['fixacl',['fixacl',['../acl__selectors_8php.html#ad6664fb8330308e23f2645cd6624727e',1,'acl_selectors.php']]], + ['flip',['flip',['../classPhoto.html#a7acd95a0380f95999dd069fbb5629ea5',1,'Photo']]], + ['follow_5finit',['follow_init',['../mod_2follow_8php.html#a171f5b19f50d7738adc3b2e96ec6018a',1,'follow.php']]], + ['follow_5fwidget',['follow_widget',['../contact__widgets_8php.html#af24e693532a045954caab515942cfc6f',1,'contact_widgets.php']]], + ['format_5fcss_5fif_5fexists',['format_css_if_exists',['../plugin_8php.html#a9039e15aae27676af7777dcbee5a11d6',1,'plugin.php']]], + ['format_5fevent_5fbbcode',['format_event_bbcode',['../event_8php.html#abb74206cf42d694307c3d7abb7af9869',1,'event.php']]], + ['format_5fevent_5fdiaspora',['format_event_diaspora',['../bb2diaspora_8php.html#a29a2ad41f5826f3975fa9a49934ff863',1,'bb2diaspora.php']]], + ['format_5fevent_5fhtml',['format_event_html',['../event_8php.html#a2ac9f1b08de03250ecd794f705781d17',1,'event.php']]], + ['format_5fjs_5fif_5fexists',['format_js_if_exists',['../plugin_8php.html#ad9ff8ba554576383c5911a4bce068c1f',1,'plugin.php']]], + ['format_5flocation',['format_location',['../conversation_8php.html#a0891aaa4492cba2b51eda12fe01957f3',1,'conversation.php']]], + ['format_5fnotification',['format_notification',['../include_2notify_8php.html#a0e61728e487df50c72e6434f911a57d3',1,'notify.php']]], + ['format_5fterm_5ffor_5fdisplay',['format_term_for_display',['../text_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1',1,'text.php']]], + ['fsuggest_5fcontent',['fsuggest_content',['../fsuggest_8php.html#aa6c49ed4b50a387f1845f36844dd7998',1,'fsuggest.php']]], + ['fsuggest_5fpost',['fsuggest_post',['../fsuggest_8php.html#a61ecfe10ce937ed526614f8fd3de3c7d',1,'fsuggest.php']]], + ['ftosmarty',['fToSmarty',['../namespacefriendica-to-smarty-tpl.html#a89388ea9b2826e8218ed480e917d8105',1,'friendica-to-smarty-tpl']]] +]; diff --git a/doc/html/search/functions_67.html b/doc/html/search/functions_67.html new file mode 100644 index 000000000..53d4a096f --- /dev/null +++ b/doc/html/search/functions_67.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_67.js b/doc/html/search/functions_67.js new file mode 100644 index 000000000..5ba59f65d --- /dev/null +++ b/doc/html/search/functions_67.js @@ -0,0 +1,95 @@ +var searchData= +[ + ['gen_5ftoken',['gen_token',['../classFKOAuthDataStore.html#aa1a268be88ad3979bb4cc35bbb4dc819',1,'FKOAuthDataStore']]], + ['gender_5fselector',['gender_selector',['../profile__selectors_8php.html#ae2b2c087e6530c61c0b256fd26d52355',1,'profile_selectors.php']]], + ['generate_5fuser_5fguid',['generate_user_guid',['../text_8php.html#a149372f9167903c31d4cdb9e81ac0d19',1,'text.php']]], + ['get',['get',['../classCache.html#a70392b109331897bf9fdd7f1960e21de',1,'Cache']]], + ['get_5faccount',['get_account',['../classApp.html#a08bc87aff64f39fbc084e9d6545cee4d',1,'App']]], + ['get_5faccount_5fid',['get_account_id',['../boot_8php.html#afe88b920aa285982edb817a0dd44eb37',1,'boot.php']]], + ['get_5fall_5fperms',['get_all_perms',['../permissions_8php.html#aeca9b280f3dc3358c89976d81d690008',1,'permissions.php']]], + ['get_5fapp',['get_app',['../classBaseObject.html#ac43f10e69ce80c78e4870636250fc8a2',1,'BaseObject\get_app()'],['../boot_8php.html#a0e6db7e365f2b041a828b93786f694bc',1,'get_app(): boot.php']]], + ['get_5fapps',['get_apps',['../classApp.html#a5c63eabdc7fdd8b6e3348980ec16a3ad',1,'App']]], + ['get_5fatom_5felements',['get_atom_elements',['../items_8php.html#a896c1809d58f2d7a42cfe14577958ddf',1,'items.php']]], + ['get_5fbaseurl',['get_baseurl',['../classApp.html#a604d659d6977a99de42a160343e5289a',1,'App']]], + ['get_5fbb_5ftag_5fpos',['get_bb_tag_pos',['../bb2diaspora_8php.html#a4c2f8f11b29a06809d9b07782215b1b2',1,'bb2diaspora.php']]], + ['get_5fbest_5flanguage',['get_best_language',['../language_8php.html#afc07168c25fb662579a52923daa10ee1',1,'language.php']]], + ['get_5fbirthdays',['get_birthdays',['../boot_8php.html#ad2c97627a313d53df1a1c7b4215ddb51',1,'boot.php']]], + ['get_5fcapath',['get_capath',['../include_2network_8php.html#a78e89557b2fbd344ad790846d761b0c7',1,'network.php']]], + ['get_5fchannel',['get_channel',['../classApp.html#a084e03c77686d8c13390fef3f7428a2b',1,'App']]], + ['get_5fchild',['get_child',['../classItem.html#a632185dd25c5caf277067c76230a4320',1,'Item']]], + ['get_5fchildren',['get_children',['../classItem.html#aa0ee775ec94abccec6c798428835d001',1,'Item']]], + ['get_5fcomment_5fbox',['get_comment_box',['../classItem.html#a3ee7667c2ec6cd7657328e27848c0bdf',1,'Item']]], + ['get_5fcomment_5fbox_5ftemplate',['get_comment_box_template',['../classItem.html#a904421c7a427411bb2ab473bca872f63',1,'Item']]], + ['get_5fconfig',['get_config',['../include_2config_8php.html#a5d19130818ea4c6b8726ab62cd989c15',1,'config.php']]], + ['get_5fconversation',['get_conversation',['../classItem.html#a0c301aaed2b7d682728d18db3a22afa3',1,'Item']]], + ['get_5fcurl_5fcode',['get_curl_code',['../classApp.html#ab410451f132910773d0a02e35d0dced9',1,'App']]], + ['get_5fcurl_5fheaders',['get_curl_headers',['../classApp.html#abaf2173711e861ae4aebf43a7f70157e',1,'App']]], + ['get_5fdata',['get_data',['../classItem.html#ad3638f93065693c1f69eb349feb1b7aa',1,'Item']]], + ['get_5fdata_5fvalue',['get_data_value',['../classItem.html#ac6f1c96cc82a0dfb7e881fc70309ea3c',1,'Item']]], + ['get_5fdb_5ferrno',['get_db_errno',['../setup_8php.html#a8652788e8589778c5f81634a9d5b9429',1,'setup.php']]], + ['get_5fdim',['get_dim',['../datetime_8php.html#a7df24d72ea05922d3127363e2295174c',1,'datetime.php']]], + ['get_5fevents',['get_events',['../boot_8php.html#ae381db3d43f8e7c1da8b15d14ecf5312',1,'boot.php']]], + ['get_5ffeatures',['get_features',['../features_8php.html#ae73c5b03b01c7284ed7e7e0e774e975c',1,'features.php']]], + ['get_5ffeed_5ffor',['get_feed_for',['../items_8php.html#a59abb61d7581dc6592257ef022cbfada',1,'items.php']]], + ['get_5ffirst_5fdim',['get_first_dim',['../datetime_8php.html#aba971b67f17fecf050813f1eba72367f',1,'datetime.php']]], + ['get_5fform_5fsecurity_5ftoken',['get_form_security_token',['../security_8php.html#acd06ef411116115c2f0a92633700db8a',1,'security.php']]], + ['get_5fformatsmap',['get_FormatsMap',['../classPhoto.html#a1f00f0e1b6d90c5d83d8d3febb703075',1,'Photo']]], + ['get_5fgroups',['get_groups',['../classApp.html#a4659785d13e4bac0bed50dbb1b0d4299',1,'App']]], + ['get_5fhostname',['get_hostname',['../classApp.html#a622eace13f8fc9f4b5672a68e2bc4396',1,'App']]], + ['get_5fid',['get_id',['../classItem.html#ac0f27e58532612f6e7a54c8a621b9b92',1,'Item']]], + ['get_5fitem_5fchildren',['get_item_children',['../conversation_8php.html#a7f6ef0dfa554bacf620e84c18d386e67',1,'conversation.php']]], + ['get_5fitem_5fcontact',['get_item_contact',['../items_8php.html#aab9c6bae4c40799867596bdaae9829fd',1,'items.php']]], + ['get_5fitem_5felements',['get_item_elements',['../items_8php.html#a536d0313b6ffe33b9d2490c4e25c5361',1,'items.php']]], + ['get_5fmail_5felements',['get_mail_elements',['../items_8php.html#a94ddb1d6c8fa21dd7433677e85168037',1,'items.php']]], + ['get_5fmax_5fimport_5fsize',['get_max_import_size',['../boot_8php.html#a97769915c9f14adc4f8ab1ea2cecfd90',1,'boot.php']]], + ['get_5fmode',['get_mode',['../classConversation.html#a87a0d704d5f2b1a008cc2e9ce06a1bcd',1,'Conversation']]], + ['get_5fmood_5fverbs',['get_mood_verbs',['../text_8php.html#a736db13a966b8abaf8c9198faa35911a',1,'text.php']]], + ['get_5fmy_5faddress',['get_my_address',['../boot_8php.html#a490972c02fdb638c52ec0e012a30bfd2',1,'boot.php']]], + ['get_5fmy_5furl',['get_my_url',['../boot_8php.html#aa46321e1cd6a3b8dfde8bf9510112fec',1,'boot.php']]], + ['get_5fobserver',['get_observer',['../classApp.html#a1ad3bb1b68439b3b7cbe630918e618d2',1,'App']]], + ['get_5fobserver_5fhash',['get_observer_hash',['../boot_8php.html#a623e49c79943f3e7bdb770d021683cf7',1,'boot.php']]], + ['get_5fowner_5fname',['get_owner_name',['../classItem.html#a67892aa23d19f4431bb2e5f43c74000e',1,'Item']]], + ['get_5fowner_5fphoto',['get_owner_photo',['../classItem.html#aa541bc4290e51bfd688d6921bebabc73',1,'Item']]], + ['get_5fowner_5furl',['get_owner_url',['../classItem.html#a9f2d219da712390f59012fc32a342074',1,'Item']]], + ['get_5fparent',['get_parent',['../classItem.html#a4b92e3a9d6212c553aa2661489bd95d8',1,'Item']]], + ['get_5fpath',['get_path',['../classApp.html#a5293a8543ba338dcf38cd4ff3bc5d4be',1,'App']]], + ['get_5fpconfig',['get_pconfig',['../include_2config_8php.html#ad58a4913937179adb13201c2ee3261ad',1,'config.php']]], + ['get_5fperms',['get_perms',['../classApp.html#adb5a4bb657881e553978ff390babd01f',1,'App\get_perms()'],['../permissions_8php.html#a040fd3d3b8517658b1668ae0cd093972',1,'get_perms(): permissions.php']]], + ['get_5fpoke_5fverbs',['get_poke_verbs',['../text_8php.html#a75fbba83ab521c145e262646c3128da5',1,'text.php']]], + ['get_5fprofile_5felements',['get_profile_elements',['../items_8php.html#a251343637ff40a50cca93452cd530c26',1,'items.php']]], + ['get_5fprofile_5fowner',['get_profile_owner',['../classConversation.html#a5effe8ad3007e01333df44b81432b813',1,'Conversation']]], + ['get_5fpublic_5ffeed',['get_public_feed',['../items_8php.html#a079e099e15d88d47aeb6ca6d60da7107',1,'items.php']]], + ['get_5fredirect_5furl',['get_redirect_url',['../classItem.html#a428f448f89a8629055ea3294eb942aea',1,'Item']]], + ['get_5frel_5flink',['get_rel_link',['../text_8php.html#a3972701c5c83624ec4e2d06242f614e7',1,'text.php']]], + ['get_5ftemplate',['get_template',['../classItem.html#aba23a0a9d89e316d2b343cc46d695d91',1,'Item']]], + ['get_5ftemplate_5fdata',['get_template_data',['../classConversation.html#a2a96b7a6573ae53db861624659e831cb',1,'Conversation\get_template_data()'],['../classItem.html#ad5dcbe0b94cb2d5719bc5b6bd8ad60c8',1,'Item\get_template_data()']]], + ['get_5ftemplate_5fengine',['get_template_engine',['../classApp.html#acb27e607fe4c82603444676e25c36b70',1,'App']]], + ['get_5ftemplate_5fldelim',['get_template_ldelim',['../classApp.html#ad2eff1f9335d607846e39e8c63b88b51',1,'App']]], + ['get_5ftemplate_5frdelim',['get_template_rdelim',['../classApp.html#a9e1856f714ac5755798fd7a2fa035e42',1,'App']]], + ['get_5fterms_5foftype',['get_terms_oftype',['../text_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1',1,'text.php']]], + ['get_5ftheme_5fconfig_5ffile',['get_theme_config_file',['../settings_8php.html#a39abc76ff5459c57e3b957664f273f18',1,'settings.php']]], + ['get_5ftheme_5fscreenshot',['get_theme_screenshot',['../plugin_8php.html#a888a4c565cf06eb86ffc67131e5f19e0',1,'plugin.php']]], + ['get_5fthread',['get_thread',['../classConversation.html#a4cff75d8c46b517e7133e4d0da6fc1c8',1,'Conversation']]], + ['get_5fwidgets',['get_widgets',['../classApp.html#a871898becd0697d778f36d9336253ae8',1,'App']]], + ['getdb',['getdb',['../classdba.html#a066ce6eab1282c9220ac4652ac2dbd27',1,'dba']]], + ['getext',['getExt',['../classPhoto.html#ade61db6eb69c065e4df66feaa1942d29',1,'Photo']]], + ['getheight',['getHeight',['../classPhoto.html#ab83e29500828ead47ac0a8cb9439082c',1,'Photo']]], + ['getimage',['getImage',['../classPhoto.html#a29213571e2688f17240cd2b3892d7a62',1,'Photo']]], + ['gettype',['getType',['../classPhoto.html#ad17537abe440ac133c3b2d951f92677b',1,'Photo']]], + ['getwidth',['getWidth',['../classPhoto.html#a74a04f56215cee00533b85b24daecfb1',1,'Photo']]], + ['goaway',['goaway',['../boot_8php.html#a5ab6181607a090bcdbaa13b15b85aba1',1,'boot.php']]], + ['gprobe_5frun',['gprobe_run',['../gprobe_8php.html#adf72cb0a70b5b9d99fdec1cc60e18ed1',1,'gprobe.php']]], + ['group_5fadd',['group_add',['../include_2group_8php.html#a0a515d42ec78aa0066aac4c278ead5b0',1,'group.php']]], + ['group_5fadd_5fmember',['group_add_member',['../include_2group_8php.html#a0122ef312df2c5546b1a46b3e6c7b31b',1,'group.php']]], + ['group_5faside',['group_aside',['../mod_2group_8php.html#aeb0784dd928e53e6d8693513bec8928c',1,'group.php']]], + ['group_5fbyname',['group_byname',['../include_2group_8php.html#abd66a5ea34a07a3422dc2dde6c7b3ecb',1,'group.php']]], + ['group_5fcontent',['group_content',['../mod_2group_8php.html#a07a64f6c65b0080d8190b3d9728a7a83',1,'group.php']]], + ['group_5fget_5fmembers',['group_get_members',['../include_2group_8php.html#a5bd191d9692e6c34d48c0ede10810f09',1,'group.php']]], + ['group_5fpost',['group_post',['../mod_2group_8php.html#aed1f009b1221348021bb34761160ef35',1,'group.php']]], + ['group_5frmv',['group_rmv',['../include_2group_8php.html#a4118f498bbd1530c1d0136d016d197a5',1,'group.php']]], + ['group_5frmv_5fmember',['group_rmv_member',['../include_2group_8php.html#a540e3ef36f47d47532646be4241f6518',1,'group.php']]], + ['group_5fselect',['group_select',['../acl__selectors_8php.html#aa1e3bc344ca2b29f97eb9860216d21a0',1,'acl_selectors.php']]], + ['group_5fside',['group_side',['../include_2group_8php.html#a1042d74055bafe54a6a30103d87a7f17',1,'group.php']]], + ['groups_5fcontaining',['groups_containing',['../include_2group_8php.html#afb802ae2ce73aae4bc36d157f7b6a92f',1,'group.php']]], + ['guess_5fimage_5ftype',['guess_image_type',['../Photo_8php.html#a7273b82b017fd96d29b2c57bab03aea6',1,'Photo.php']]] +]; diff --git a/doc/html/search/functions_68.html b/doc/html/search/functions_68.html new file mode 100644 index 000000000..77d37fe1a --- /dev/null +++ b/doc/html/search/functions_68.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_68.js b/doc/html/search/functions_68.js new file mode 100644 index 000000000..6ac2c8dc9 --- /dev/null +++ b/doc/html/search/functions_68.js @@ -0,0 +1,18 @@ +var searchData= +[ + ['handle_5ftag',['handle_tag',['../item_8php.html#abd0e603a6696051af16476eb968d52e7',1,'item.php']]], + ['has_5fpermissions',['has_permissions',['../items_8php.html#a77051724d1784074ff187e73a4db93fe',1,'items.php']]], + ['hcard_5faside',['hcard_aside',['../hcard_8php.html#a956c7cae2009652a37900306e5b7b73d',1,'hcard.php']]], + ['hcard_5finit',['hcard_init',['../hcard_8php.html#ac34f26b0e6a37eef44fa49bea135136d',1,'hcard.php']]], + ['head_5fadd_5fcss',['head_add_css',['../plugin_8php.html#a23c4fccf1eb5fcd63b24783ba1f05f7a',1,'plugin.php']]], + ['head_5fadd_5fjs',['head_add_js',['../plugin_8php.html#a516591850f4fd49fd1425cfa54089db8',1,'plugin.php']]], + ['head_5fget_5fcss',['head_get_css',['../plugin_8php.html#af92789f559b89a380e49d303218aeeca',1,'plugin.php']]], + ['head_5fget_5fjs',['head_get_js',['../plugin_8php.html#a65ab52cb1a7030d5190e247211bef2a1',1,'plugin.php']]], + ['help',['help',['../namespacefriendica-to-smarty-tpl.html#af6b2c793958aae2aadc294577431f749',1,'friendica-to-smarty-tpl.help()'],['../namespaceupdatetpl.html#ac9d11279fed403a329a719298feafc4f',1,'updatetpl.help()']]], + ['help_5fcontent',['help_content',['../help_8php.html#af055e15f600ffa6fbca9386fdf715224',1,'help.php']]], + ['hostxrd_5finit',['hostxrd_init',['../hostxrd_8php.html#aa37ffc8e7900bc76c4828bd25916db92',1,'hostxrd.php']]], + ['html2bb_5fvideo',['html2bb_video',['../text_8php.html#a138a3a611fa7f4f3630674145fc826bf',1,'text.php']]], + ['html2bbcode',['html2bbcode',['../html2bbcode_8php.html#a5ad726995ac4070213abdb3bd09f4837',1,'html2bbcode.php']]], + ['html2plain',['html2plain',['../html2plain_8php.html#ab3e121fa9f3feb16f9f942e705bc6c04',1,'html2plain.php']]], + ['http_5fstatus_5fexit',['http_status_exit',['../include_2network_8php.html#abed1d466435a12b6a4dd7aa4a05e5ba9',1,'network.php']]] +]; diff --git a/doc/html/search/functions_69.html b/doc/html/search/functions_69.html new file mode 100644 index 000000000..9edd1a1c1 --- /dev/null +++ b/doc/html/search/functions_69.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_69.js b/doc/html/search/functions_69.js new file mode 100644 index 000000000..d8b960a95 --- /dev/null +++ b/doc/html/search/functions_69.js @@ -0,0 +1,42 @@ +var searchData= +[ + ['identity_5fbasic_5fexport',['identity_basic_export',['../identity_8php.html#a3570a4eb77332b292d394c4132cb8f03',1,'identity.php']]], + ['identity_5fbasic_5fimport',['identity_basic_import',['../identity_8php.html#a77ee7d66eb0758f7e7882f70ad0f9485',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']]], + ['imagestring',['imageString',['../classPhoto.html#a7c4be19101d5a289a491428c2f8d747c',1,'Photo']]], + ['import_5fauthor_5fxchan',['import_author_xchan',['../items_8php.html#ae73794179b62d39bb597ff670ab1c1e5',1,'items.php']]], + ['import_5fchannel_5fphoto',['import_channel_photo',['../Photo_8php.html#a1d0bc7161dec0d177b7d3bbe4421af9a',1,'Photo.php']]], + ['import_5fcontent',['import_content',['../import_8php.html#afdf25ed70096d5dbf4f6d0ca79fea184',1,'import.php']]], + ['import_5fdirectory_5fkeywords',['import_directory_keywords',['../zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a',1,'zot.php']]], + ['import_5fdirectory_5fprofile',['import_directory_profile',['../zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32',1,'zot.php']]], + ['import_5fpost',['import_post',['../import_8php.html#af17fef0410518f7eac205d0ea416eaa2',1,'import.php']]], + ['import_5fprofile_5fphoto',['import_profile_photo',['../Photo_8php.html#a102f3f26f67e0e38f4322a771951c1ca',1,'Photo.php']]], + ['import_5fxchan',['import_xchan',['../zot_8php.html#ab0227978011d8601494a7651fa26acf0',1,'zot.php']]], + ['info',['info',['../boot_8php.html#adfb2fc7be5a4226c0a8e24131da9d498',1,'boot.php']]], + ['intro_5faside',['intro_aside',['../intro_8php.html#abc3abf25da64f98f215126eb08c7936b',1,'intro.php']]], + ['intro_5fcontent',['intro_content',['../intro_8php.html#a3e2a523697633ddb4517b9266a515f5b',1,'intro.php']]], + ['intro_5fpost',['intro_post',['../intro_8php.html#af3681062183ccbdf065ae2647b07d6f1',1,'intro.php']]], + ['invite_5fcontent',['invite_content',['../invite_8php.html#a244385b28cfd021d308715f01158bfd9',1,'invite.php']]], + ['invite_5fpost',['invite_post',['../invite_8php.html#aeb0881c0f93c8e8552e5ed756ce6e5a5',1,'invite.php']]], + ['is_5fa_5fdate_5farg',['is_a_date_arg',['../text_8php.html#a1557112a774ec00fa06ed6b6f6495506',1,'text.php']]], + ['is_5fajax',['is_ajax',['../boot_8php.html#ac17fc8a416ea79e9d5cb4dc9a8ff8c5c',1,'boot.php']]], + ['is_5fcommentable',['is_commentable',['../classItem.html#ac04525a8be24c12b0a2ae4ca1ba4b967',1,'Item']]], + ['is_5fimagick',['is_imagick',['../classPhoto.html#abad44c9fc7a1853920555398bf905433',1,'Photo']]], + ['is_5fpreview',['is_preview',['../classConversation.html#adf25ce023b69a166c63c6e84e02c136a',1,'Conversation']]], + ['is_5fsite_5fadmin',['is_site_admin',['../boot_8php.html#aa1e828bbbcba170265eb2668d8daf42e',1,'boot.php']]], + ['is_5fthreaded',['is_threaded',['../classItem.html#a5b2fafdca55aefeaa08993a5a60529f0',1,'Item']]], + ['is_5ftoplevel',['is_toplevel',['../classItem.html#aa49e40f961dff66da32c5ae110e32993',1,'Item']]], + ['is_5fvalid',['is_valid',['../classPhoto.html#a66705cd7db1f8dce59ceac57dbf14476',1,'Photo']]], + ['is_5fvisiting',['is_visiting',['../classItem.html#a97c7feeea7f26a73176cb19faa455e12',1,'Item']]], + ['is_5fwall_5fto_5fwall',['is_wall_to_wall',['../classItem.html#aabf87ded59c25b5fe2b2296678e70509',1,'Item']]], + ['is_5fwritable',['is_writable',['../classConversation.html#a5879199008b96bee7550b576d614e1c1',1,'Conversation\is_writable()'],['../classItem.html#a99253fb1ca6f430a0b181689ef206861',1,'Item\is_writable()']]], + ['item_5fcontent',['item_content',['../item_8php.html#a764bbb2e9a885a86fb23d0b5e4a09221',1,'item.php']]], + ['item_5fexpire',['item_expire',['../items_8php.html#a6f7e1334af5d684a987fa6a3eb37f4cc',1,'items.php']]], + ['item_5fgetfeedattach',['item_getfeedattach',['../items_8php.html#a09d425596b9f8663472cf7474ad36d96',1,'items.php']]], + ['item_5fgetfeedtags',['item_getfeedtags',['../items_8php.html#a649dc3e53ed794d0ead4b5d037f8d8d7',1,'items.php']]], + ['item_5fpermissions_5fsql',['item_permissions_sql',['../security_8php.html#a9355488460ab11d6058656ff919e5cf9',1,'security.php']]], + ['item_5fpost',['item_post',['../item_8php.html#a693cd09805755ab85bbb5ecae69a48c3',1,'item.php']]], + ['item_5fpost_5ftype',['item_post_type',['../text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e',1,'text.php']]], + ['item_5fstore',['item_store',['../items_8php.html#a8ef003b2bc2dc4816bdcf5800aec1049',1,'items.php']]] +]; diff --git a/doc/html/search/functions_6a.html b/doc/html/search/functions_6a.html new file mode 100644 index 000000000..948495f1b --- /dev/null +++ b/doc/html/search/functions_6a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_6a.js b/doc/html/search/functions_6a.js new file mode 100644 index 000000000..20409f3df --- /dev/null +++ b/doc/html/search/functions_6a.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['jindent',['jindent',['../text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8',1,'text.php']]], + ['json_5freturn_5fand_5fdie',['json_return_and_die',['../include_2network_8php.html#a4c5d50079e089168d9248427018fffd4',1,'network.php']]] +]; diff --git a/doc/html/search/functions_6b.html b/doc/html/search/functions_6b.html new file mode 100644 index 000000000..a0d07a92d --- /dev/null +++ b/doc/html/search/functions_6b.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_6b.js b/doc/html/search/functions_6b.js new file mode 100644 index 000000000..d29bcec09 --- /dev/null +++ b/doc/html/search/functions_6b.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['killme',['killme',['../boot_8php.html#aea7fc57a4d8e9dcb42f2601b0b9b761c',1,'boot.php']]] +]; diff --git a/doc/html/search/functions_6c.html b/doc/html/search/functions_6c.html new file mode 100644 index 000000000..33c0d6dd1 --- /dev/null +++ b/doc/html/search/functions_6c.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_6c.js b/doc/html/search/functions_6c.js new file mode 100644 index 000000000..a510c05d8 --- /dev/null +++ b/doc/html/search/functions_6c.js @@ -0,0 +1,25 @@ +var searchData= +[ + ['legal_5fwebbie',['legal_webbie',['../text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728',1,'text.php']]], + ['like_5fcontent',['like_content',['../like_8php.html#a9d7dd268f21c21e9d29dd2aca2dd9538',1,'like.php']]], + ['load_5fconfig',['load_config',['../include_2config_8php.html#a27559f388c9b9af81c94e48d6889d1d1',1,'config.php']]], + ['load_5fcontact_5flinks',['load_contact_links',['../boot_8php.html#a719c7f3972d5f9268f37a41c76cd4ef6',1,'boot.php']]], + ['load_5fdatabase',['load_database',['../setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a',1,'setup.php']]], + ['load_5fdatabase_5frem',['load_database_rem',['../setup_8php.html#a2b375ddc555140236fc500135de99371',1,'setup.php']]], + ['load_5fpconfig',['load_pconfig',['../include_2config_8php.html#ab012f852866a0aff9b5180daffa454f5',1,'config.php']]], + ['local_5fdelivery',['local_delivery',['../items_8php.html#ae1c27d1a6379231ac7c0435c8a791d45',1,'items.php']]], + ['local_5fuser',['local_user',['../boot_8php.html#ad4c9dc2c8a82e8f52b7404c1655eab44',1,'boot.php']]], + ['localize_5fitem',['localize_item',['../conversation_8php.html#afea815dd1768e8417d2b30be53e9e0b4',1,'conversation.php']]], + ['lockview_5fcontent',['lockview_content',['../lockview_8php.html#a851e26ab9a1008df5c5ebebea31e9b44',1,'lockview.php']]], + ['login',['login',['../boot_8php.html#aefecf8599036df7f1b95d6820e0e2fa4',1,'boot.php']]], + ['login_5fcontent',['login_content',['../login_8php.html#a1d69ca88eb9005a7026e128b9a645904',1,'login.php']]], + ['loginuser',['loginUser',['../classFKOAuth1.html#a2b1dac2ed31fc6ef84668afdda8b263f',1,'FKOAuth1']]], + ['lookup_5fconsumer',['lookup_consumer',['../classFKOAuthDataStore.html#a1148d47b546350bf440bdd92792c5df1',1,'FKOAuthDataStore']]], + ['lookup_5fnonce',['lookup_nonce',['../classFKOAuthDataStore.html#a4edfe2e77ecd2e16ff6b5eb516ed3599',1,'FKOAuthDataStore']]], + ['lookup_5ftoken',['lookup_token',['../classFKOAuthDataStore.html#a96f76387c3a93b0abe27a98013804bab',1,'FKOAuthDataStore']]], + ['lose_5ffollower',['lose_follower',['../items_8php.html#ade53043e7bc5ab9cc9ef1e4fed6569d4',1,'items.php']]], + ['lose_5fsharer',['lose_sharer',['../items_8php.html#a3a218d5e8ffbe261f773225ecded86a2',1,'items.php']]], + ['lostpass_5fcontent',['lostpass_content',['../lostpass_8php.html#a0314d94e48c789b1b3a201d740c9eab3',1,'lostpass.php']]], + ['lostpass_5fpost',['lostpass_post',['../lostpass_8php.html#a8ed35ba71a4404eaf4903da61d0321cc',1,'lostpass.php']]], + ['lrdd',['lrdd',['../include_2network_8php.html#adbc7fe45cc7fd9cd78f6b2f425ee9041',1,'network.php']]] +]; diff --git a/doc/html/search/functions_6d.html b/doc/html/search/functions_6d.html new file mode 100644 index 000000000..73fecffde --- /dev/null +++ b/doc/html/search/functions_6d.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_6d.js b/doc/html/search/functions_6d.js new file mode 100644 index 000000000..46d0554de --- /dev/null +++ b/doc/html/search/functions_6d.js @@ -0,0 +1,22 @@ +var searchData= +[ + ['magic_5finit',['magic_init',['../magic_8php.html#acea2cc792849ca2d71d4b689f66518bf',1,'magic.php']]], + ['magic_5flink',['magic_link',['../text_8php.html#a1e510c53624933ce9b7d6715784894db',1,'text.php']]], + ['magiclink_5furl',['magiclink_url',['../text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6',1,'text.php']]], + ['mail_5fstore',['mail_store',['../items_8php.html#a77da7ce9a117601d49ac4a67c71b514f',1,'items.php']]], + ['manage_5fcontent',['manage_content',['../manage_8php.html#a2bca247b5296827638959138367db4f5',1,'manage.php']]], + ['manual_5fconfig',['manual_config',['../setup_8php.html#abe405d227ba7232971964a706d4f3bce',1,'setup.php']]], + ['map_5fscope',['map_scope',['../items_8php.html#ac1fcf621dce7370515b420a7753f4726',1,'items.php']]], + ['marital_5fselector',['marital_selector',['../profile__selectors_8php.html#a7473dd095987e1cdcc79d4f0bb5e6798',1,'profile_selectors.php']]], + ['match_5fcontent',['match_content',['../match_8php.html#a1dd853e959b9e70c1911bb2fb5f5130d',1,'match.php']]], + ['member_5fof',['member_of',['../include_2group_8php.html#a048f6892bfd28852de1b76470df411de',1,'group.php']]], + ['message_5faside',['message_aside',['../mod_2message_8php.html#af4ba72486117cc24335fd8e92a2112a7',1,'message.php']]], + ['message_5fcontent',['message_content',['../mod_2message_8php.html#a3547ed86d09a4bb8fa64ec374a40ee79',1,'message.php']]], + ['message_5fpost',['message_post',['../mod_2message_8php.html#a0db7030362a7e9ed9549b341d7b35718',1,'message.php']]], + ['metopem',['metopem',['../crypto_8php.html#af8bbdeaf4abed7b40365d301e6013c85',1,'crypto.php']]], + ['metorsa',['metorsa',['../crypto_8php.html#a573f02517abe4ac9241268263063b2a0',1,'crypto.php']]], + ['mini_5fgroup_5fselect',['mini_group_select',['../include_2group_8php.html#ab4d9e5b59f48787cb01baae5dc6c381f',1,'group.php']]], + ['mood_5fcontent',['mood_content',['../mood_8php.html#a721b9b6703b3234a005641c92d409b8f',1,'mood.php']]], + ['mood_5finit',['mood_init',['../mood_8php.html#a7ae136dd7476865b4828136175db5022',1,'mood.php']]], + ['msearch_5fpost',['msearch_post',['../msearch_8php.html#ac80d2a6c0a92e79eec7efbbccd74d9a8',1,'msearch.php']]] +]; diff --git a/doc/html/search/functions_6e.html b/doc/html/search/functions_6e.html new file mode 100644 index 000000000..5e54741d4 --- /dev/null +++ b/doc/html/search/functions_6e.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_6e.js b/doc/html/search/functions_6e.js new file mode 100644 index 000000000..9617e7de3 --- /dev/null +++ b/doc/html/search/functions_6e.js @@ -0,0 +1,34 @@ +var searchData= +[ + ['nameslist',['namesList',['../docblox__errorchecker_8php.html#a2b767cfc461fdd5061fffc9e4a806d5b',1,'docblox_errorchecker.php']]], + ['nav',['nav',['../nav_8php.html#a43be0df73b90647ea70947ce004e231e',1,'nav.php']]], + ['nav_5fset_5fselected',['nav_set_selected',['../nav_8php.html#ac3c920ce3ea5b0d9e0678ee37155f06a',1,'nav.php']]], + ['navbar_5fcomplete',['navbar_complete',['../acl_8php.html#a57dceff370d4a0e7ae673d50fbfda61f',1,'acl.php']]], + ['network_5fcontent',['network_content',['../mod_2network_8php.html#a43f2f29b90c5e29072c561934bc8f8b4',1,'network.php']]], + ['network_5finit',['network_init',['../mod_2network_8php.html#a180fce90ad11d7e0e45be094da7149ec',1,'network.php']]], + ['network_5fquery',['network_query',['../iquery_8php.html#aa41c07bf856eb8b386430cc53d80d4ac',1,'iquery.php']]], + ['network_5fquery_5fget_5fsel_5ftab',['network_query_get_sel_tab',['../mod_2network_8php.html#aeaa518c1a317516a3da337b88d358666',1,'network.php']]], + ['network_5fto_5fname',['network_to_name',['../contact__selectors_8php.html#ad472e4716426dd1a9dd77b62962454be',1,'contact_selectors.php']]], + ['new_5faccess_5ftoken',['new_access_token',['../classFKOAuthDataStore.html#a434882f03e3cdb171ed89e09e337e934',1,'FKOAuthDataStore']]], + ['new_5fchannel_5fcontent',['new_channel_content',['../new__channel_8php.html#ae585191610f79da129492482ce8e2fee',1,'new_channel.php']]], + ['new_5fchannel_5finit',['new_channel_init',['../new__channel_8php.html#a1ad7f99e4366a32942c6b954aba3a164',1,'new_channel.php']]], + ['new_5fchannel_5fpost',['new_channel_post',['../new__channel_8php.html#a180b0646957db8290482f02454ad7f23',1,'new_channel.php']]], + ['new_5fcontact',['new_contact',['../include_2follow_8php.html#a6553a7650fae55f95660510d90983144',1,'follow.php']]], + ['new_5fcookie',['new_cookie',['../auth_8php.html#af8cde2fbf14abc2dd7ffa310400a59e3',1,'auth.php']]], + ['new_5ffollower',['new_follower',['../items_8php.html#a53eb3d27e1c55083be93a32f392d54e7',1,'items.php']]], + ['new_5fkeypair',['new_keypair',['../crypto_8php.html#aae0ab70d6a199b29555b1ac3cf250d6a',1,'crypto.php']]], + ['new_5frequest_5ftoken',['new_request_token',['../classFKOAuthDataStore.html#a431b44d70e3da6a8256ab38f710e3050',1,'FKOAuthDataStore']]], + ['node2bbcode',['node2bbcode',['../html2bbcode_8php.html#ad174afe0ccbd8c475e48f8a6ee2f27d8',1,'html2bbcode.php']]], + ['node2bbcodesub',['node2bbcodesub',['../html2bbcode_8php.html#a39c662b19d318990fee2ba795a55d7a7',1,'html2bbcode.php']]], + ['nogroup_5fcontent',['nogroup_content',['../nogroup_8php.html#a52085b183f97c552f1db5c4926e8ec30',1,'nogroup.php']]], + ['nogroup_5finit',['nogroup_init',['../nogroup_8php.html#a099cb353bf62e8453069ce107b763212',1,'nogroup.php']]], + ['normalise_5fopenid',['normalise_openid',['../text_8php.html#adba17ec946f4285285dc100f7860bf51',1,'text.php']]], + ['notice',['notice',['../boot_8php.html#a9255af5ae9c887520091ea04763c1a88',1,'boot.php']]], + ['notification',['notification',['../enotify_8php.html#a3e9a9355b243777c488d2a9883908dfc',1,'enotify.php']]], + ['notifications_5fcontent',['notifications_content',['../notifications_8php.html#aadd0b5525bd8c283a5d8a37982bbfe62',1,'notifications.php']]], + ['notifications_5fpost',['notifications_post',['../notifications_8php.html#a5baffec7b2e625c9f9cefbc097550d33',1,'notifications.php']]], + ['notifier_5frun',['notifier_run',['../notifier_8php.html#a568c502f626cff95e344c0748938b85d',1,'notifier.php']]], + ['notify_5fcontent',['notify_content',['../mod_2notify_8php.html#acdf3851688ebd6d6a575eb84ef9febe3',1,'notify.php']]], + ['notify_5finit',['notify_init',['../mod_2notify_8php.html#a94f9a6a9d4b5fd704baafff0c34f41ae',1,'notify.php']]], + ['nuke_5fsession',['nuke_session',['../auth_8php.html#a2add3a1129ffa4d5515442a9d52a9b1a',1,'auth.php']]] +]; diff --git a/doc/html/search/functions_6f.html b/doc/html/search/functions_6f.html new file mode 100644 index 000000000..9d6926417 --- /dev/null +++ b/doc/html/search/functions_6f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_6f.js b/doc/html/search/functions_6f.js new file mode 100644 index 000000000..929727b02 --- /dev/null +++ b/doc/html/search/functions_6f.js @@ -0,0 +1,18 @@ +var searchData= +[ + ['oauth_5fget_5fclient',['oauth_get_client',['../mod_2api_8php.html#a02ae0f60e240dc806b860edb7d582117',1,'api.php']]], + ['oe_5fbuild_5fxpath',['oe_build_xpath',['../include_2oembed_8php.html#ab953a6e7c11bc6498ce01ed73e2ba319',1,'oembed.php']]], + ['oe_5fget_5finner_5fhtml',['oe_get_inner_html',['../include_2oembed_8php.html#a03fa3b7832c98a3d0b4630afeb73d487',1,'oembed.php']]], + ['oembed_5fbbcode2html',['oembed_bbcode2html',['../include_2oembed_8php.html#aba89ae64b355efcb4f706553d3edb6a2',1,'oembed.php']]], + ['oembed_5ffetch_5furl',['oembed_fetch_url',['../include_2oembed_8php.html#a98549b9af8140eda3eceaeedcaabc2c2',1,'oembed.php']]], + ['oembed_5fformat_5fobject',['oembed_format_object',['../include_2oembed_8php.html#a26bb4c1e330d2f94ea7b6ce2fe970cf3',1,'oembed.php']]], + ['oembed_5fhtml2bbcode',['oembed_html2bbcode',['../include_2oembed_8php.html#a000a62b97113cf95b0e9e00412168172',1,'oembed.php']]], + ['oembed_5fiframe',['oembed_iframe',['../include_2oembed_8php.html#a9e57f3e36a0a0a47e6db79544b701d9a',1,'oembed.php']]], + ['oembed_5finit',['oembed_init',['../mod_2oembed_8php.html#a9145025aaf057fb5d3f9f7011e5e1014',1,'oembed.php']]], + ['oembed_5freplacecb',['oembed_replacecb',['../include_2oembed_8php.html#a00c4c80deffd9daf8dc97b58d4c64ed0',1,'oembed.php']]], + ['oexchange_5fcontent',['oexchange_content',['../oexchange_8php.html#a2d8b785cd7d041a4e6274f5af370cf26',1,'oexchange.php']]], + ['oexchange_5finit',['oexchange_init',['../oexchange_8php.html#ac8e2e469ddc3db984b0c1b44558aca59',1,'oexchange.php']]], + ['onepoll_5frun',['onepoll_run',['../onepoll_8php.html#a72753b2fdec79b37c7f432035c91fb6d',1,'onepoll.php']]], + ['opensearch_5finit',['opensearch_init',['../opensearch_8php.html#ad13034877a496565ac7d99e9fc6f55e9',1,'opensearch.php']]], + ['orient',['orient',['../classPhoto.html#a32ff09cd464a48bc8e510a1403410753',1,'Photo']]] +]; diff --git a/doc/html/search/functions_70.html b/doc/html/search/functions_70.html new file mode 100644 index 000000000..8ef7fb962 --- /dev/null +++ b/doc/html/search/functions_70.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_70.js b/doc/html/search/functions_70.js new file mode 100644 index 000000000..cbf89bbda --- /dev/null +++ b/doc/html/search/functions_70.js @@ -0,0 +1,79 @@ +var searchData= +[ + ['page_5fcontent',['page_content',['../page_8php.html#a91a5f649f68406149108bded1dc90b22',1,'page.php']]], + ['parse_5furl_5fcontent',['parse_url_content',['../parse__url_8php.html#a05a9e8944380ba3cf6bbf5893dd4b74b',1,'parse_url.php']]], + ['parse_5fxml_5fstring',['parse_xml_string',['../include_2network_8php.html#a27a951b59d8d622c0b3e7b0673ba74c6',1,'network.php']]], + ['parsed',['parsed',['../classFriendicaSmarty.html#a6a4d4281d6fa9be1d37a97b188ffe8c9',1,'FriendicaSmarty']]], + ['parseurl_5fgetsiteinfo',['parseurl_getsiteinfo',['../parse__url_8php.html#a25635549f2c22955d72465f4d2e58993',1,'parse_url.php']]], + ['pemtome',['pemtome',['../crypto_8php.html#a798368843cdd9bb08386b48e53e29e8c',1,'crypto.php']]], + ['pemtorsa',['pemtorsa',['../crypto_8php.html#a35bc357c93f4ddc67ef377620b0349e8',1,'crypto.php']]], + ['perm_5fis_5fallowed',['perm_is_allowed',['../permissions_8php.html#a67ada9ed51e77885b6b0f6a28cee1835',1,'permissions.php']]], + ['permissions_5fsql',['permissions_sql',['../security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f',1,'security.php']]], + ['photo_5finit',['photo_init',['../photo_8php.html#a582779d24882b0d31ee909a91d70a448',1,'photo.php']]], + ['photo_5fupload',['photo_upload',['../include_2photos_8php.html#a6c40ef58aefef705a5adc84a40e97109',1,'photos.php']]], + ['photos_5falbum_5fexists',['photos_album_exists',['../include_2photos_8php.html#a8e8b7be99e24c2497bc2cb3339280c35',1,'photos.php']]], + ['photos_5falbum_5fget_5fdb_5fidstr',['photos_album_get_db_idstr',['../include_2photos_8php.html#a7e7abc69872180697c5471dc69349afe',1,'photos.php']]], + ['photos_5falbum_5frename',['photos_album_rename',['../include_2photos_8php.html#ab0365f25b22ccea5f085fe7c49e1f4ab',1,'photos.php']]], + ['photos_5falbum_5fwidget',['photos_album_widget',['../include_2photos_8php.html#af24c6aeed28ecc31ec39e7d9a1804979',1,'photos.php']]], + ['photos_5falbums_5flist',['photos_albums_list',['../include_2photos_8php.html#aedccaf18282b26899d9549c29bd9d1b9',1,'photos.php']]], + ['photos_5fcontent',['photos_content',['../mod_2photos_8php.html#aa87382611a66ec5effdb2d78f13f5812',1,'photos.php']]], + ['photos_5fcreate_5fitem',['photos_create_item',['../include_2photos_8php.html#ad648c0c5544fe9263409b6f6e57c6274',1,'photos.php']]], + ['photos_5finit',['photos_init',['../mod_2photos_8php.html#ab950295cd77626f5fe65331a87693014',1,'photos.php']]], + ['photos_5fpost',['photos_post',['../mod_2photos_8php.html#a062bed4d04d14fee8a53f4c9be673080',1,'photos.php']]], + ['ping_5finit',['ping_init',['../ping_8php.html#a77217b1b190b4c5d8770867b45f0c0a1',1,'ping.php']]], + ['pkcs1_5fencode',['pkcs1_encode',['../crypto_8php.html#a890b443f80f0968fb9eabd93fc99dbb5',1,'crypto.php']]], + ['pkcs5_5fpad',['pkcs5_pad',['../crypto_8php.html#a3398666e184faf8e516c8e5d91de86eb',1,'crypto.php']]], + ['pkcs5_5funpad',['pkcs5_unpad',['../crypto_8php.html#ac95ac3b1b23b65b04a86613d4206ae85',1,'crypto.php']]], + ['pkcs8_5fencode',['pkcs8_encode',['../crypto_8php.html#a0e941b6b18ff895d1a2448741abf2ef2',1,'crypto.php']]], + ['po2php_5frun',['po2php_run',['../po2php_8php.html#a3b75e36f913198299e99559b175cd8b4',1,'po2php.php']]], + ['poco_5finit',['poco_init',['../poco_8php.html#a53def16f75e3d41f1d2bb7cfa4905498',1,'poco.php']]], + ['poco_5fload',['poco_load',['../socgraph_8php.html#aad9ee2421fd1ca405b241e8ed72d9aca',1,'socgraph.php']]], + ['poke_5fcontent',['poke_content',['../poke_8php.html#ac9190563a8da9c07a16f9dcd71cf6993',1,'poke.php']]], + ['poke_5finit',['poke_init',['../poke_8php.html#a9725aab97b3983e6a98bd81c4efe7d3b',1,'poke.php']]], + ['poller_5frun',['poller_run',['../poller_8php.html#a5f12df3a4738124b6c039971e87e76da',1,'poller.php']]], + ['pop_5flang',['pop_lang',['../language_8php.html#a78bd204955ec4cc3a9ac651285a1689d',1,'language.php']]], + ['populate_5facl',['populate_acl',['../acl__selectors_8php.html#a51f2ec7a143d5a5b38e35efd5f3d6e2c',1,'acl_selectors.php']]], + ['post_5finit',['post_init',['../post_8php.html#af4b48181ce773ef0cdfc972441445c34',1,'post.php']]], + ['post_5fpost',['post_post',['../post_8php.html#af59e6a1dc22d19d9257b01cd7ccedb75',1,'post.php']]], + ['post_5furl',['post_url',['../include_2network_8php.html#aa44d9e33a579d930e9e79c4ebb3d6b5e',1,'network.php']]], + ['posted_5fdate_5fwidget',['posted_date_widget',['../items_8php.html#abe695dd89e1e10ed042c26b80114f0ed',1,'items.php']]], + ['posted_5fdates',['posted_dates',['../items_8php.html#ad2abb4644ff1f20fefbc80326fe01cf0',1,'items.php']]], + ['preg_5fheart',['preg_heart',['../text_8php.html#ac19d2b33a58372a357a43d51eed19162',1,'text.php']]], + ['prepare_5fpage',['prepare_page',['../conversation_8php.html#a4b0888b0f26e1c284a4341fe5fd04f0c',1,'conversation.php']]], + ['pretheme_5finit',['pretheme_init',['../pretheme_8php.html#af5660943ee99db5fd75182316522eafe',1,'pretheme.php']]], + ['printable',['printable',['../dba_8php.html#a55bf30d8176967e682656b5be4ad9249',1,'dba.php']]], + ['private_5fmessages_5fdrop',['private_messages_drop',['../include_2message_8php.html#aed272d77c06a309e2836ac79e75613f1',1,'message.php']]], + ['private_5fmessages_5ffetch_5fconversation',['private_messages_fetch_conversation',['../include_2message_8php.html#a5f8de9847e203329e317ac38dc646898',1,'message.php']]], + ['private_5fmessages_5ffetch_5fmessage',['private_messages_fetch_message',['../include_2message_8php.html#a254a756031e4d5e94f85e2939bdb5091',1,'message.php']]], + ['private_5fmessages_5flist',['private_messages_list',['../include_2message_8php.html#a652973ce47a262f2d238c2fd6233d97e',1,'message.php']]], + ['probe_5fcontent',['probe_content',['../probe_8php.html#a1f1db3fa6038e451e737964c94bf5e99',1,'probe.php']]], + ['probe_5furl',['probe_url',['../Scrape_8php.html#a32883beb7dbf311fc9bfa99200a7402c',1,'Scrape.php']]], + ['proc_5frun',['proc_run',['../boot_8php.html#ab346a2ece14993861f3e4206befa94f0',1,'boot.php']]], + ['process_5fdelivery',['process_delivery',['../zot_8php.html#a37ec13b18057634eadb071f05297f5e1',1,'zot.php']]], + ['process_5fmail_5fdelivery',['process_mail_delivery',['../zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc',1,'zot.php']]], + ['process_5fprofile_5fdelivery',['process_profile_delivery',['../zot_8php.html#a9a57b40669351c9791126b925cb7ef3b',1,'zot.php']]], + ['profile_5factivity',['profile_activity',['../activities_8php.html#a80134e807719b3c54aba971958d2e132',1,'activities.php']]], + ['profile_5faside',['profile_aside',['../profile_8php.html#a1a2482b775476f2f64ea5e8f4fc3fd1e',1,'profile.php']]], + ['profile_5fcontent',['profile_content',['../profile_8php.html#a3775cf6eef6587e5143133356a7b76c0',1,'profile.php']]], + ['profile_5fcreate_5fsidebar',['profile_create_sidebar',['../boot_8php.html#a5b45d647da3743a7fc8c6223350b4d67',1,'boot.php']]], + ['profile_5finit',['profile_init',['../profile_8php.html#ab5d0246be0552e2182a585c1206d22a5',1,'profile.php']]], + ['profile_5fload',['profile_load',['../boot_8php.html#aebc5ed38c73ade57f360471da712ded2',1,'boot.php']]], + ['profile_5fphoto_5faside',['profile_photo_aside',['../profile__photo_8php.html#ac9cd968a767e2ae1b88383b6cdd6dbe3',1,'profile_photo.php']]], + ['profile_5fphoto_5finit',['profile_photo_init',['../profile__photo_8php.html#a140631c56438fbfacb61a1eb43067d02',1,'profile_photo.php']]], + ['profile_5fphoto_5fpost',['profile_photo_post',['../profile__photo_8php.html#a4b80234074bd603221aa5364f330e479',1,'profile_photo.php']]], + ['profile_5fsidebar',['profile_sidebar',['../boot_8php.html#a646123ebbb10eb6f5b6ff26f4288da9b',1,'boot.php']]], + ['profile_5ftabs',['profile_tabs',['../boot_8php.html#a1dfcb5146e9d1eca4528bc580ad5d273',1,'boot.php']]], + ['profiler',['profiler',['../text_8php.html#aac3721c73b3ceadf02a172704d0a27b7',1,'text.php']]], + ['profiles_5faside',['profiles_aside',['../profiles_8php.html#a2a3ac90f51941ff78b85e9389304969c',1,'profiles.php']]], + ['profiles_5fcontent',['profiles_content',['../profiles_8php.html#a46975783b8b8d70402d51487eb1f0b00',1,'profiles.php']]], + ['profiles_5finit',['profiles_init',['../profiles_8php.html#a36f71405ad536228f8bb84a551b23f7e',1,'profiles.php']]], + ['profiles_5fpost',['profiles_post',['../profiles_8php.html#ab0362c81b1d3b0b12a772b9fac446e04',1,'profiles.php']]], + ['profperm_5faside',['profperm_aside',['../profperm_8php.html#a77fd398ae7c25142e1d9ad724ec347cc',1,'profperm.php']]], + ['profperm_5fcontent',['profperm_content',['../profperm_8php.html#aef015787de2373d9fb3fe3f814fb5023',1,'profperm.php']]], + ['profperm_5finit',['profperm_init',['../profperm_8php.html#a17fb64ec05edee1dc94d95438807d6c6',1,'profperm.php']]], + ['protect_5fsprintf',['protect_sprintf',['../text_8php.html#a4e7698aca48982512594b274543c3b9b',1,'text.php']]], + ['public_5fpermissions_5fsql',['public_permissions_sql',['../security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01',1,'security.php']]], + ['public_5frecips',['public_recips',['../zot_8php.html#a083aec6c900d244e1bfc1406f9461465',1,'zot.php']]], + ['pubrsatome',['pubrsatome',['../crypto_8php.html#a2a3fae7caca27f86d158eeaf69b6f287',1,'crypto.php']]], + ['push_5flang',['push_lang',['../language_8php.html#ac9142ef1d01a235c760deb0f16643f5a',1,'language.php']]] +]; diff --git a/doc/html/search/functions_71.html b/doc/html/search/functions_71.html new file mode 100644 index 000000000..d8d7e7358 --- /dev/null +++ b/doc/html/search/functions_71.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_71.js b/doc/html/search/functions_71.js new file mode 100644 index 000000000..d0e116a07 --- /dev/null +++ b/doc/html/search/functions_71.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['q',['q',['../classdba.html#a0060c8611e3c3ee71049904ad028a695',1,'dba\q()'],['../dba_8php.html#a2c09a731d3b4fef41fed0e83db01be1f',1,'q(): dba.php']]], + ['qsearch_5finit',['qsearch_init',['../qsearch_8php.html#a0501887b95bd8fa21018b2936a668894',1,'qsearch.php']]], + ['queue_5frun',['queue_run',['../queue_8php.html#af8c93de86d866c3200174c8450a0f341',1,'queue.php']]], + ['quotelevel',['quotelevel',['../html2plain_8php.html#a56d29b254333d29abb9d96a9a903a4b0',1,'html2plain.php']]] +]; diff --git a/doc/html/search/functions_72.html b/doc/html/search/functions_72.html new file mode 100644 index 000000000..71f58bbd1 --- /dev/null +++ b/doc/html/search/functions_72.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_72.js b/doc/html/search/functions_72.js new file mode 100644 index 000000000..74f4e6dca --- /dev/null +++ b/doc/html/search/functions_72.js @@ -0,0 +1,35 @@ +var searchData= +[ + ['random_5fprofile',['random_profile',['../Contact_8php.html#a91281b5d4bbbb2ed468e27ec82ca083c',1,'Contact.php']]], + ['randprof_5finit',['randprof_init',['../randprof_8php.html#abf5dba3c608b9304cbf68327cd31b090',1,'randprof.php']]], + ['rebuild_5ftheme_5ftable',['rebuild_theme_table',['../admin_8php.html#ae46311a3fefc21abc838a26e91789de6',1,'admin.php']]], + ['redbasic_5fform',['redbasic_form',['../view_2theme_2redbasic_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e',1,'config.php']]], + ['redbasic_5finit',['redbasic_init',['../redbasic_2php_2theme_8php.html#af6eb813e9fc7e2d76ac1b82bc5c0ed9b',1,'theme.php']]], + ['redir_5finit',['redir_init',['../redir_8php.html#a9ac266c3f5cf0d94ef63e6d0f2edf1f5',1,'redir.php']]], + ['reduce',['reduce',['../docblox__errorchecker_8php.html#ae9562cf60aa693114603d27b55d2185f',1,'docblox_errorchecker.php']]], + ['register_5fcontent',['register_content',['../register_8php.html#a0e91f57f111407ea8d3223a05022bb2a',1,'register.php']]], + ['register_5finit',['register_init',['../register_8php.html#ae20c0cd40f738d6295de58b9202c83d5',1,'register.php']]], + ['register_5fpost',['register_post',['../register_8php.html#a51731dcc1917c58a790eb1c0f6132271',1,'register.php']]], + ['regmod_5fcontent',['regmod_content',['../regmod_8php.html#a7953df4e32e63946565e90cdd5d50409',1,'regmod.php']]], + ['relative_5fdate',['relative_date',['../datetime_8php.html#a8ae8dc95ace7ac27fa5a1ecf42b78c82',1,'datetime.php']]], + ['reltoabs',['reltoabs',['../text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2',1,'text.php']]], + ['remote_5fuser',['remote_user',['../boot_8php.html#a5542c5c2806ab8bca04bad53d47b5209',1,'boot.php']]], + ['remove_5fall_5fxchan_5fresources',['remove_all_xchan_resources',['../Contact_8php.html#acc12cda999c88c4d6185cca967c15125',1,'Contact.php']]], + ['remove_5fchild',['remove_child',['../classItem.html#a2ce70ef63f9f4d86a09c351678806925',1,'Item']]], + ['remove_5fparent',['remove_parent',['../classItem.html#aa452b5bcd8dea12119b09212c615cb41',1,'Item']]], + ['remove_5fqueue_5fitem',['remove_queue_item',['../queue__fn_8php.html#a8fe71e981399bbf5d000a6ca42f57b24',1,'queue_fn.php']]], + ['removeme_5fcontent',['removeme_content',['../removeme_8php.html#a065a589caa2aa84c60f7073a28f0ad9c',1,'removeme.php']]], + ['removeme_5fpost',['removeme_post',['../removeme_8php.html#a7be08738beca44bb98a79e01cdb2ee88',1,'removeme.php']]], + ['render_5flocation_5fdefault',['render_location_default',['../conversation_8php.html#a40b9b5e7825bc73932a32e667f05e6f2',1,'conversation.php']]], + ['replace',['replace',['../classTemplate.html#a285b5b2007dbbf733476273df3fed4ef',1,'Template']]], + ['requestdata',['requestdata',['../include_2api_8php.html#a43c47de8565cc00c3369cb35c19cc75e',1,'api.php']]], + ['rmagic_5fcontent',['rmagic_content',['../rmagic_8php.html#a3e28db1e5cfa7e5c2617f90222c1caef',1,'rmagic.php']]], + ['rmagic_5finit',['rmagic_init',['../rmagic_8php.html#a95455edd43f1bff39446a57388cdde16',1,'rmagic.php']]], + ['rmagic_5fpost',['rmagic_post',['../rmagic_8php.html#a869de069d081b3c4e98b957d06bbf08f',1,'rmagic.php']]], + ['rotate',['rotate',['../classPhoto.html#a8b2b0a7f949a566c21e0160fbf047666',1,'Photo']]], + ['rsa_5fsign',['rsa_sign',['../crypto_8php.html#a920e5f222d0020f47556033d8b2b6552',1,'crypto.php']]], + ['rsa_5fverify',['rsa_verify',['../crypto_8php.html#ab4f21d8f6b8ece0915e7c8bb73379f96',1,'crypto.php']]], + ['rsatopem',['rsatopem',['../crypto_8php.html#a7f7e650aaeaa3832580a73eb00966b26',1,'crypto.php']]], + ['rsd_5fxml_5fcontent',['rsd_xml_content',['../rsd__xml_8php.html#a740cd02fa15e5a53f8547fac73f0ab82',1,'rsd_xml.php']]], + ['runs',['runs',['../docblox__errorchecker_8php.html#a21b4bbe5aae2d85db33affc7126a67ec',1,'docblox_errorchecker.php']]] +]; diff --git a/doc/html/search/functions_73.html b/doc/html/search/functions_73.html new file mode 100644 index 000000000..c80660e8c --- /dev/null +++ b/doc/html/search/functions_73.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_73.js b/doc/html/search/functions_73.js new file mode 100644 index 000000000..4873a4c9a --- /dev/null +++ b/doc/html/search/functions_73.js @@ -0,0 +1,80 @@ +var searchData= +[ + ['salmon_5fkey',['salmon_key',['../crypto_8php.html#a9191447cc46f0b4eaba3273e313994d5',1,'crypto.php']]], + ['saved_5fsearches',['saved_searches',['../mod_2network_8php.html#a36e03af6f2efe62ecaa247509365bfad',1,'network.php']]], + ['saveimage',['saveImage',['../classPhoto.html#af522871c8ab451155b9745fa7f057943',1,'Photo']]], + ['scale_5fexternal_5fimages',['scale_external_images',['../include_2network_8php.html#ae8d9c41a11000fb8667039fc71b4f73f',1,'network.php']]], + ['scaleimage',['scaleImage',['../classPhoto.html#a4ff11117ada771637a61a668d2af6636',1,'Photo']]], + ['scaleimagesquare',['scaleImageSquare',['../classPhoto.html#a080a5219eb09c2621dabeae153ce6a03',1,'Photo']]], + ['scaleimageup',['scaleImageUp',['../classPhoto.html#a735eb657277e7a46cebe7f6fde0af80a',1,'Photo']]], + ['search_5fac_5finit',['search_ac_init',['../search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138',1,'search_ac.php']]], + ['search_5fcontent',['search_content',['../search_8php.html#a9f726b45d369bd7f94f5be4d0c99636f',1,'search.php']]], + ['search_5finit',['search_init',['../search_8php.html#acf19fd30f07f495781ca0d7a0a08b435',1,'search.php']]], + ['search_5fpost',['search_post',['../search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7',1,'search.php']]], + ['search_5fsaved_5fsearches',['search_saved_searches',['../search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6',1,'search.php']]], + ['select_5ftimezone',['select_timezone',['../datetime_8php.html#a633dadba426fa2f60b25fabdb19ebc1f',1,'datetime.php']]], + ['send',['send',['../classenotify.html#afbc088860f534c6c05788b48cfc262c6',1,'enotify']]], + ['send_5fmessage',['send_message',['../include_2message_8php.html#ac382fdcdf990dcfa8f6528ab8fd280bd',1,'message.php']]], + ['send_5freg_5fapproval_5femail',['send_reg_approval_email',['../account_8php.html#a014de2d5d5c9785de5bf547a485822fa',1,'account.php']]], + ['send_5fstatus_5fnotifications',['send_status_notifications',['../items_8php.html#aab9e0c58247427126de0699c729c3b6c',1,'items.php']]], + ['send_5fverification_5femail',['send_verification_email',['../account_8php.html#aa9c29c497c17d8f9344dce8631ad8761',1,'account.php']]], + ['service_5fclass_5fallows',['service_class_allows',['../plugin_8php.html#a030cec6793b909c439c0336ba39b1571',1,'plugin.php']]], + ['service_5fclass_5ffetch',['service_class_fetch',['../plugin_8php.html#a905b54e10704b283ac64680a8abc0971',1,'plugin.php']]], + ['set',['set',['../classCache.html#ae622b82adc1c2fb1f3e2cc4fd9688fce',1,'Cache']]], + ['set_5faccount',['set_account',['../classApp.html#a5c83c957ada53e170901e3c025080862',1,'App']]], + ['set_5fapp',['set_app',['../classBaseObject.html#a0a9acda12d751692834cf6999f889223',1,'BaseObject']]], + ['set_5fapps',['set_apps',['../classApp.html#abea5a4f77dcd53c928dc4eed86616637',1,'App']]], + ['set_5fbaseurl',['set_baseurl',['../classApp.html#a78788f6e9d8b713b138f81e457c5cd08',1,'App']]], + ['set_5fchannel',['set_channel',['../classApp.html#a89e9feb2bfb5253883a9720beaffe876',1,'App']]], + ['set_5fconfig',['set_config',['../include_2config_8php.html#ad6da879e4fb5b37d1e161d4e9be5c32a',1,'config.php']]], + ['set_5fconversation',['set_conversation',['../classItem.html#aa8b1bbc4236890694635295e46d7fd72',1,'Item']]], + ['set_5fcurl_5fcode',['set_curl_code',['../classApp.html#a5e6a6bd641e4d9909df56f0283c03821',1,'App']]], + ['set_5fcurl_5fheaders',['set_curl_headers',['../classApp.html#a9632092d9e8fdaa82a9fc4586433fd31',1,'App']]], + ['set_5fdefault_5flogin_5fidentity',['set_default_login_identity',['../identity_8php.html#a78151baf4407a8482d2681a91a9c486b',1,'identity.php']]], + ['set_5fgroups',['set_groups',['../classApp.html#a3d84af5e42082098672531cd1a618853',1,'App']]], + ['set_5fhostname',['set_hostname',['../classApp.html#a344d2b7dc2f276648d521aee4da1731c',1,'App']]], + ['set_5fmode',['set_mode',['../classConversation.html#a66f121ca4026246f86a732e5faa0682c',1,'Conversation']]], + ['set_5fobserver',['set_observer',['../classApp.html#a4776d9322edea17fae56afa5d01a323e',1,'App']]], + ['set_5fpager_5fitemspage',['set_pager_itemspage',['../classApp.html#a4bdd7bfed62f50515fce652127bf481b',1,'App']]], + ['set_5fpager_5ftotal',['set_pager_total',['../classApp.html#a560189f048d3db2f526841963cc43e97',1,'App']]], + ['set_5fparent',['set_parent',['../classItem.html#a9890ff72662d5bba301d1f2dd8aec9d7',1,'Item']]], + ['set_5fpath',['set_path',['../classApp.html#adb060d5c7f35a521ec7ec0effbe08097',1,'App']]], + ['set_5fpconfig',['set_pconfig',['../include_2config_8php.html#a61591371cb18764138655d67dc817ab2',1,'config.php']]], + ['set_5fperms',['set_perms',['../classApp.html#a557d7b779d8259027f4724ebf7b248dc',1,'App']]], + ['set_5ftemplate_5fengine',['set_template_engine',['../classApp.html#a325f05bdc15d1b341044b389b21cd195',1,'App']]], + ['set_5fwidget',['set_widget',['../classApp.html#a123b903dfe5d3488cc68db3471d36fd2',1,'App']]], + ['settings_5faside',['settings_aside',['../settings_8php.html#ae5aebccb006bee1300078576baaf5582',1,'settings.php']]], + ['settings_5fpost',['settings_post',['../settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586',1,'settings.php']]], + ['setup_5fcontent',['setup_content',['../setup_8php.html#a88247384a96e14516f474d7af6a465c1',1,'setup.php']]], + ['setup_5finit',['setup_init',['../setup_8php.html#a267555abd17290e659b4bf44b885e4e0',1,'setup.php']]], + ['setup_5fpost',['setup_post',['../setup_8php.html#a13cf286774149a0a7bd8adb8179cec75',1,'setup.php']]], + ['sexpref_5fselector',['sexpref_selector',['../profile__selectors_8php.html#a3b50b3ea4ea4bdbebebfffc5d1b157c7',1,'profile_selectors.php']]], + ['share_5finit',['share_init',['../share_8php.html#afeb26046bdd02567ecd29ab5f188b249',1,'share.php']]], + ['showform',['showForm',['../fpostit_8php.html#a3f3ae3ae61578b5671673914fd894443',1,'fpostit.php']]], + ['siteinfo_5fcontent',['siteinfo_content',['../siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656',1,'siteinfo.php']]], + ['siteinfo_5finit',['siteinfo_init',['../siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0',1,'siteinfo.php']]], + ['smile_5fdecode',['smile_decode',['../text_8php.html#aca0f589be74fab1a460c57e88dad9779',1,'text.php']]], + ['smile_5fencode',['smile_encode',['../text_8php.html#a6232a23958366a80955a5782f4ba9073',1,'text.php']]], + ['smilies_5fcontent',['smilies_content',['../smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f',1,'smilies.php']]], + ['sort_5fby_5fdate',['sort_by_date',['../event_8php.html#a018ea4484910a873a7c1eaa126de9b1a',1,'event.php']]], + ['sort_5fitem_5fchildren',['sort_item_children',['../conversation_8php.html#ae996eb116d397a2c6396c312d7b98664',1,'conversation.php']]], + ['sort_5fthr_5fcommented',['sort_thr_commented',['../conversation_8php.html#a9f909b8885259b79c6ac8da93afd8f11',1,'conversation.php']]], + ['sort_5fthr_5fcreated',['sort_thr_created',['../conversation_8php.html#ac55e070f65f46fcc8e269f7896be4c7d',1,'conversation.php']]], + ['sort_5fthr_5fcreated_5frev',['sort_thr_created_rev',['../conversation_8php.html#a9cc2a679606da9e535a06433f9f553a0',1,'conversation.php']]], + ['starred_5finit',['starred_init',['../starred_8php.html#a63024fb418c678e49fd535e3752d349a',1,'starred.php']]], + ['startup',['startup',['../boot_8php.html#aca47505b8732177f52bb2d647eb2741c',1,'boot.php']]], + ['status_5feditor',['status_editor',['../conversation_8php.html#aedf008b9eac87f693d7dcc1a01404d85',1,'conversation.php']]], + ['store',['store',['../classPhoto.html#a15e21237805d5f1019b4e40322389194',1,'Photo']]], + ['store_5fitem_5ftag',['store_item_tag',['../text_8php.html#a4ba1339b2a7054971178ce194e4440fd',1,'text.php']]], + ['stream_5fperms_5fapi_5fuids',['stream_perms_api_uids',['../security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809',1,'security.php']]], + ['stringify_5farray_5felms',['stringify_array_elms',['../text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13',1,'text.php']]], + ['stripdcode_5fbr_5fcb',['stripdcode_br_cb',['../bb2diaspora_8php.html#a180b0e3a7d702998be19e3c3b44b0e93',1,'bb2diaspora.php']]], + ['subthread_5fcontent',['subthread_content',['../subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3',1,'subthread.php']]], + ['suggest_5fcontent',['suggest_content',['../suggest_8php.html#a58748a8235d4523f8333847f3e42dd91',1,'suggest.php']]], + ['suggest_5finit',['suggest_init',['../suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c',1,'suggest.php']]], + ['suggestion_5fquery',['suggestion_query',['../socgraph_8php.html#aab445ff14a151fda2efbabde65faf134',1,'socgraph.php']]], + ['supportedtypes',['supportedTypes',['../classPhoto.html#af46fdc365916728deb59adf5c99f528d',1,'Photo']]], + ['syncdirs',['syncdirs',['../dir__fns_8php.html#a6cae22cfdd6edda5ddf09e07abb3242a',1,'dir_fns.php']]], + ['system_5fdown',['system_down',['../system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa',1,'system_unavailable.php']]], + ['system_5funavailable',['system_unavailable',['../boot_8php.html#ac608a34f3bc180e7724192e0fd31f9b0',1,'boot.php']]] +]; diff --git a/doc/html/search/functions_74.html b/doc/html/search/functions_74.html new file mode 100644 index 000000000..1605901ee --- /dev/null +++ b/doc/html/search/functions_74.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_74.js b/doc/html/search/functions_74.js new file mode 100644 index 000000000..8fac0cb36 --- /dev/null +++ b/doc/html/search/functions_74.js @@ -0,0 +1,28 @@ +var searchData= +[ + ['tag_5fdeliver',['tag_deliver',['../items_8php.html#ab1bce4261bcf75ad62753b498a144d17',1,'items.php']]], + ['tagadelic',['tagadelic',['../text_8php.html#afe44c30f1d0f8cb3ca097d4e189d852d',1,'text.php']]], + ['tagblock',['tagblock',['../text_8php.html#a4f3605ee8de717a401ea9df2401b59f6',1,'text.php']]], + ['tagger_5fcontent',['tagger_content',['../tagger_8php.html#a0e4a3eb177d1684553c547503d67161c',1,'tagger.php']]], + ['tagrm_5fcontent',['tagrm_content',['../tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a',1,'tagrm.php']]], + ['tagrm_5fpost',['tagrm_post',['../tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78',1,'tagrm.php']]], + ['tags_5fsort',['tags_sort',['../text_8php.html#aaeded36bcc983b35d9205fe5b6c18c43',1,'text.php']]], + ['template_5fescape',['template_escape',['../template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5',1,'template_processor.php']]], + ['template_5funescape',['template_unescape',['../template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e',1,'template_processor.php']]], + ['term_5fquery',['term_query',['../text_8php.html#a7a913d19c77610da689be48fbbf6734c',1,'text.php']]], + ['terminate_5ffriendship',['terminate_friendship',['../Contact_8php.html#a38daa1c210b78385307123450ca9a1fc',1,'Contact.php']]], + ['termtype',['termtype',['../items_8php.html#ad34827ed330898456783fb14c7b46154',1,'items.php']]], + ['test_5fcontent',['test_content',['../test_8php.html#aaff133c1f566a332b5a3ae41b70941f8',1,'test.php']]], + ['test_5finit',['test_init',['../test_2php_2theme_8php.html#ad4235a22a5389b2291cdee55677e3cc5',1,'theme.php']]], + ['tgroup_5fcheck',['tgroup_check',['../items_8php.html#a88c6cf7649ac836fbbed82a7a0315110',1,'items.php']]], + ['theme_5fcontent',['theme_content',['../view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d',1,'config.php']]], + ['theme_5finclude',['theme_include',['../plugin_8php.html#a65fedcffbe03562ef844cabee37d34e2',1,'plugin.php']]], + ['theme_5fpost',['theme_post',['../view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6',1,'config.php']]], + ['theme_5fstatus',['theme_status',['../admin_8php.html#ad4f74f33944a98b56d2c8c7601f124a4',1,'admin.php']]], + ['timesel',['timesel',['../datetime_8php.html#a36d3d6dff8d76b5f295bb3d9c535a5b1',1,'datetime.php']]], + ['timezone_5fcmp',['timezone_cmp',['../datetime_8php.html#aa51b5a7ea4f931b23acbdfcea46e9865',1,'datetime.php']]], + ['title_5fis_5fbody',['title_is_body',['../items_8php.html#a1f747db2277904f85ac7b9e64c024e4e',1,'items.php']]], + ['toggle_5fmobile_5finit',['toggle_mobile_init',['../toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254',1,'toggle_mobile.php']]], + ['toggle_5ftheme',['toggle_theme',['../admin_8php.html#af81f081851791cd15e49e8ff6722dc27',1,'admin.php']]], + ['tryoembed',['tryoembed',['../bbcode_8php.html#a55b0cb6973f1ec731de0e726bcc0efa7',1,'bbcode.php']]] +]; diff --git a/doc/html/search/functions_75.html b/doc/html/search/functions_75.html new file mode 100644 index 000000000..a6c28fa65 --- /dev/null +++ b/doc/html/search/functions_75.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_75.js b/doc/html/search/functions_75.js new file mode 100644 index 000000000..b18a9ea85 --- /dev/null +++ b/doc/html/search/functions_75.js @@ -0,0 +1,19 @@ +var searchData= +[ + ['uexport_5finit',['uexport_init',['../uexport_8php.html#a118920137dedebe0581623a2e57e7b0d',1,'uexport.php']]], + ['undo_5fpost_5ftagging',['undo_post_tagging',['../text_8php.html#a740ad03e00459039a2c0992246c4e727',1,'text.php']]], + ['unescape_5funderscores_5fin_5flinks',['unescape_underscores_in_links',['../bb2diaspora_8php.html#a599428bceb6f6d82a6a78cb66811f747',1,'bb2diaspora.php']]], + ['update_5fchannel_5fcontent',['update_channel_content',['../update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba',1,'update_channel.php']]], + ['update_5fcommunity_5fcontent',['update_community_content',['../update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1',1,'update_community.php']]], + ['update_5fdisplay_5fcontent',['update_display_content',['../update__display_8php.html#aa36ac524059e209d5d75a03c16206246',1,'update_display.php']]], + ['update_5fimported_5fitem',['update_imported_item',['../zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df',1,'zot.php']]], + ['update_5fnetwork_5fcontent',['update_network_content',['../update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41',1,'update_network.php']]], + ['update_5fqueue_5ftime',['update_queue_time',['../queue__fn_8php.html#a4c2876181f75a4a61e85b7f00dfdbba1',1,'queue_fn.php']]], + ['update_5fsuggestions',['update_suggestions',['../socgraph_8php.html#a790690bb1a1d02483fe31632a160144d',1,'socgraph.php']]], + ['upgrade_5fbool_5fmessage',['upgrade_bool_message',['../plugin_8php.html#a754d7f53b3abc557b753c057dc4e021d',1,'plugin.php']]], + ['upgrade_5flink',['upgrade_link',['../plugin_8php.html#a4fc13e528367f510fcb6d8bbfc559040',1,'plugin.php']]], + ['upgrade_5fmessage',['upgrade_message',['../plugin_8php.html#a901657dd078e070516cf97285e0bada7',1,'plugin.php']]], + ['user_5fallow',['user_allow',['../account_8php.html#ac5c570a2d46446bad4dd2501e9c5a4b1',1,'account.php']]], + ['user_5fdeny',['user_deny',['../account_8php.html#ac1653efba62493b9d87513e1b6c04c83',1,'account.php']]], + ['user_5fremove',['user_remove',['../Contact_8php.html#a2fc191067dd571a79603c66b04b1ca15',1,'Contact.php']]] +]; diff --git a/doc/html/search/functions_76.html b/doc/html/search/functions_76.html new file mode 100644 index 000000000..e5263cc30 --- /dev/null +++ b/doc/html/search/functions_76.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_76.js b/doc/html/search/functions_76.js new file mode 100644 index 000000000..5bb2f6564 --- /dev/null +++ b/doc/html/search/functions_76.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['validate_5fchannelname',['validate_channelname',['../identity_8php.html#af2802bc13a00a17b867bba7978ba8f58',1,'identity.php']]], + ['validate_5femail',['validate_email',['../include_2network_8php.html#a897e7112d86eb95526cbd0bff9375f02',1,'network.php']]], + ['validate_5furl',['validate_url',['../include_2network_8php.html#a5caa264fab6d2b2344e6bd5b298b08f2',1,'network.php']]], + ['var_5freplace',['var_replace',['../classTemplate.html#abbc484016ddf5d818f55b823cae6feb0',1,'Template']]], + ['vcard_5ffrom_5fxchan',['vcard_from_xchan',['../Contact_8php.html#a6348a532c9d26cd1c9afbc9aa6aa8960',1,'Contact.php']]], + ['view_5finit',['view_init',['../view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e',1,'view.php']]], + ['viewconnections_5faside',['viewconnections_aside',['../viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6',1,'viewconnections.php']]], + ['viewconnections_5fcontent',['viewconnections_content',['../viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776',1,'viewconnections.php']]], + ['viewconnections_5finit',['viewconnections_init',['../viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330',1,'viewconnections.php']]], + ['viewsrc_5fcontent',['viewsrc_content',['../viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4',1,'viewsrc.php']]], + ['visible_5factivity',['visible_activity',['../conversation_8php.html#a7eeaaf44506815576f3bd80053ef52c3',1,'conversation.php']]] +]; diff --git a/doc/html/search/functions_77.html b/doc/html/search/functions_77.html new file mode 100644 index 000000000..add7295de --- /dev/null +++ b/doc/html/search/functions_77.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_77.js b/doc/html/search/functions_77.js new file mode 100644 index 000000000..de573b77c --- /dev/null +++ b/doc/html/search/functions_77.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['wall_5fattach_5fpost',['wall_attach_post',['../wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653',1,'wall_attach.php']]], + ['wall_5fupload_5fpost',['wall_upload_post',['../wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f',1,'wall_upload.php']]], + ['webfinger',['webfinger',['../include_2network_8php.html#a8122356933bcd6b0a8567e8e15ae5cc5',1,'network.php']]], + ['webfinger_5fcontent',['webfinger_content',['../webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3',1,'webfinger.php']]], + ['webfinger_5fdfrn',['webfinger_dfrn',['../include_2network_8php.html#adf6008b38c555e98e7ed10da9ede2335',1,'network.php']]], + ['what_5fnext',['what_next',['../setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58',1,'setup.php']]] +]; diff --git a/doc/html/search/functions_78.html b/doc/html/search/functions_78.html new file mode 100644 index 000000000..7f647970f --- /dev/null +++ b/doc/html/search/functions_78.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_78.js b/doc/html/search/functions_78.js new file mode 100644 index 000000000..7b1fba69d --- /dev/null +++ b/doc/html/search/functions_78.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['x',['x',['../boot_8php.html#a01353c9abebc3544ea080ac161729632',1,'boot.php']]], + ['xchan_5fcontent',['xchan_content',['../xchan_8php.html#a9853348bf1a35c644460221ba75edc2d',1,'xchan.php']]], + ['xchan_5fmail_5fquery',['xchan_mail_query',['../text_8php.html#a543447c5ed766535221e2d9636b379ee',1,'text.php']]], + ['xchan_5fquery',['xchan_query',['../text_8php.html#a24b2b69b9162da789ab6514e0e09a37c',1,'text.php']]], + ['xml2array',['xml2array',['../include_2network_8php.html#a99353baabbc3e0584b85eb79ee802cff',1,'network.php']]], + ['xml_5fstatus',['xml_status',['../include_2network_8php.html#a9e9da2aafb806c98ecdc318604e60dc6',1,'network.php']]], + ['xrd_5finit',['xrd_init',['../xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270',1,'xrd.php']]] +]; diff --git a/doc/html/search/functions_7a.html b/doc/html/search/functions_7a.html new file mode 100644 index 000000000..e23b42fb0 --- /dev/null +++ b/doc/html/search/functions_7a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/functions_7a.js b/doc/html/search/functions_7a.js new file mode 100644 index 000000000..743e9dc82 --- /dev/null +++ b/doc/html/search/functions_7a.js @@ -0,0 +1,27 @@ +var searchData= +[ + ['z_5fbirthday',['z_birthday',['../boot_8php.html#ab55e545b72ec8c097e052ea7d373491f',1,'boot.php']]], + ['z_5ffetch_5furl',['z_fetch_url',['../include_2network_8php.html#aafd06c0a75402aefb06cfb9f9740fa37',1,'network.php']]], + ['z_5fmime_5fcontent_5ftype',['z_mime_content_type',['../include_2attach_8php.html#a6fdd92775f31c07d2863e16e0026018a',1,'attach.php']]], + ['z_5fpath',['z_path',['../boot_8php.html#aba208673515cbb8a55e5fa4a1da99fda',1,'boot.php']]], + ['z_5fpost_5furl',['z_post_url',['../include_2network_8php.html#a6259181fec4d36722d1e91ac6210e876',1,'network.php']]], + ['z_5froot',['z_root',['../boot_8php.html#add517a0958ac684792c62142a3877f81',1,'boot.php']]], + ['zfinger_5finit',['zfinger_init',['../zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0',1,'zfinger.php']]], + ['zid',['zid',['../boot_8php.html#a5b7ce5c0a79796800883644c389dc87f',1,'boot.php']]], + ['zid_5finit',['zid_init',['../boot_8php.html#a680fbafc2db023c5b1309e0180e81315',1,'boot.php']]], + ['zot_5fbuild_5fpacket',['zot_build_packet',['../zot_8php.html#a3862b3161b2c8557dc1a95020179bd81',1,'zot.php']]], + ['zot_5ffeed',['zot_feed',['../items_8php.html#a004e89d86b0f29b2c4da20108ecc4091',1,'items.php']]], + ['zot_5ffetch',['zot_fetch',['../zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea',1,'zot.php']]], + ['zot_5ffinger',['zot_finger',['../zot_8php.html#a77720d6b59894e9b609af89c310c8a4d',1,'zot.php']]], + ['zot_5fget_5fhubloc',['zot_get_hubloc',['../zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e',1,'zot.php']]], + ['zot_5fgethub',['zot_gethub',['../zot_8php.html#a55056e863a7860bc0cf922e78fcce073',1,'zot.php']]], + ['zot_5fimport',['zot_import',['../zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c',1,'zot.php']]], + ['zot_5fnew_5fuid',['zot_new_uid',['../zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7',1,'zot.php']]], + ['zot_5fnotify',['zot_notify',['../zot_8php.html#af22a8732e60d30055617a95f77493446',1,'zot.php']]], + ['zot_5fprocess_5fresponse',['zot_process_response',['../zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03',1,'zot.php']]], + ['zot_5frefresh',['zot_refresh',['../zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d',1,'zot.php']]], + ['zot_5fregister_5fhub',['zot_register_hub',['../zot_8php.html#a5bcdfef419b16075a0eca990956223dc',1,'zot.php']]], + ['zot_5fzot',['zot_zot',['../zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142',1,'zot.php']]], + ['zotfeed_5finit',['zotfeed_init',['../zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac',1,'zotfeed.php']]], + ['zperms_5finit',['zperms_init',['../zperms_8php.html#a2f698dcd51150bda3146425f038da628',1,'zperms.php']]] +]; diff --git a/doc/html/search/mag_sel.png b/doc/html/search/mag_sel.png new file mode 100644 index 000000000..81f6040a2 Binary files /dev/null and b/doc/html/search/mag_sel.png differ diff --git a/doc/html/search/namespaces_61.html b/doc/html/search/namespaces_61.html new file mode 100644 index 000000000..05b64569f --- /dev/null +++ b/doc/html/search/namespaces_61.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/namespaces_61.js b/doc/html/search/namespaces_61.js new file mode 100644 index 000000000..3e7051957 --- /dev/null +++ b/doc/html/search/namespaces_61.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['acl_5fselectors',['acl_selectors',['../namespaceacl__selectors.html',1,'']]] +]; diff --git a/doc/html/search/namespaces_66.html b/doc/html/search/namespaces_66.html new file mode 100644 index 000000000..eeb821dc9 --- /dev/null +++ b/doc/html/search/namespaces_66.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/namespaces_66.js b/doc/html/search/namespaces_66.js new file mode 100644 index 000000000..e9fe2106c --- /dev/null +++ b/doc/html/search/namespaces_66.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['friendica',['Friendica',['../namespaceFriendica.html',1,'']]], + ['friendica_2dto_2dsmarty_2dtpl',['friendica-to-smarty-tpl',['../namespacefriendica-to-smarty-tpl.html',1,'']]] +]; diff --git a/doc/html/search/namespaces_75.html b/doc/html/search/namespaces_75.html new file mode 100644 index 000000000..185eb0b07 --- /dev/null +++ b/doc/html/search/namespaces_75.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/namespaces_75.js b/doc/html/search/namespaces_75.js new file mode 100644 index 000000000..677307359 --- /dev/null +++ b/doc/html/search/namespaces_75.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['updatetpl',['updatetpl',['../namespaceupdatetpl.html',1,'']]], + ['util',['util',['../namespaceutil.html',1,'']]] +]; diff --git a/doc/html/search/nomatches.html b/doc/html/search/nomatches.html new file mode 100644 index 000000000..b1ded27e9 --- /dev/null +++ b/doc/html/search/nomatches.html @@ -0,0 +1,12 @@ + + + + + + + +
+
No Matches
+
+ + diff --git a/doc/html/search/pages_63.html b/doc/html/search/pages_63.html new file mode 100644 index 000000000..8a7aaf9e2 --- /dev/null +++ b/doc/html/search/pages_63.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/pages_63.js b/doc/html/search/pages_63.js new file mode 100644 index 000000000..85cc4ab15 --- /dev/null +++ b/doc/html/search/pages_63.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['cli_20config_20utility',['CLI config utility',['../md_config.html',1,'']]] +]; diff --git a/doc/html/search/pages_66.html b/doc/html/search/pages_66.html new file mode 100644 index 000000000..b5d700d10 --- /dev/null +++ b/doc/html/search/pages_66.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/pages_66.js b/doc/html/search/pages_66.js new file mode 100644 index 000000000..06d3bd4be --- /dev/null +++ b/doc/html/search/pages_66.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['fresh_20_2d_20the_20friendica_20red_20shell',['Fresh - The Friendica REd Shell',['../md_fresh.html',1,'']]] +]; diff --git a/doc/html/search/search.css b/doc/html/search/search.css new file mode 100644 index 000000000..5b208eddd --- /dev/null +++ b/doc/html/search/search.css @@ -0,0 +1,271 @@ +/*---------------- Search Box */ + +#FSearchBox { + float: left; +} + +#MSearchBox { + white-space : nowrap; + position: absolute; + float: none; + display: inline; + margin-top: 8px; + right: 0px; + width: 170px; + z-index: 102; + background-color: white; +} + +#MSearchBox .left +{ + display:block; + position:absolute; + left:10px; + width:20px; + height:19px; + background:url('search_l.png') no-repeat; + background-position:right; +} + +#MSearchSelect { + display:block; + position:absolute; + width:20px; + height:19px; +} + +.left #MSearchSelect { + left:4px; +} + +.right #MSearchSelect { + right:5px; +} + +#MSearchField { + display:block; + position:absolute; + height:19px; + background:url('search_m.png') repeat-x; + border:none; + width:116px; + margin-left:20px; + padding-left:4px; + color: #909090; + outline: none; + font: 9pt Arial, Verdana, sans-serif; +} + +#FSearchBox #MSearchField { + margin-left:15px; +} + +#MSearchBox .right { + display:block; + position:absolute; + right:10px; + top:0px; + width:20px; + height:19px; + background:url('search_r.png') no-repeat; + background-position:left; +} + +#MSearchClose { + display: none; + position: absolute; + top: 4px; + background : none; + border: none; + margin: 0px 4px 0px 0px; + padding: 0px 0px; + outline: none; +} + +.left #MSearchClose { + left: 6px; +} + +.right #MSearchClose { + right: 2px; +} + +.MSearchBoxActive #MSearchField { + color: #000000; +} + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #90A5CE; + background-color: #F9FAFC; + z-index: 1; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt Arial, Verdana, sans-serif; + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: monospace; + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: #000000; + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: #000000; + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: #FFFFFF; + background-color: #3D578C; + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + width: 60ex; + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #000; + background-color: #EEF1F7; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; + padding-bottom: 15px; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +body.SRPage { + margin: 5px 2px; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; +} + +.SRResult { + display: none; +} + +DIV.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.searchresult { + background-color: #F0F3F8; +} + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: url("../tab_a.png"); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/doc/html/search/search.js b/doc/html/search/search.js new file mode 100644 index 000000000..c6f56a0aa --- /dev/null +++ b/doc/html/search/search.js @@ -0,0 +1,807 @@ +// Search script generated by doxygen +// Copyright (C) 2009 by Dimitri van Heesch. + +// The code in this file is loosly based on main.js, part of Natural Docs, +// which is Copyright (C) 2003-2008 Greg Valure +// Natural Docs is licensed under the GPL. + +var indexSectionsWithContent = +{ + 0: "0000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000010111111111111111111111111010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 1: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111001000000100010000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 2: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 3: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010111111111001111111111111010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 4: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010111111111111111111111111010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 5: "0000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000101111111111111101111011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 6: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" +}; + +var indexSectionNames = +{ + 0: "all", + 1: "classes", + 2: "namespaces", + 3: "files", + 4: "functions", + 5: "variables", + 6: "pages" +}; + +function convertToId(search) +{ + var result = ''; + for (i=0;i do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var hexCode; + if (code<16) + { + hexCode="0"+code.toString(16); + } + else + { + hexCode=code.toString(16); + } + + var resultsPage; + var resultsPageWithSearch; + var hasResultsPage; + + if (indexSectionsWithContent[this.searchIndex].charAt(code) == '1') + { + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPageWithSearch = resultsPage+'?'+escape(searchValue); + hasResultsPage = true; + } + else // nothing available for this search term + { + resultsPage = this.resultsPath + '/nomatches.html'; + resultsPageWithSearch = resultsPage; + hasResultsPage = false; + } + + window.frames.MSearchResults.location = resultsPageWithSearch; + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + + if (domPopupSearchResultsWindow.style.display!='block') + { + var domSearchBox = this.DOMSearchBox(); + this.DOMSearchClose().style.display = 'inline'; + if (this.insideFrame) + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + domPopupSearchResultsWindow.style.position = 'relative'; + domPopupSearchResultsWindow.style.display = 'block'; + var width = document.body.clientWidth - 8; // the -8 is for IE :-( + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResults.style.width = width + 'px'; + } + else + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + } + } + + this.lastSearchValue = searchValue; + this.lastResultsPage = resultsPage; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + + var searchField = this.DOMSearchField(); + + if (searchField.value == this.searchLabel) // clear "Search" term upon entry + { + searchField.value = ''; + this.searchActive = true; + } + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.DOMSearchField().value = this.searchLabel; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of . + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName == 'DIV' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName == 'DIV' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + parent.document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults() +{ + var results = document.getElementById("SRResults"); + for (var e=0; e + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_24.js b/doc/html/search/variables_24.js new file mode 100644 index 000000000..25ef28a57 --- /dev/null +++ b/doc/html/search/variables_24.js @@ -0,0 +1,140 @@ +var searchData= +[ + ['_24a',['$a',['../db__update_8php.html#acebf83966ef6d7e5645a6b62ba368f9f',1,'$a(): db_update.php'],['../typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f',1,'$a(): typo.php']]], + ['_24account',['$account',['../classApp.html#a14bd4b1c29f3aff371fe5d4cb11aeea3',1,'App']]], + ['_24api',['$API',['../include_2api_8php.html#aeb2e7ad00ea666b4b6dfcf82008194f8',1,'api.php']]], + ['_24app',['$app',['../classBaseObject.html#a02cc4cd8fa26b6fc76d92fde54b4e4b1',1,'BaseObject']]], + ['_24apps',['$apps',['../classApp.html#a230e975296cf164da2fee35ef720964f',1,'App']]], + ['_24argc',['$argc',['../classApp.html#af58db526040829b1c8bd95561b329262',1,'App']]], + ['_24argv',['$argv',['../classApp.html#ab3da757abe5cb45bf88f07cc51a73b58',1,'App']]], + ['_24arr',['$arr',['../extract_8php.html#a63bb4c41bc532baacf6a4976cfaa0feb',1,'extract.php']]], + ['_24baseurl',['$baseurl',['../classApp.html#ad5175536561021548ae8188e24c7b80c',1,'App']]], + ['_24build',['$build',['../db__update_8php.html#a502b15db084ae270b52e03c8075916de',1,'db_update.php']]], + ['_24cached_5fprofile_5fimage',['$cached_profile_image',['../classApp.html#abe0e4fa91097f7a6588e1213a834121c',1,'App']]], + ['_24cached_5fprofile_5fpicdate',['$cached_profile_picdate',['../classApp.html#aab4a685d15a363bb1d7edbbc20bfb94e',1,'App']]], + ['_24called_5fapi',['$called_api',['../include_2api_8php.html#aa62b15a6bbb280e86b98132eb214013d',1,'api.php']]], + ['_24category',['$category',['../classApp.html#a5cfc098c061b7d765add58fd2ca97445',1,'App']]], + ['_24channel',['$channel',['../classApp.html#a050b0696118da47e8b30859ad1a2c149',1,'App\$channel()'],['../classItem.html#acc32426c0f465391be8a99ad810c7b8e',1,'Item\$channel()']]], + ['_24children',['$children',['../classItem.html#a80dcd0fb7673776c0967839d429c2a0f',1,'Item']]], + ['_24cid',['$cid',['../classApp.html#ad1c8eb91a6fd470b94f34b7fdad3a2d0',1,'App']]], + ['_24cmd',['$cmd',['../classApp.html#a495ec082c2719314e536070ca1ce073d',1,'App']]], + ['_24colour',['$colour',['../style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab',1,'style.php']]], + ['_24comment_5fbox_5ftemplate',['$comment_box_template',['../classItem.html#a90743c8348b13213275c223bb9333aa0',1,'Item']]], + ['_24commentable',['$commentable',['../classItem.html#aa2c221231ad0fc3720ccc1f00f0c6304',1,'Item']]], + ['_24config',['$config',['../classApp.html#ac73dc90e4764497e2f1b7e6612c8fb88',1,'App']]], + ['_24connected',['$connected',['../classdba.html#a986eb5c3bbd4c70801a9ddd2f8e5c561',1,'dba']]], + ['_24contact',['$contact',['../classApp.html#a98ef4cfd36693a3457c879b76bc6d694',1,'App']]], + ['_24contacts',['$contacts',['../classApp.html#a61ca6e3af82071ea25ff2fd5dbcddae2',1,'App']]], + ['_24content',['$content',['../classApp.html#ac1d80a14492acc932715d54567d8a589',1,'App']]], + ['_24conversation',['$conversation',['../classItem.html#a007424e3e3171dcfb4312a02161da6cd',1,'Item']]], + ['_24css_5fsources',['$css_sources',['../classApp.html#a6f55d087e1ff4710132c1b0863faa2ee',1,'App']]], + ['_24curl_5fcode',['$curl_code',['../classApp.html#a256360c9184fed6d7556e0bc0a835d7f',1,'App']]], + ['_24curl_5fheaders',['$curl_headers',['../classApp.html#af5007c42a693afd9c4899c243b2e1363',1,'App']]], + ['_24d',['$d',['../classTemplate.html#a8469ab2988b6be2681516dc4b4e07d38',1,'Template']]], + ['_24data',['$data',['../classApp.html#a0ce85be198e46570366cb3344f3c55b8',1,'App\$data()'],['../classItem.html#aec24e233f9098f902b1e57e60dcb2019',1,'Item\$data()']]], + ['_24db',['$db',['../classApp.html#a330410a288f3393d53772f5e98f857ea',1,'App\$db()'],['../classdba.html#ab57b3a4399f22ce5cdafbd3cd542a414',1,'dba\$db()'],['../db__update_8php.html#a1fa3127fc82f96b1436d871ef02be319',1,'$db(): db_update.php']]], + ['_24debug',['$debug',['../classdba.html#a4da56b3eb82ad26ba49ca5f97e1490cb',1,'dba\$debug()'],['../classTemplate.html#afc4afb6f89bebcd5480022312a56cb4a',1,'Template\$debug()']]], + ['_24dir',['$dir',['../docblox__errorchecker_8php.html#a1659f0a629d408e0f849dbe4ee061e62',1,'docblox_errorchecker.php']]], + ['_24dirs',['$dirs',['../typo_8php.html#a1b709c1d79631ebc8320b41bda028b54',1,'typo.php']]], + ['_24dirstack',['$dirstack',['../docblox__errorchecker_8php.html#ab66bc0493d25f39bf8b4dcbb429f04e6',1,'docblox_errorchecker.php']]], + ['_24displaystyle',['$displaystyle',['../style_8php.html#aa658152b727ea1233f6df6ded6437dad',1,'style.php']]], + ['_24done',['$done',['../classTemplate.html#abda4c8d049f70553338eae7c905e9d5c',1,'Template']]], + ['_24error',['$error',['../classApp.html#ac1a8b2cd40609b231a560201a08852ba',1,'App\$error()'],['../classdba.html#a6a1471c18c6530044d20db5d3532958b',1,'dba\$error()']]], + ['_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'],['../typo_8php.html#a9590b15215a21e9b42eb546aeef79704',1,'$files(): typo.php']]], + ['_24force_5fmax_5fitems',['$force_max_items',['../classApp.html#ae3f47830543d0d902f66913def8db66b',1,'App']]], + ['_24gc_5fprobability',['$gc_probability',['../session_8php.html#a5bf3e03ff4c47e26374e28dfd12f4897',1,'session.php']]], + ['_24groups',['$groups',['../classApp.html#ac6e6b1c7d6df408580ff79977fcfa656',1,'App']]], + ['_24height',['$height',['../classPhoto.html#a2b05906daa294e0c904aff0ba24b5bd3',1,'Photo']]], + ['_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']]], + ['_24identities',['$identities',['../classApp.html#a7954862f44f606b0ff83d4c74d15e792',1,'App']]], + ['_24image',['$image',['../classPhoto.html#aa09af89979e3e46c0c58989ee063d69d',1,'Photo']]], + ['_24imagick',['$imagick',['../classPhoto.html#a040b23beaab0c0db4311b31cae6b8106',1,'Photo']]], + ['_24infile',['$infile',['../php2po_8php.html#a61f8ddeb5557d46ebc546cc355bda214',1,'php2po.php']]], + ['_24ink',['$ink',['../php2po_8php.html#a6b0b8ebd9ce811d1325ef2c129443bc0',1,'php2po.php']]], + ['_24install_5fwizard_5fpass',['$install_wizard_pass',['../setup_8php.html#addb24714bc2542aa4f4215e98fe48432',1,'setup.php']]], + ['_24interactive',['$interactive',['../classApp.html#a4c7cfc62d39508086cf300dc2e39c4df',1,'App']]], + ['_24js_5fsources',['$js_sources',['../classApp.html#a11e24b3ed9b33ffee7dd41d110b4366d',1,'App']]], + ['_24k',['$k',['../php2po_8php.html#ad6726cfaa85d4b8299d2b0f034cbf178',1,'php2po.php']]], + ['_24lang',['$lang',['../classTemplate.html#ace26b8a4252fbc1c385d2b5e1e93e5c8',1,'Template\$lang()'],['../db__update_8php.html#a7714b111b644017933931ec69a154102',1,'$lang(): db_update.php']]], + ['_24language',['$language',['../classApp.html#a1a297e70b3667b83f4460aa7ed9f5d6f',1,'App']]], + ['_24ldelim',['$ldelim',['../classApp.html#a59dd4b665c70e7dbd80682c014ff7145',1,'App']]], + ['_24line_5fheight',['$line_height',['../style_8php.html#a4131d1765ee4deb28e83fc4527943ee0',1,'style.php']]], + ['_24linkcolour',['$linkcolour',['../style_8php.html#a6628a80911a6b37b464ef110ac8f6e42',1,'style.php']]], + ['_24mode',['$mode',['../classConversation.html#afb03d1648dbfafe62caa1e30f32f2b1a',1,'Conversation']]], + ['_24module',['$module',['../classApp.html#a9bf62f8e39585c0aa48fcffc3bf3484d',1,'App']]], + ['_24module_5floaded',['$module_loaded',['../classApp.html#a6e4f0fbfa3cf6c11baebe22a03db6165',1,'App']]], + ['_24mysqli',['$mysqli',['../classdba.html#ab5dcbd758d3f8fb84702c323cd85067e',1,'dba']]], + ['_24nav_5fbg_5f1',['$nav_bg_1',['../style_8php.html#a232513bf4339fe34908c4c63cb93168b',1,'style.php']]], + ['_24nav_5fbg_5f2',['$nav_bg_2',['../style_8php.html#a03a72942b7428fd9af1224770d20a8ba',1,'style.php']]], + ['_24nav_5fbg_5f3',['$nav_bg_3',['../style_8php.html#acc190405dda0a23a80551dee11c74c0c',1,'style.php']]], + ['_24nav_5fbg_5f4',['$nav_bg_4',['../style_8php.html#aef266cfcb27c6ddb3292584c945bab33',1,'style.php']]], + ['_24nav_5fsel',['$nav_sel',['../classApp.html#a33a8e90b60ec4438f6fbf299d0f6839c',1,'App']]], + ['_24navcolour',['$navcolour',['../style_8php.html#a938168352fd3cdaa1c10c16a34f5938a',1,'style.php']]], + ['_24needed',['$needed',['../docblox__errorchecker_8php.html#a852004caba0a34390297a079f4aaac73',1,'docblox_errorchecker.php']]], + ['_24nodes',['$nodes',['../classTemplate.html#a8f4d17e49f42b876a97364c13fb572d1',1,'Template']]], + ['_24observer',['$observer',['../classApp.html#a4ffe529fb14389f7fedf5fdc5f722e7f',1,'App\$observer()'],['../classItem.html#a379c8a156da092ad0be90a0d2fec3c0f',1,'Item\$observer()']]], + ['_24out',['$out',['../php2po_8php.html#a48cb304902320d173a4eaa41543327b9',1,'php2po.php']]], + ['_24owner_5fname',['$owner_name',['../classItem.html#a9594df6014b0b6f45364ea7a34510130',1,'Item']]], + ['_24owner_5fphoto',['$owner_photo',['../classItem.html#a078f95b4134ce3a1df344cf8d386f986',1,'Item']]], + ['_24owner_5furl',['$owner_url',['../classItem.html#afa54851df82962c7c42dea3cc9f5c92c',1,'Item']]], + ['_24page',['$page',['../classApp.html#a4b67935096f66d1f14b657399a8461ac',1,'App']]], + ['_24pager',['$pager',['../classApp.html#a6bcb19cdc4907077da72864686d5a780',1,'App']]], + ['_24parent',['$parent',['../classItem.html#a1a1e42877e6ac7af50286142ceb483d2',1,'Item']]], + ['_24path',['$path',['../classApp.html#acad5896b7a79ae31433ad8f89606c728',1,'App']]], + ['_24perms',['$perms',['../classApp.html#ab47de68fa39806d1fb0976407e188b77',1,'App']]], + ['_24phpath',['$phpath',['../typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd',1,'typo.php']]], + ['_24phpfile',['$phpfile',['../php2po_8php.html#abbb0e5fd8fbc1f13a9bf68f86eb3d2a4',1,'php2po.php']]], + ['_24plugins',['$plugins',['../classApp.html#ae9f96338f32187d308b67b980eea0008',1,'App']]], + ['_24pofile',['$pofile',['../php2po_8php.html#a401d84ce156e49e8168bd0c4781e1be1',1,'php2po.php']]], + ['_24preview',['$preview',['../classConversation.html#ae9937f9e0f3d927acc2bed46cc72e9ae',1,'Conversation']]], + ['_24profile',['$profile',['../classApp.html#a57d041fcc003d08c127dfa99a02bc192',1,'App']]], + ['_24profile_5fowner',['$profile_owner',['../classConversation.html#a2f12724ef0244e9049fe1bb9641b516d',1,'Conversation']]], + ['_24query_5fstring',['$query_string',['../classApp.html#a2e82da4aecfc2017a8d1d332ca501f9f',1,'App']]], + ['_24r',['$r',['../classTemplate.html#aac9a4638f11271e1b1dcc9f247242718',1,'Template']]], + ['_24rdelim',['$rdelim',['../classApp.html#a244b2d53b21be269aad2269d23192f95',1,'App']]], + ['_24redbasic_5ffont_5fsize',['$redbasic_font_size',['../style_8php.html#addf42c3d02e53f8e4153f3bb9dabfcda',1,'style.php']]], + ['_24redirect_5furl',['$redirect_url',['../classItem.html#a5b561415861f5b89b0733aacfe0428d1',1,'Item']]], + ['_24replace',['$replace',['../classTemplate.html#a4e86b566c3f728e95ce5db1b33665c10',1,'Template']]], + ['_24res',['$res',['../docblox__errorchecker_8php.html#a49a8a4009b02e49717caa88b128affc5',1,'docblox_errorchecker.php']]], + ['_24resolution',['$resolution',['../style_8php.html#adcfa918e05b5a98cbddc84bc3f1c15cc',1,'style.php']]], + ['_24s',['$s',['../extract_8php.html#a50b05cf2e02ef0b67fcad97106dd7634',1,'extract.php']]], + ['_24scheme',['$scheme',['../classApp.html#ad082d63acc078e5bf23825a03bdd6a76',1,'App']]], + ['_24search',['$search',['../classTemplate.html#a317d535946dc065c35dd5cd38380e6c6',1,'Template']]], + ['_24session_5fexists',['$session_exists',['../session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb',1,'session.php']]], + ['_24session_5fexpire',['$session_expire',['../session_8php.html#af0100a2642a5268594bbd5742a03d885',1,'session.php']]], + ['_24shadows',['$shadows',['../style_8php.html#acb3046ad9c01b7d60cde20f58d77c548',1,'style.php']]], + ['_24shiny',['$shiny',['../style_8php.html#a0b942d36d8862908864e2ffa4521be70',1,'style.php']]], + ['_24site_5fcolour',['$site_colour',['../style_8php.html#a02d39b683a42fffbb27823d3860283bd',1,'style.php']]], + ['_24site_5fline_5fheight',['$site_line_height',['../style_8php.html#a8749837e08dfb3372662af9c33fa2a2e',1,'style.php']]], + ['_24site_5fredbasic_5ffont_5fsize',['$site_redbasic_font_size',['../style_8php.html#a45e6fafa363bc4586fa91dce1786be4f',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']]], + ['_24t',['$t',['../template__processor_8php.html#a3d44ea1cbbc9bc72aad8436186c4866e',1,'template_processor.php']]], + ['_24template',['$template',['../classItem.html#a7f7bc059de377319282cb4ef4a828480',1,'Item']]], + ['_24theme',['$theme',['../classApp.html#a764cc6cd7578132c21d2b4545de9301c',1,'App']]], + ['_24theme_5finfo',['$theme_info',['../classApp.html#aeca29fd4f7192ca07369b3c598c36e67',1,'App']]], + ['_24theme_5fthread_5fallow',['$theme_thread_allow',['../classApp.html#a487332f8de40414ca1a54a4265570b70',1,'App']]], + ['_24threaded',['$threaded',['../classItem.html#a1cb6aa8abdf7ea7daca647e40c8ea3a2',1,'Item']]], + ['_24threads',['$threads',['../classConversation.html#a41f4a549e6a99f98935c4742addd22c8',1,'Conversation']]], + ['_24timezone',['$timezone',['../classApp.html#ab35b01a366a2ea95725e97af278f87ab',1,'App']]], + ['_24toplevel',['$toplevel',['../classItem.html#a5cfa6cf964f433a917a81cab079ff9d8',1,'Item']]], + ['_24type',['$type',['../classPhoto.html#af87e8ec7587bbcb28f91e7548f560695',1,'Photo']]], + ['_24types',['$types',['../classPhoto.html#a338d80512bdfeb6a6a00a9381d76de5f',1,'Photo']]], + ['_24user',['$user',['../classApp.html#a91fd3c8b89016113b05f3be24805ccff',1,'App']]], + ['_24valid',['$valid',['../classPhoto.html#a50e0b85ea8a3f724dd74366756669e61',1,'Photo']]], + ['_24videoheight',['$videoheight',['../classApp.html#a56b1a432c96aef8b1971f779c9d93c8c',1,'App']]], + ['_24videowidth',['$videowidth',['../classApp.html#adf2aaf95b062736a6fd5fc70fadf80e8',1,'App']]], + ['_24visiting',['$visiting',['../classItem.html#a4a123ae98987c1e30ecb15c4edf5a3b8',1,'Item']]], + ['_24wall_5fto_5fwall',['$wall_to_wall',['../classItem.html#a5d29ddecc073151a65a8e2ea2f6e4189',1,'Item']]], + ['_24widgetlist',['$widgetlist',['../classApp.html#a4833bee2eae4ad1691a04fa19e11a766',1,'App']]], + ['_24widgets',['$widgets',['../classApp.html#aa5a87c46ab3fee21362c466bf78042ef',1,'App']]], + ['_24width',['$width',['../classPhoto.html#af18778643b1f6c637d9d7f5abd561f11',1,'Photo']]], + ['_24writable',['$writable',['../classConversation.html#ae81221251307e315f566a11f921ce0a9',1,'Conversation\$writable()'],['../classItem.html#af514e893765deda92125ce84024d3ad5',1,'Item\$writable()']]], + ['_24zones',['$zones',['../extract_8php.html#a0cbe524ffc9a496114fd7ba9f423ef44',1,'extract.php']]] +]; diff --git a/doc/html/search/variables_61.html b/doc/html/search/variables_61.html new file mode 100644 index 000000000..a0de7a473 --- /dev/null +++ b/doc/html/search/variables_61.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_61.js b/doc/html/search/variables_61.js new file mode 100644 index 000000000..58172f5d8 --- /dev/null +++ b/doc/html/search/variables_61.js @@ -0,0 +1,45 @@ +var searchData= +[ + ['abook_5fflag_5farchived',['ABOOK_FLAG_ARCHIVED',['../boot_8php.html#a222395aa223cfbff6166fab0b4e2e1d5',1,'boot.php']]], + ['abook_5fflag_5fblocked',['ABOOK_FLAG_BLOCKED',['../boot_8php.html#a52b599cd13e152ebc80d7e4413683195',1,'boot.php']]], + ['abook_5fflag_5fhidden',['ABOOK_FLAG_HIDDEN',['../boot_8php.html#a34c756469ebed32e2fc987bcde62d382',1,'boot.php']]], + ['abook_5fflag_5fignored',['ABOOK_FLAG_IGNORED',['../boot_8php.html#aa3425e2de85b08f7041656d3a8502cb6',1,'boot.php']]], + ['abook_5fflag_5fpending',['ABOOK_FLAG_PENDING',['../boot_8php.html#a68eebe493e6f729ffd1aeda7a4b11155',1,'boot.php']]], + ['abook_5fflag_5fself',['ABOOK_FLAG_SELF',['../boot_8php.html#a0450389f24c632906fbc24347700a543',1,'boot.php']]], + ['access_5ftoken_5fduration',['ACCESS_TOKEN_DURATION',['../oauth_8php.html#ad343cab37aa860d2d14dc86b7f5ca0c6',1,'oauth.php']]], + ['account_5fblocked',['ACCOUNT_BLOCKED',['../boot_8php.html#af3bdfc20979c16f15bb9c60446a480f9',1,'boot.php']]], + ['account_5fexpired',['ACCOUNT_EXPIRED',['../boot_8php.html#a400519fa181591cd6fdbb8f25fbcba0a',1,'boot.php']]], + ['account_5fok',['ACCOUNT_OK',['../boot_8php.html#a84057c5bfa1bca5fba8497fe005ee4d8',1,'boot.php']]], + ['account_5fpending',['ACCOUNT_PENDING',['../boot_8php.html#a032bbd6d0321e99e9117332c9ed2b1b8',1,'boot.php']]], + ['account_5fremoved',['ACCOUNT_REMOVED',['../boot_8php.html#ab5ddbe69d3d03acd06e1fb281488cb78',1,'boot.php']]], + ['account_5frole_5fadmin',['ACCOUNT_ROLE_ADMIN',['../boot_8php.html#ac8400313df2c831653f9036f71ebd86d',1,'boot.php']]], + ['account_5funverified',['ACCOUNT_UNVERIFIED',['../boot_8php.html#af3a4271630aabd8be592213f925d6a36',1,'boot.php']]], + ['activity_5fdislike',['ACTIVITY_DISLIKE',['../boot_8php.html#a0e57f846e6d47a308feced0f7274f178',1,'boot.php']]], + ['activity_5ffavorite',['ACTIVITY_FAVORITE',['../boot_8php.html#a3e2ea123d29a72012db1241f96280b0e',1,'boot.php']]], + ['activity_5ffollow',['ACTIVITY_FOLLOW',['../boot_8php.html#a5ae728ac966ea1d3525a19e7fec59434',1,'boot.php']]], + ['activity_5ffriend',['ACTIVITY_FRIEND',['../boot_8php.html#a176664e78dcb9132e16be69418223eb2',1,'boot.php']]], + ['activity_5fjoin',['ACTIVITY_JOIN',['../boot_8php.html#aced60c7285192e80b7c4757e45a7f1e3',1,'boot.php']]], + ['activity_5flike',['ACTIVITY_LIKE',['../boot_8php.html#abdcdfc873ace4e0902177bad934de0c0',1,'boot.php']]], + ['activity_5fmood',['ACTIVITY_MOOD',['../boot_8php.html#a7aa57438db03834aaa0b468bdce773a6',1,'boot.php']]], + ['activity_5fobj_5falbum',['ACTIVITY_OBJ_ALBUM',['../boot_8php.html#aaf9b76832ee5f85e56466af162ba8a14',1,'boot.php']]], + ['activity_5fobj_5fcomment',['ACTIVITY_OBJ_COMMENT',['../boot_8php.html#a0a98dd0110dc6c8e24cefc8ae74d5562',1,'boot.php']]], + ['activity_5fobj_5fevent',['ACTIVITY_OBJ_EVENT',['../boot_8php.html#a2e90096fede6acce16abf0da8cb2febe',1,'boot.php']]], + ['activity_5fobj_5fgroup',['ACTIVITY_OBJ_GROUP',['../boot_8php.html#a7bff2278e68a71e524afd1c7c951e1e3',1,'boot.php']]], + ['activity_5fobj_5fheart',['ACTIVITY_OBJ_HEART',['../boot_8php.html#ad302cb26b838898d475f57f61b0fcc9f',1,'boot.php']]], + ['activity_5fobj_5fnote',['ACTIVITY_OBJ_NOTE',['../boot_8php.html#a44d069c8a1cfcc6d2007c506a17ff28f',1,'boot.php']]], + ['activity_5fobj_5fp_5fphoto',['ACTIVITY_OBJ_P_PHOTO',['../boot_8php.html#a74bf27f7564c9a37975e7b37d973dcab',1,'boot.php']]], + ['activity_5fobj_5fperson',['ACTIVITY_OBJ_PERSON',['../boot_8php.html#a2f8f25b13480c37a5f22511f53da8bab',1,'boot.php']]], + ['activity_5fobj_5fphoto',['ACTIVITY_OBJ_PHOTO',['../boot_8php.html#a774f0f792ebfec1e774c5a17bb9d5966',1,'boot.php']]], + ['activity_5fobj_5fprofile',['ACTIVITY_OBJ_PROFILE',['../boot_8php.html#a62c832a95e38b1fa23e6cef39521b7d5',1,'boot.php']]], + ['activity_5fobj_5ftagterm',['ACTIVITY_OBJ_TAGTERM',['../boot_8php.html#a1da180f961f49a11573cac4ff6c62c05',1,'boot.php']]], + ['activity_5fpoke',['ACTIVITY_POKE',['../boot_8php.html#a14ba8f9e162f2559831ee3bf98e0c3bd',1,'boot.php']]], + ['activity_5fpost',['ACTIVITY_POST',['../boot_8php.html#a5c3747e0f505f0d5271dc4c54e3feaf4',1,'boot.php']]], + ['activity_5freq_5ffriend',['ACTIVITY_REQ_FRIEND',['../boot_8php.html#afe084c30a1810c10442edb4fbcbc0086',1,'boot.php']]], + ['activity_5ftag',['ACTIVITY_TAG',['../boot_8php.html#a12c781cefc20167231e2e3fd5866b1b5',1,'boot.php']]], + ['activity_5funfollow',['ACTIVITY_UNFOLLOW',['../boot_8php.html#a53e4bdb6f225da55115acb9277f75e53',1,'boot.php']]], + ['activity_5funfriend',['ACTIVITY_UNFRIEND',['../boot_8php.html#a29528a2544373cc19a378f350040c6a1',1,'boot.php']]], + ['activity_5fupdate',['ACTIVITY_UPDATE',['../boot_8php.html#a7f4264232dbb6c3b41f2617deecb1866',1,'boot.php']]], + ['atom_5ftime',['ATOM_TIME',['../boot_8php.html#ad34c1547020a305915bcc39707744690',1,'boot.php']]], + ['attach_5fflag_5fdir',['ATTACH_FLAG_DIR',['../boot_8php.html#aa74438cf71e48e37bf7b440b94243985',1,'boot.php']]], + ['attach_5fflag_5fos',['ATTACH_FLAG_OS',['../boot_8php.html#a781916f83fcc8ff1035649afa45f0292',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_63.html b/doc/html/search/variables_63.html new file mode 100644 index 000000000..422085c12 --- /dev/null +++ b/doc/html/search/variables_63.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_63.js b/doc/html/search/variables_63.js new file mode 100644 index 000000000..f349b911b --- /dev/null +++ b/doc/html/search/variables_63.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['contact_5fis_5ffollower',['CONTACT_IS_FOLLOWER',['../boot_8php.html#ada72d88ae39a7e3b45baea201cb49a29',1,'boot.php']]], + ['contact_5fis_5ffriend',['CONTACT_IS_FRIEND',['../boot_8php.html#a27299ecfb9e9a99826f17a1c14c6995f',1,'boot.php']]], + ['contact_5fis_5fsharing',['CONTACT_IS_SHARING',['../boot_8php.html#a6c5e9e293c8242dcb9bc2c3ea2fee2c9',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_64.html b/doc/html/search/variables_64.html new file mode 100644 index 000000000..df4414b92 --- /dev/null +++ b/doc/html/search/variables_64.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_64.js b/doc/html/search/variables_64.js new file mode 100644 index 000000000..2c0187ed0 --- /dev/null +++ b/doc/html/search/variables_64.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['db_5fupdate_5fversion',['DB_UPDATE_VERSION',['../boot_8php.html#ac59a18a4838710d6c2de37aed6b21f03',1,'boot.php']]], + ['default_5fdb_5fengine',['DEFAULT_DB_ENGINE',['../boot_8php.html#aa8a2b61e70900139d1ca28e46f1da49d',1,'boot.php']]], + ['directory_5ffallback_5fmaster',['DIRECTORY_FALLBACK_MASTER',['../boot_8php.html#abedd940e664017c61b48c6efa31d0cb8',1,'boot.php']]], + ['directory_5fmode_5fnormal',['DIRECTORY_MODE_NORMAL',['../boot_8php.html#ab7d65a7e7417825a4db62906bb600729',1,'boot.php']]], + ['directory_5fmode_5fprimary',['DIRECTORY_MODE_PRIMARY',['../boot_8php.html#a8a60cc38bb567765fd926fef70205f16',1,'boot.php']]], + ['directory_5fmode_5fsecondary',['DIRECTORY_MODE_SECONDARY',['../boot_8php.html#aedfb9501ed408278667995524e0d15cf',1,'boot.php']]], + ['directory_5fmode_5fstandalone',['DIRECTORY_MODE_STANDALONE',['../boot_8php.html#a25476eec71fceda237f7dc1d78b0adb8',1,'boot.php']]], + ['directory_5frealm',['DIRECTORY_REALM',['../boot_8php.html#a6b9909db6a7ec80ec6fdd40ba74014dd',1,'boot.php']]], + ['do',['do',['../docblox__errorchecker_8php.html#a721c6ff80a6d3e4ad4ffa52a04c60085',1,'docblox_errorchecker.php']]] +]; diff --git a/doc/html/search/variables_65.html b/doc/html/search/variables_65.html new file mode 100644 index 000000000..38eb9f67f --- /dev/null +++ b/doc/html/search/variables_65.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_65.js b/doc/html/search/variables_65.js new file mode 100644 index 000000000..d9931aa28 --- /dev/null +++ b/doc/html/search/variables_65.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['else',['else',['../auth_8php.html#a0950af7c2888ca1d4743fe5d0bff9ae5',1,'else(): auth.php'],['../fpostit_8php.html#a501b5ca82f287509fc691c88524064c1',1,'else(): fpostit.php']]], + ['eol',['EOL',['../boot_8php.html#a0603d6ece8c5d37b4b7db697db053a4b',1,'boot.php']]], + ['eot',['EOT',['../typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805',1,'typohelper.php']]], + ['excludepaths',['excludepaths',['../namespaceupdatetpl.html#a988d937ed5d5c2b592b763036af5cf94',1,'updatetpl']]], + ['ext',['ext',['../namespacefriendica-to-smarty-tpl.html#aecf730e0884bb4ddc6c0deb1ef85f8eb',1,'friendica-to-smarty-tpl']]] +]; diff --git a/doc/html/search/variables_66.html b/doc/html/search/variables_66.html new file mode 100644 index 000000000..6e1863868 --- /dev/null +++ b/doc/html/search/variables_66.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_66.js b/doc/html/search/variables_66.js new file mode 100644 index 000000000..0428e4aa6 --- /dev/null +++ b/doc/html/search/variables_66.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['f',['f',['../namespacefriendica-to-smarty-tpl.html#a965e1d6d6293654a56e029a7e454dec7',1,'friendica-to-smarty-tpl']]], + ['filename',['filename',['../namespacefriendica-to-smarty-tpl.html#a5f9bf7a67d955c0d6be70a82097611c5',1,'friendica-to-smarty-tpl']]], + ['files',['files',['../namespacefriendica-to-smarty-tpl.html#ae74419b16516956c66f7db714a93a6ac',1,'friendica-to-smarty-tpl']]], + ['fnull',['fnull',['../namespaceupdatetpl.html#a79c20eb62d568c999b56eb08530355d3',1,'updatetpl']]], + ['foreach',['foreach',['../typo_8php.html#a3bb638ebb8472e4ee7c85afe721f4fe3',1,'typo.php']]], + ['friendica_5fplatform',['FRIENDICA_PLATFORM',['../boot_8php.html#a7a27d05ec84f9eef2f06097e6b8892f3',1,'boot.php']]], + ['friendica_5fversion',['FRIENDICA_VERSION',['../boot_8php.html#a78d5f284dc096b2a739c1fa47f22b7be',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_67.html b/doc/html/search/variables_67.html new file mode 100644 index 000000000..8a1f3d9e5 --- /dev/null +++ b/doc/html/search/variables_67.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_67.js b/doc/html/search/variables_67.js new file mode 100644 index 000000000..cf66f0cdb --- /dev/null +++ b/doc/html/search/variables_67.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['gravity_5fcomment',['GRAVITY_COMMENT',['../boot_8php.html#a4a12ce5de39789b0361e308d89925a20',1,'boot.php']]], + ['gravity_5flike',['GRAVITY_LIKE',['../boot_8php.html#a1f5906598e90b5ea2b4245f682be4348',1,'boot.php']]], + ['gravity_5fparent',['GRAVITY_PARENT',['../boot_8php.html#a2af173e4e9836ee7c90757b4793a2be3',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_68.html b/doc/html/search/variables_68.html new file mode 100644 index 000000000..2f0a862b9 --- /dev/null +++ b/doc/html/search/variables_68.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_68.js b/doc/html/search/variables_68.js new file mode 100644 index 000000000..8341c06e1 --- /dev/null +++ b/doc/html/search/variables_68.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['hubloc_5fflags_5fprimary',['HUBLOC_FLAGS_PRIMARY',['../boot_8php.html#a3ad9cc5d4354be741fa1de12b96e9955',1,'boot.php']]], + ['hubloc_5fflags_5funverified',['HUBLOC_FLAGS_UNVERIFIED',['../boot_8php.html#ab54b24cc302e1a42a67a49d788b6b764',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_69.html b/doc/html/search/variables_69.html new file mode 100644 index 000000000..44c2cd1ee --- /dev/null +++ b/doc/html/search/variables_69.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_69.js b/doc/html/search/variables_69.js new file mode 100644 index 000000000..d8c86a4fe --- /dev/null +++ b/doc/html/search/variables_69.js @@ -0,0 +1,23 @@ +var searchData= +[ + ['if',['if',['../php2po_8php.html#a45b05625748f412ec97afcd61cf7980b',1,'if(): php2po.php'],['../default_8php.html#a23bc1996b18e69c1a3ab44536613a762',1,'if(): default.php'],['../full_8php.html#a6fac1b4b8cdfde06ea1b7713479e92db',1,'if(): full.php'],['../style_8php.html#a0a473a25349f07563d6c56d14031f02a',1,'if(): style.php']]], + ['item_5fblocked',['ITEM_BLOCKED',['../boot_8php.html#ab28dc518fa90b6f617dd8c564eb4f35f',1,'boot.php']]], + ['item_5fdeleted',['ITEM_DELETED',['../boot_8php.html#a3515ea6bf77495de89b93e9ccd881c49',1,'boot.php']]], + ['item_5fhidden',['ITEM_HIDDEN',['../boot_8php.html#ac99fc4d040764eac1736bec6973556fe',1,'boot.php']]], + ['item_5fmentionsme',['ITEM_MENTIONSME',['../boot_8php.html#a8da836617174eed9fc2ac8054125354b',1,'boot.php']]], + ['item_5fmoderated',['ITEM_MODERATED',['../boot_8php.html#ac01230c7655e0705b2e99c9bc03c4450',1,'boot.php']]], + ['item_5fnotshown',['ITEM_NOTSHOWN',['../boot_8php.html#a8663f32171568489dbb2a01dd00371f8',1,'boot.php']]], + ['item_5fnsfw',['ITEM_NSFW',['../boot_8php.html#a939de9a99278f4fd7dcd0ee67f243f08',1,'boot.php']]], + ['item_5forigin',['ITEM_ORIGIN',['../boot_8php.html#a8c9dce0ef27b35397e29298eb966f7f7',1,'boot.php']]], + ['item_5frelay',['ITEM_RELAY',['../boot_8php.html#a2958a2bd5422b85329d7c36c06dbc221',1,'boot.php']]], + ['item_5fspam',['ITEM_SPAM',['../boot_8php.html#a40d885b2cfd736aab4234ae641ca4dfb',1,'boot.php']]], + ['item_5fstarred',['ITEM_STARRED',['../boot_8php.html#a7af107fab8d62b9a73801713b774ed30',1,'boot.php']]], + ['item_5fthread_5ftop',['ITEM_THREAD_TOP',['../boot_8php.html#a749144d8dd9c1366596a0213c277d050',1,'boot.php']]], + ['item_5funpublished',['ITEM_UNPUBLISHED',['../boot_8php.html#adaeb4f590c56326b2dca3b19f31b6272',1,'boot.php']]], + ['item_5funseen',['ITEM_UNSEEN',['../boot_8php.html#a009e6a0637cb65804ea8094ecc4450b0',1,'boot.php']]], + ['item_5fuplink',['ITEM_UPLINK',['../boot_8php.html#aefba06f1c0842036329033e7567ecf6d',1,'boot.php']]], + ['item_5fuplink_5fprv',['ITEM_UPLINK_PRV',['../boot_8php.html#aad33b494084f729b6ee3b0bc457718a1',1,'boot.php']]], + ['item_5fvisible',['ITEM_VISIBLE',['../boot_8php.html#ab55b16ae7fc19fafe5afaedd49163bbf',1,'boot.php']]], + ['item_5fwall',['ITEM_WALL',['../boot_8php.html#a6788e99021ec8ffb0fa94d651f22a322',1,'boot.php']]], + ['item_5fwebpage',['ITEM_WEBPAGE',['../boot_8php.html#af489d0c3166551b93e63a79ff2c9be35',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_6a.html b/doc/html/search/variables_6a.html new file mode 100644 index 000000000..e87ecc409 --- /dev/null +++ b/doc/html/search/variables_6a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_6a.js b/doc/html/search/variables_6a.js new file mode 100644 index 000000000..43e76e798 --- /dev/null +++ b/doc/html/search/variables_6a.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['jpeg_5fquality',['JPEG_QUALITY',['../boot_8php.html#a3475ff6c2e575f946ea0ee377e944173',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_6b.html b/doc/html/search/variables_6b.html new file mode 100644 index 000000000..d1001a969 --- /dev/null +++ b/doc/html/search/variables_6b.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_6b.js b/doc/html/search/variables_6b.js new file mode 100644 index 000000000..dd6ee4759 --- /dev/null +++ b/doc/html/search/variables_6b.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['key_5fnot_5fexists',['KEY_NOT_EXISTS',['../template__processor_8php.html#a797745996c7839a93b2ab1af456631ab',1,'template_processor.php']]] +]; diff --git a/doc/html/search/variables_6c.html b/doc/html/search/variables_6c.html new file mode 100644 index 000000000..8d08e812e --- /dev/null +++ b/doc/html/search/variables_6c.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_6c.js b/doc/html/search/variables_6c.js new file mode 100644 index 000000000..9540ea4f0 --- /dev/null +++ b/doc/html/search/variables_6c.js @@ -0,0 +1,11 @@ +var searchData= +[ + ['language_5fdetect_5fmin_5fconfidence',['LANGUAGE_DETECT_MIN_CONFIDENCE',['../boot_8php.html#a68d1d5bc9c7ccb663dc671b48c66df11',1,'boot.php']]], + ['language_5fdetect_5fmin_5flength',['LANGUAGE_DETECT_MIN_LENGTH',['../boot_8php.html#a17cf72338b040891781a4bcbdd9a8595',1,'boot.php']]], + ['ldelim',['ldelim',['../namespacefriendica-to-smarty-tpl.html#a0b4cf73d1a8d201a28d269eeb62a5d5c',1,'friendica-to-smarty-tpl']]], + ['logger_5fall',['LOGGER_ALL',['../boot_8php.html#afe63ae69ba55299f813766e54df06ede',1,'boot.php']]], + ['logger_5fdata',['LOGGER_DATA',['../boot_8php.html#a6969947145a139ec374ce098224d8e81',1,'boot.php']]], + ['logger_5fdebug',['LOGGER_DEBUG',['../boot_8php.html#a93823d15ae07548a4c49de88d325cd26',1,'boot.php']]], + ['logger_5fnormal',['LOGGER_NORMAL',['../boot_8php.html#a17b4ea23d9ecf628d9c8f53b7abcb805',1,'boot.php']]], + ['logger_5ftrace',['LOGGER_TRACE',['../boot_8php.html#a022cea669f9f13ef7c6268b63884c57f',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_6d.html b/doc/html/search/variables_6d.html new file mode 100644 index 000000000..1b8f1a83a --- /dev/null +++ b/doc/html/search/variables_6d.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_6d.js b/doc/html/search/variables_6d.js new file mode 100644 index 000000000..f467fe2aa --- /dev/null +++ b/doc/html/search/variables_6d.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['mail_5fdeleted',['MAIL_DELETED',['../boot_8php.html#ad0876e837cf3fad8a26417e315f6e2c8',1,'boot.php']]], + ['mail_5fisreply',['MAIL_ISREPLY',['../boot_8php.html#aa544a6c078130d0967a1f4ed8ce0a2d2',1,'boot.php']]], + ['mail_5freplied',['MAIL_REPLIED',['../boot_8php.html#aa3679df31c8dad1b71816b0322d5baff',1,'boot.php']]], + ['mail_5fseen',['MAIL_SEEN',['../boot_8php.html#a1fbb93cf030f07391f22cc2948744869',1,'boot.php']]], + ['max_5fimage_5flength',['MAX_IMAGE_LENGTH',['../boot_8php.html#a525ca93ff35d3535d1a2b8ba57876afa',1,'boot.php']]], + ['max_5flikers',['MAX_LIKERS',['../boot_8php.html#a35625dacd2158b9f1f1a8e77f9f081fd',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_6e.html b/doc/html/search/variables_6e.html new file mode 100644 index 000000000..2eb4def97 --- /dev/null +++ b/doc/html/search/variables_6e.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_6e.js b/doc/html/search/variables_6e.js new file mode 100644 index 000000000..cf8c2728f --- /dev/null +++ b/doc/html/search/variables_6e.js @@ -0,0 +1,45 @@ +var searchData= +[ + ['n',['n',['../php2po_8php.html#a1594a11499d06cc8a789ee7ca0c7a12b',1,'php2po.php']]], + ['names',['names',['../namespaceupdatetpl.html#ab42dd79af65ee82201fd6f04715f62f6',1,'updatetpl']]], + ['namespace_5factivity',['NAMESPACE_ACTIVITY',['../boot_8php.html#a5df5359090d1f8e898c36d7cf8878ad2',1,'boot.php']]], + ['namespace_5factivity_5fschema',['NAMESPACE_ACTIVITY_SCHEMA',['../boot_8php.html#a7b8f8ad9dbe82711257d23891ef6b133',1,'boot.php']]], + ['namespace_5fatom1',['NAMESPACE_ATOM1',['../boot_8php.html#a444ce608ce34efb82ee11852f36e825f',1,'boot.php']]], + ['namespace_5fdfrn',['NAMESPACE_DFRN',['../boot_8php.html#a7ed4581ab66ebcde97f6b3730856b028',1,'boot.php']]], + ['namespace_5ffeed',['NAMESPACE_FEED',['../boot_8php.html#ac195fc9003298923ea81f144388e24b1',1,'boot.php']]], + ['namespace_5fgeorss',['NAMESPACE_GEORSS',['../boot_8php.html#a03d19251c245587de7ed959300b87bdf',1,'boot.php']]], + ['namespace_5fmedia',['NAMESPACE_MEDIA',['../boot_8php.html#a6626f383c3d2d459f731ab8b4f237d16',1,'boot.php']]], + ['namespace_5fostatus',['NAMESPACE_OSTATUS',['../boot_8php.html#acca19aae62e1a6951a856b945de20d67',1,'boot.php']]], + ['namespace_5fostatussub',['NAMESPACE_OSTATUSSUB',['../boot_8php.html#a181c111f4b6c14d091dfd3bf0d0a22cd',1,'boot.php']]], + ['namespace_5fpoco',['NAMESPACE_POCO',['../boot_8php.html#a0b73e2548d6f9beb9c93211f488e336a',1,'boot.php']]], + ['namespace_5fsalmon_5fme',['NAMESPACE_SALMON_ME',['../boot_8php.html#aee324eca9de4e0fedf01ab5f92e27c67',1,'boot.php']]], + ['namespace_5fstatusnet',['NAMESPACE_STATUSNET',['../boot_8php.html#afaf93b7026f784b113b4f8921745891e',1,'boot.php']]], + ['namespace_5fthread',['NAMESPACE_THREAD',['../boot_8php.html#a1d6e7f4c08bb68e4a424326a811bdd86',1,'boot.php']]], + ['namespace_5ftomb',['NAMESPACE_TOMB',['../boot_8php.html#a4bfe22e163657690dfb6d5b1d04cb47e',1,'boot.php']]], + ['namespace_5fzot',['NAMESPACE_ZOT',['../boot_8php.html#a49f2a70b3b43aa904223a8d19e986a47',1,'boot.php']]], + ['network_5fdfrn',['NETWORK_DFRN',['../boot_8php.html#ae3cef7b63e25e7bafea3fcf6b99fad0e',1,'boot.php']]], + ['network_5fdiaspora',['NETWORK_DIASPORA',['../boot_8php.html#a38f6c7fe33b5434a24b4314567753dfa',1,'boot.php']]], + ['network_5ffacebook',['NETWORK_FACEBOOK',['../boot_8php.html#af3905ea8f8568d0236db13fca40514e3',1,'boot.php']]], + ['network_5ffeed',['NETWORK_FEED',['../boot_8php.html#ab4bddb41a0cf407178ec5278b950c393',1,'boot.php']]], + ['network_5fgplus',['NETWORK_GPLUS',['../boot_8php.html#a8905fde0a5b7882bdc083b20d9b34701',1,'boot.php']]], + ['network_5flinkedin',['NETWORK_LINKEDIN',['../boot_8php.html#a5b043b7fdcfd4e8c9c3747574afc6caa',1,'boot.php']]], + ['network_5fmail',['NETWORK_MAIL',['../boot_8php.html#a7236b2cdcf59f02a42302e893a99013b',1,'boot.php']]], + ['network_5fmail2',['NETWORK_MAIL2',['../boot_8php.html#aa17a4f9c63f5cbc5c06f1066b6aebc42',1,'boot.php']]], + ['network_5fmyspace',['NETWORK_MYSPACE',['../boot_8php.html#ae94f7c7c0909629a75aed1c41f10bc95',1,'boot.php']]], + ['network_5fostatus',['NETWORK_OSTATUS',['../boot_8php.html#aef4b6c558c68c88c10f13c5a00c20e3d',1,'boot.php']]], + ['network_5fphantom',['NETWORK_PHANTOM',['../boot_8php.html#ab21fb0f3e6b962419955c6fc7f26734f',1,'boot.php']]], + ['network_5fxmpp',['NETWORK_XMPP',['../boot_8php.html#a43296b1b4398aacbf92a4b2d56bab91e',1,'boot.php']]], + ['network_5fzot',['NETWORK_ZOT',['../boot_8php.html#a2c65e925994566a63e6c03c381f1b4a0',1,'boot.php']]], + ['newfilename',['newfilename',['../namespacefriendica-to-smarty-tpl.html#ad9ef87ccb2c9960501f5e02424a22d80',1,'friendica-to-smarty-tpl']]], + ['notify_5fcomment',['NOTIFY_COMMENT',['../boot_8php.html#a20f0eed431d25870b624b8937a07a59f',1,'boot.php']]], + ['notify_5fconfirm',['NOTIFY_CONFIRM',['../boot_8php.html#af8c0cb0744c9a6b5d6d3baafb1f1e71d',1,'boot.php']]], + ['notify_5fintro',['NOTIFY_INTRO',['../boot_8php.html#a56fd673eaa7014150297ce1162502db5',1,'boot.php']]], + ['notify_5fmail',['NOTIFY_MAIL',['../boot_8php.html#a285732e7889fa7f333cbe431111e1029',1,'boot.php']]], + ['notify_5fpoke',['NOTIFY_POKE',['../boot_8php.html#aca08bc4f1554ba877500f6abcc99e1e8',1,'boot.php']]], + ['notify_5fprofile',['NOTIFY_PROFILE',['../boot_8php.html#a981d46380f9f23c308bac1f9cb00dc5b',1,'boot.php']]], + ['notify_5fsuggest',['NOTIFY_SUGGEST',['../boot_8php.html#a9d01ef178b72b145016cca1393415bc4',1,'boot.php']]], + ['notify_5fsystem',['NOTIFY_SYSTEM',['../boot_8php.html#a14d44d4a00223dc3db4ea962325db192',1,'boot.php']]], + ['notify_5ftagself',['NOTIFY_TAGSELF',['../boot_8php.html#ab724491497ab2618b23a01d5da60aec0',1,'boot.php']]], + ['notify_5ftagshare',['NOTIFY_TAGSHARE',['../boot_8php.html#af6937db5f581d006bf4a5c3d9c7e0461',1,'boot.php']]], + ['notify_5fwall',['NOTIFY_WALL',['../boot_8php.html#a505410c7edc5f5bb5fa227b98359793e',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_6f.html b/doc/html/search/variables_6f.html new file mode 100644 index 000000000..f06e2e0f4 --- /dev/null +++ b/doc/html/search/variables_6f.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_6f.js b/doc/html/search/variables_6f.js new file mode 100644 index 000000000..f7979a46a --- /dev/null +++ b/doc/html/search/variables_6f.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['outf',['outf',['../namespacefriendica-to-smarty-tpl.html#a87182a9bab47640428bd0b2b9946bef9',1,'friendica-to-smarty-tpl']]], + ['outpath',['outpath',['../namespacefriendica-to-smarty-tpl.html#a005c1b7a69cac31fad72a941974ba7bb',1,'friendica-to-smarty-tpl']]] +]; diff --git a/doc/html/search/variables_70.html b/doc/html/search/variables_70.html new file mode 100644 index 000000000..439d152f5 --- /dev/null +++ b/doc/html/search/variables_70.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_70.js b/doc/html/search/variables_70.js new file mode 100644 index 000000000..05291261e --- /dev/null +++ b/doc/html/search/variables_70.js @@ -0,0 +1,34 @@ +var searchData= +[ + ['page',['page',['../mod__import_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page(): mod_import.php'],['../mod__new__channel_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page(): mod_new_channel.php'],['../mod__register_8php.html#a8db1899eeeb44dabd0904065b63627bb',1,'page(): mod_register.php']]], + ['page_5fapplication',['PAGE_APPLICATION',['../boot_8php.html#a8231d115060d41a9c2a677f2c86f10ed',1,'boot.php']]], + ['page_5fautoconnect',['PAGE_AUTOCONNECT',['../boot_8php.html#aa275653b9c87abc7391bb8040c1c2de9',1,'boot.php']]], + ['page_5fhidden',['PAGE_HIDDEN',['../boot_8php.html#a5e322a2a2d0f51924c0b2e874988e640',1,'boot.php']]], + ['page_5fnormal',['PAGE_NORMAL',['../boot_8php.html#a09532c3f750ae8c4527e63b2b790cbf3',1,'boot.php']]], + ['page_5fremoved',['PAGE_REMOVED',['../boot_8php.html#a4edce16cb7f21cdafa1e85bf63d713e6',1,'boot.php']]], + ['path',['path',['../namespacefriendica-to-smarty-tpl.html#a68d15934660cd1f4301ce251b1646f09',1,'friendica-to-smarty-tpl.path()'],['../namespaceupdatetpl.html#ae694f5e1f25f8a92a945eb90c432dfe6',1,'updatetpl.path()']]], + ['perms_5fa_5fdelegate',['PERMS_A_DELEGATE',['../boot_8php.html#a423505ab8dbd8e39d04ae3fe1374102b',1,'boot.php']]], + ['perms_5fcontacts',['PERMS_CONTACTS',['../boot_8php.html#ab2d0e8a9b81ee548ef2ce8e4560da2f6',1,'boot.php']]], + ['perms_5fnetwork',['PERMS_NETWORK',['../boot_8php.html#a6df1102664f64b274810db85197c2755',1,'boot.php']]], + ['perms_5fpublic',['PERMS_PUBLIC',['../boot_8php.html#aff210e8403dd72368522b17fb6e5d4e7',1,'boot.php']]], + ['perms_5fr_5fabook',['PERMS_R_ABOOK',['../boot_8php.html#a3d6d4fc5fafcc9156811669158541caf',1,'boot.php']]], + ['perms_5fr_5fpages',['PERMS_R_PAGES',['../boot_8php.html#ab51965fabe54dc031e9a0ce1142ee83e',1,'boot.php']]], + ['perms_5fr_5fphotos',['PERMS_R_PHOTOS',['../boot_8php.html#a29e921c0c72412cc738e44cca6ca1f62',1,'boot.php']]], + ['perms_5fr_5fprofile',['PERMS_R_PROFILE',['../boot_8php.html#ad789aef3cb95fc1eb36be7c4283d0137',1,'boot.php']]], + ['perms_5fr_5fstorage',['PERMS_R_STORAGE',['../boot_8php.html#a1db4f0009c9cb4e107eab0f914a3c8dc',1,'boot.php']]], + ['perms_5fr_5fstream',['PERMS_R_STREAM',['../boot_8php.html#aec36f8fcd4cb14a52934590b3d6666b4',1,'boot.php']]], + ['perms_5fsite',['PERMS_SITE',['../boot_8php.html#a9ff652e5cb83cd11cbb0350844e7b28f',1,'boot.php']]], + ['perms_5fspecific',['PERMS_SPECIFIC',['../boot_8php.html#a9cc986b4f9dd6558cbb2e25aadbfd964',1,'boot.php']]], + ['perms_5fw_5fchat',['PERMS_W_CHAT',['../boot_8php.html#acd877c405b06b348b37b6f7e62a211e9',1,'boot.php']]], + ['perms_5fw_5fcomment',['PERMS_W_COMMENT',['../boot_8php.html#a32df13fec0e43281da5979e1f5579aa8',1,'boot.php']]], + ['perms_5fw_5fmail',['PERMS_W_MAIL',['../boot_8php.html#a6b31dd451bc6c37fe7c9c766ff385aaf',1,'boot.php']]], + ['perms_5fw_5fpages',['PERMS_W_PAGES',['../boot_8php.html#aa9244fc9cc221980c07a20cc534111be',1,'boot.php']]], + ['perms_5fw_5fphotos',['PERMS_W_PHOTOS',['../boot_8php.html#a57eee7352714c004d36c26dda74af73e',1,'boot.php']]], + ['perms_5fw_5fstorage',['PERMS_W_STORAGE',['../boot_8php.html#a4fefd7486d3b888a05cfd3dc9575f115',1,'boot.php']]], + ['perms_5fw_5fstream',['PERMS_W_STREAM',['../boot_8php.html#a8bb0395933b5e886f086f6a2fb0bfa55',1,'boot.php']]], + ['perms_5fw_5ftagwall',['PERMS_W_TAGWALL',['../boot_8php.html#a99a4a17cb644e7e6826ea07ecaf09777',1,'boot.php']]], + ['perms_5fw_5fwall',['PERMS_W_WALL',['../boot_8php.html#a6b14a31a8aa9f3452a13383f413bffa2',1,'boot.php']]], + ['php_5ftpl',['php_tpl',['../namespacefriendica-to-smarty-tpl.html#a5dfc21ab8282dda8e3a7dff43cd0e283',1,'friendica-to-smarty-tpl']]], + ['png_5fquality',['PNG_QUALITY',['../boot_8php.html#a8df201788c9dd0ca91384e3a14c08bce',1,'boot.php']]], + ['probe_5fnormal',['PROBE_NORMAL',['../Scrape_8php.html#aa6b0bdcf6e8f9d44e699fd94d2207c98',1,'Scrape.php']]] +]; diff --git a/doc/html/search/variables_72.html b/doc/html/search/variables_72.html new file mode 100644 index 000000000..8a4ee7bb3 --- /dev/null +++ b/doc/html/search/variables_72.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_72.js b/doc/html/search/variables_72.js new file mode 100644 index 000000000..b27402713 --- /dev/null +++ b/doc/html/search/variables_72.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['random_5fstring_5fhex',['RANDOM_STRING_HEX',['../text_8php.html#a5bb69d560e9d8a9acc8778eba6cf2f4e',1,'text.php']]], + ['random_5fstring_5ftext',['RANDOM_STRING_TEXT',['../text_8php.html#a2ffd79c60cc87cec24ef76447b905187',1,'text.php']]], + ['rdelim',['rdelim',['../namespacefriendica-to-smarty-tpl.html#a8540514fb7c4aa18ad2dffa2a975036b',1,'friendica-to-smarty-tpl']]], + ['register_5fapprove',['REGISTER_APPROVE',['../boot_8php.html#a7176c0f9f1c98421b97735d892cf6252',1,'boot.php']]], + ['register_5fclosed',['REGISTER_CLOSED',['../boot_8php.html#a69aac276ed82e010dc382b16ab4d59e1',1,'boot.php']]], + ['register_5fopen',['REGISTER_OPEN',['../boot_8php.html#ad8887b49bbb02dd30b4eb9f6c7773c63',1,'boot.php']]], + ['request_5ftoken_5fduration',['REQUEST_TOKEN_DURATION',['../oauth_8php.html#a7a32a5990f113ac9465b03b29175cf16',1,'oauth.php']]] +]; diff --git a/doc/html/search/variables_73.html b/doc/html/search/variables_73.html new file mode 100644 index 000000000..388a6d74b --- /dev/null +++ b/doc/html/search/variables_73.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_73.js b/doc/html/search/variables_73.js new file mode 100644 index 000000000..380434573 --- /dev/null +++ b/doc/html/search/variables_73.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['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/variables_74.html b/doc/html/search/variables_74.html new file mode 100644 index 000000000..1665fb806 --- /dev/null +++ b/doc/html/search/variables_74.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_74.js b/doc/html/search/variables_74.js new file mode 100644 index 000000000..722feef72 --- /dev/null +++ b/doc/html/search/variables_74.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['term_5fcategory',['TERM_CATEGORY',['../boot_8php.html#af33d1b2e98a1e21af672005525d46dfe',1,'boot.php']]], + ['term_5ffile',['TERM_FILE',['../boot_8php.html#afb97615e985a013799839b68b99018d7',1,'boot.php']]], + ['term_5fhashtag',['TERM_HASHTAG',['../boot_8php.html#a2750985ec445617d7e82ae3098c91e3f',1,'boot.php']]], + ['term_5fmention',['TERM_MENTION',['../boot_8php.html#ae37444eaa42705185080ccf3e670cbc2',1,'boot.php']]], + ['term_5fobj_5fphoto',['TERM_OBJ_PHOTO',['../boot_8php.html#a64617d4655804de2a3c86501ab4fdbfd',1,'boot.php']]], + ['term_5fobj_5fpost',['TERM_OBJ_POST',['../boot_8php.html#a9eeb8989272d5ff804a616898bb13659',1,'boot.php']]], + ['term_5fpcategory',['TERM_PCATEGORY',['../boot_8php.html#a45b12aefab9675baffc7a07a09486db8',1,'boot.php']]], + ['term_5fsavedsearch',['TERM_SAVEDSEARCH',['../boot_8php.html#abd7bb40da9cc073297e49736b338ca07',1,'boot.php']]], + ['term_5funknown',['TERM_UNKNOWN',['../boot_8php.html#a0c59dde058efebbc66520d136cbd1631',1,'boot.php']]], + ['theme_5finfo',['theme_info',['../test_2php_2theme_8php.html#ae74b5c3ec259b616b5137f6cfc591fb5',1,'theme.php']]], + ['tplpaths',['tplpaths',['../namespaceupdatetpl.html#a52a85ffa6b6d63d840b185a133478c12',1,'updatetpl']]] +]; diff --git a/doc/html/search/variables_75.html b/doc/html/search/variables_75.html new file mode 100644 index 000000000..7850aec50 --- /dev/null +++ b/doc/html/search/variables_75.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_75.js b/doc/html/search/variables_75.js new file mode 100644 index 000000000..940c28990 --- /dev/null +++ b/doc/html/search/variables_75.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['update_5ffailed',['UPDATE_FAILED',['../boot_8php.html#a75fc600186b13c3b25e661afefb5eac8',1,'boot.php']]], + ['update_5fsuccess',['UPDATE_SUCCESS',['../boot_8php.html#ac86615ddc0763a00f5311c90e991730c',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_77.html b/doc/html/search/variables_77.html new file mode 100644 index 000000000..434c6df9e --- /dev/null +++ b/doc/html/search/variables_77.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_77.js b/doc/html/search/variables_77.js new file mode 100644 index 000000000..59eb7ded7 --- /dev/null +++ b/doc/html/search/variables_77.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['while',['while',['../docblox__errorchecker_8php.html#af4ca738a05beffe9c8c23e1f7aea3c2d',1,'docblox_errorchecker.php']]] +]; diff --git a/doc/html/search/variables_78.html b/doc/html/search/variables_78.html new file mode 100644 index 000000000..602e87995 --- /dev/null +++ b/doc/html/search/variables_78.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_78.js b/doc/html/search/variables_78.js new file mode 100644 index 000000000..70c46d827 --- /dev/null +++ b/doc/html/search/variables_78.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['xchan_5fflags_5fhidden',['XCHAN_FLAGS_HIDDEN',['../boot_8php.html#a1af3ed96de14aa0d7891b39cc75b60f2',1,'boot.php']]] +]; diff --git a/doc/html/search/variables_7a.html b/doc/html/search/variables_7a.html new file mode 100644 index 000000000..8a5710483 --- /dev/null +++ b/doc/html/search/variables_7a.html @@ -0,0 +1,26 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/doc/html/search/variables_7a.js b/doc/html/search/variables_7a.js new file mode 100644 index 000000000..c1d257f75 --- /dev/null +++ b/doc/html/search/variables_7a.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['zcurl_5ftimeout',['ZCURL_TIMEOUT',['../boot_8php.html#a3cd42a70c6b3999590e4fd7a1a9096af',1,'boot.php']]], + ['zot_5frevision',['ZOT_REVISION',['../boot_8php.html#a36b31575f992a10b5927b76efba9362e',1,'boot.php']]] +]; diff --git a/doc/html/search_8php.html b/doc/html/search_8php.html new file mode 100644 index 000000000..2778b52c7 --- /dev/null +++ b/doc/html/search_8php.html @@ -0,0 +1,202 @@ + + + + + + +The Red Project: mod/search.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
search.php File Reference
+
+
+ + + + + + + + + + +

+Functions

 search_saved_searches ()
 
 search_init (&$a)
 
 search_post (&$a)
 
 search_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
search_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
search_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
search_post ($a)
+
+ +
+
+ +
+
+ + + + + + + +
search_saved_searches ()
+
+ +

Referenced by search_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/search_8php.js b/doc/html/search_8php.js new file mode 100644 index 000000000..c678b6c74 --- /dev/null +++ b/doc/html/search_8php.js @@ -0,0 +1,7 @@ +var search_8php = +[ + [ "search_content", "search_8php.html#a9f726b45d369bd7f94f5be4d0c99636f", null ], + [ "search_init", "search_8php.html#acf19fd30f07f495781ca0d7a0a08b435", null ], + [ "search_post", "search_8php.html#a230ec9681ddee3b5b8b40c8d550f32f7", null ], + [ "search_saved_searches", "search_8php.html#aa911f7c7f0cdb0284e35d0ed610f19c6", null ] +]; \ No newline at end of file diff --git a/doc/html/search__ac_8php.html b/doc/html/search__ac_8php.html new file mode 100644 index 000000000..188965d3c --- /dev/null +++ b/doc/html/search__ac_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/search_ac.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
search_ac.php File Reference
+
+
+ + + + +

+Functions

 search_ac_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
search_ac_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/search__ac_8php.js b/doc/html/search__ac_8php.js new file mode 100644 index 000000000..27ce8db46 --- /dev/null +++ b/doc/html/search__ac_8php.js @@ -0,0 +1,4 @@ +var search__ac_8php = +[ + [ "search_ac_init", "search__ac_8php.html#a14f90c83a3f2be095e9e2992a8d66138", null ] +]; \ No newline at end of file diff --git a/doc/html/security_8php.html b/doc/html/security_8php.html new file mode 100644 index 000000000..4805bbc8d --- /dev/null +++ b/doc/html/security_8php.html @@ -0,0 +1,452 @@ + + + + + + +The Red Project: include/security.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
security.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 authenticate_success ($user_record, $login_initial=false, $interactive=false, $return=false, $update_lastlog=false)
 
 change_channel ($change_channel)
 
 permissions_sql ($owner_id, $remote_verified=false, $groups=null)
 
 item_permissions_sql ($owner_id, $remote_verified=false, $groups=null)
 
 public_permissions_sql ($observer_hash)
 
 get_form_security_token ($typename= '')
 
 check_form_security_token ($typename= '', $formname= 'form_security_token')
 
 check_form_security_std_err_msg ()
 
 check_form_security_token_redirectOnErr ($err_redirect, $typename= '', $formname= 'form_security_token')
 
 check_form_security_token_ForbiddenOnErr ($typename= '', $formname= 'form_security_token')
 
if(!function_exists('init_groups_visitor')) stream_perms_api_uids ($perms_min=PERMS_SITE)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
authenticate_success ( $user_record,
 $login_initial = false,
 $interactive = false,
 $return = false,
 $update_lastlog = false 
)
+
+ +

Referenced by api_login(), and register_post().

+ +
+
+ +
+
+ + + + + + + + +
change_channel ( $change_channel)
+
+
+ +
+
+ + + + + + + +
check_form_security_std_err_msg ()
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
check_form_security_token ( $typename = '',
 $formname = 'form_security_token' 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
check_form_security_token_ForbiddenOnErr ( $typename = '',
 $formname = 'form_security_token' 
)
+
+ +

Referenced by group_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
check_form_security_token_redirectOnErr ( $err_redirect,
 $typename = '',
 $formname = 'form_security_token' 
)
+
+
+ +
+
+ + + + + + + + +
get_form_security_token ( $typename = '')
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
item_permissions_sql ( $owner_id,
 $remote_verified = false,
 $groups = null 
)
+
+

Construct permissions

+

default permissions - anonymous user

+

Profile owner - everything is visible

+

Authenticated visitor. Unless pre-verified, check that the contact belongs to this $owner_id and load the groups the visitor belongs to. If pre-verified, the caller is expected to have already done this and passed the groups into this function.

+ +

Referenced by channel_content(), and zot_feed().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
permissions_sql ( $owner_id,
 $remote_verified = false,
 $groups = null 
)
+
+

Construct permissions

+

default permissions - anonymous user

+

Profile owner - everything is visible

+

Authenticated visitor. Unless pre-verified, check that the contact belongs to this $owner_id and load the groups the visitor belongs to. If pre-verified, the caller is expected to have already done this and passed the groups into this function.

+ +

Referenced by attach_by_hash(), attach_by_hash_nodata(), attach_count_files(), attach_list_files(), photo_init(), photos_albums_list(), and photos_content().

+ +
+
+ +
+
+ + + + + + + + +
public_permissions_sql ( $observer_hash)
+
+ +

Referenced by display_content().

+ +
+
+ +
+
+ + + + + + + + +
if (!function_exists('init_groups_visitor')) stream_perms_api_uids ( $perms_min = PERMS_SITE)
+
+
+
+
+ + + + diff --git a/doc/html/security_8php.js b/doc/html/security_8php.js new file mode 100644 index 000000000..f31abc14a --- /dev/null +++ b/doc/html/security_8php.js @@ -0,0 +1,14 @@ +var security_8php = +[ + [ "authenticate_success", "security_8php.html#adc7bf51e3b8d67bd80e9348f9ab03733", null ], + [ "change_channel", "security_8php.html#a8d23d2597aae380a3341872fe9513380", null ], + [ "check_form_security_std_err_msg", "security_8php.html#a20f8b9851f23ee8894b8925584ef6821", null ], + [ "check_form_security_token", "security_8php.html#a9c6180e82150a5a9af91a1255d096b5c", null ], + [ "check_form_security_token_ForbiddenOnErr", "security_8php.html#a444ac867dfa8c37cf0a7a226412bee28", null ], + [ "check_form_security_token_redirectOnErr", "security_8php.html#a77ba0d1889a39cf32434c5ce96fe1433", null ], + [ "get_form_security_token", "security_8php.html#acd06ef411116115c2f0a92633700db8a", null ], + [ "item_permissions_sql", "security_8php.html#a9355488460ab11d6058656ff919e5cf9", null ], + [ "permissions_sql", "security_8php.html#afa683bc025a1d2fe9065e2f6cd71a22f", null ], + [ "public_permissions_sql", "security_8php.html#ab3bdd30dc60d9ee72370b866aa4a2d01", null ], + [ "stream_perms_api_uids", "security_8php.html#ae92c5c1a1cbbc49ddbb8b3265d2db809", null ] +]; \ No newline at end of file diff --git a/doc/html/session_8php.html b/doc/html/session_8php.html new file mode 100644 index 000000000..ec9dcc6be --- /dev/null +++ b/doc/html/session_8php.html @@ -0,0 +1,176 @@ + + + + + + +The Red Project: include/session.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
session.php File Reference
+
+
+ + + + + + + + +

+Variables

 $session_exists = 0
 
 $session_expire = 180000
 
if(!function_exists('ref_session_open'))
+if(!function_exists('ref_session_read'))
+if(!function_exists('ref_session_write'))
+if(!function_exists('ref_session_close'))
+if(!function_exists('ref_session_destroy'))
+if(!function_exists('ref_session_gc')) 
$gc_probability = 50
 
+

Variable Documentation

+ +
+
+ + + + +
if (!function_exists('ref_session_open')) if (!function_exists('ref_session_read')) if (!function_exists('ref_session_write')) if (!function_exists('ref_session_close')) if (!function_exists('ref_session_destroy')) if (!function_exists('ref_session_gc')) $gc_probability = 50
+
+ +
+
+ +
+
+ + + + +
$session_exists = 0
+
+ +
+
+ +
+
+ + + + +
$session_expire = 180000
+
+ +
+
+
+
+ + + + diff --git a/doc/html/session_8php.js b/doc/html/session_8php.js new file mode 100644 index 000000000..d8a97f1ca --- /dev/null +++ b/doc/html/session_8php.js @@ -0,0 +1,6 @@ +var session_8php = +[ + [ "$gc_probability", "session_8php.html#a5bf3e03ff4c47e26374e28dfd12f4897", null ], + [ "$session_exists", "session_8php.html#a62e4a6cb26b4bb1b8ddd8277b26090eb", null ], + [ "$session_expire", "session_8php.html#af0100a2642a5268594bbd5742a03d885", null ] +]; \ No newline at end of file diff --git a/doc/html/settings_8php.html b/doc/html/settings_8php.html new file mode 100644 index 000000000..d13d8802d --- /dev/null +++ b/doc/html/settings_8php.html @@ -0,0 +1,185 @@ + + + + + + +The Red Project: mod/settings.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
settings.php File Reference
+
+
+ + + + + + + + +

+Functions

 get_theme_config_file ($theme)
 
 settings_aside (&$a)
 
 settings_post (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
get_theme_config_file ( $theme)
+
+ +

Referenced by settings_post().

+ +
+
+ +
+
+ + + + + + + + +
settings_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
settings_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/settings_8php.js b/doc/html/settings_8php.js new file mode 100644 index 000000000..70a9d56c3 --- /dev/null +++ b/doc/html/settings_8php.js @@ -0,0 +1,6 @@ +var settings_8php = +[ + [ "get_theme_config_file", "settings_8php.html#a39abc76ff5459c57e3b957664f273f18", null ], + [ "settings_aside", "settings_8php.html#ae5aebccb006bee1300078576baaf5582", null ], + [ "settings_post", "settings_8php.html#aa7ee94d88ac088edb04ccf3a26de3586", null ] +]; \ No newline at end of file diff --git a/doc/html/setup_8php.html b/doc/html/setup_8php.html new file mode 100644 index 000000000..941e9b4d4 --- /dev/null +++ b/doc/html/setup_8php.html @@ -0,0 +1,489 @@ + + + + + + +The Red Project: mod/setup.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
setup.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 setup_init (&$a)
 
 setup_post (&$a)
 
 get_db_errno ()
 
 setup_content (&$a)
 
 check_add (&$checks, $title, $status, $required, $help)
 
 check_php (&$phpath, &$checks)
 
 check_keys (&$checks)
 
 check_funcs (&$checks)
 
 check_htconfig (&$checks)
 
 check_smarty3 (&$checks)
 
 check_htaccess (&$checks)
 
 manual_config (&$a)
 
 load_database_rem ($v, $i)
 
 load_database ($db)
 
 what_next ()
 
+ + + +

+Variables

 $install_wizard_pass =1
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
check_add ($checks,
 $title,
 $status,
 $required,
 $help 
)
+
+

checks : array passed to template title : string status : boolean required : boolean help : string optional

+ +

Referenced by check_funcs(), check_htaccess(), check_htconfig(), check_keys(), check_php(), and check_smarty3().

+ +
+
+ +
+
+ + + + + + + + +
check_funcs ($checks)
+
+ +

Referenced by setup_content().

+ +
+
+ +
+
+ + + + + + + + +
check_htaccess ($checks)
+
+ +

Referenced by setup_content().

+ +
+
+ +
+
+ + + + + + + + +
check_htconfig ($checks)
+
+ +

Referenced by setup_content().

+ +
+
+ +
+
+ + + + + + + + +
check_keys ($checks)
+
+ +

Referenced by setup_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
check_php ($phpath,
$checks 
)
+
+ +

Referenced by setup_content().

+ +
+
+ +
+
+ + + + + + + + +
check_smarty3 ($checks)
+
+ +

Referenced by setup_content().

+ +
+
+ +
+
+ + + + + + + +
get_db_errno ()
+
+ +

Referenced by setup_post().

+ +
+
+ +
+
+ + + + + + + + +
load_database ( $db)
+
+ +

Referenced by setup_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
load_database_rem ( $v,
 $i 
)
+
+ +
+
+ +
+
+ + + + + + + + +
manual_config ($a)
+
+ +

Referenced by setup_content().

+ +
+
+ +
+
+ + + + + + + + +
setup_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
setup_init ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
setup_post ($a)
+
+ +
+
+ +
+
+ + + + + + + +
what_next ()
+
+ +

Referenced by setup_content().

+ +
+
+

Variable Documentation

+ +
+
+ + + + +
$install_wizard_pass =1
+
+ +

Referenced by setup_content(), setup_init(), and setup_post().

+ +
+
+
+
+ + + + diff --git a/doc/html/setup_8php.js b/doc/html/setup_8php.js new file mode 100644 index 000000000..386036b13 --- /dev/null +++ b/doc/html/setup_8php.js @@ -0,0 +1,19 @@ +var setup_8php = +[ + [ "check_add", "setup_8php.html#ae8e4d9279a61de74d5f39962cb7b6ca1", null ], + [ "check_funcs", "setup_8php.html#a69a450e06dd3771fb51d3e4b0266a35e", null ], + [ "check_htaccess", "setup_8php.html#a0c3f3b671381f6dccd924b8ecdfc56c4", null ], + [ "check_htconfig", "setup_8php.html#a5ad92c0857d1dadd6b60a9a557159c9f", null ], + [ "check_keys", "setup_8php.html#aa3bbb111780da70ba35cc23a306f2c76", null ], + [ "check_php", "setup_8php.html#a14d208682a88632290c895d20da6e7d6", null ], + [ "check_smarty3", "setup_8php.html#afd8b0b3ade1507c45325caf377bf459d", null ], + [ "get_db_errno", "setup_8php.html#a8652788e8589778c5f81634a9d5b9429", null ], + [ "load_database", "setup_8php.html#ad2e0375a9ab87ebe6e78124ee125054a", null ], + [ "load_database_rem", "setup_8php.html#a2b375ddc555140236fc500135de99371", null ], + [ "manual_config", "setup_8php.html#abe405d227ba7232971964a706d4f3bce", null ], + [ "setup_content", "setup_8php.html#a88247384a96e14516f474d7af6a465c1", null ], + [ "setup_init", "setup_8php.html#a267555abd17290e659b4bf44b885e4e0", null ], + [ "setup_post", "setup_8php.html#a13cf286774149a0a7bd8adb8179cec75", null ], + [ "what_next", "setup_8php.html#aea1ebdda58ec938f4e7b31aa5c5f6b58", null ], + [ "$install_wizard_pass", "setup_8php.html#addb24714bc2542aa4f4215e98fe48432", null ] +]; \ No newline at end of file diff --git a/doc/html/share_8php.html b/doc/html/share_8php.html new file mode 100644 index 000000000..2985a2bd9 --- /dev/null +++ b/doc/html/share_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/share.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
share.php File Reference
+
+
+ + + + +

+Functions

 share_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
share_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/share_8php.js b/doc/html/share_8php.js new file mode 100644 index 000000000..6f63d2afc --- /dev/null +++ b/doc/html/share_8php.js @@ -0,0 +1,4 @@ +var share_8php = +[ + [ "share_init", "share_8php.html#afeb26046bdd02567ecd29ab5f188b249", null ] +]; \ No newline at end of file diff --git a/doc/html/siteinfo_8php.html b/doc/html/siteinfo_8php.html new file mode 100644 index 000000000..92136a4f1 --- /dev/null +++ b/doc/html/siteinfo_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/siteinfo.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
siteinfo.php File Reference
+
+
+ + + + + + +

+Functions

 siteinfo_init (&$a)
 
 siteinfo_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
siteinfo_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
siteinfo_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/siteinfo_8php.js b/doc/html/siteinfo_8php.js new file mode 100644 index 000000000..f293cd4f6 --- /dev/null +++ b/doc/html/siteinfo_8php.js @@ -0,0 +1,5 @@ +var siteinfo_8php = +[ + [ "siteinfo_content", "siteinfo_8php.html#a70c09bfb6dd1c86a125a35f62ed53656", null ], + [ "siteinfo_init", "siteinfo_8php.html#a3efbd0bd6564af19ec0a9ce0294e59d0", null ] +]; \ No newline at end of file diff --git a/doc/html/smilies_8php.html b/doc/html/smilies_8php.html new file mode 100644 index 000000000..dc560cde8 --- /dev/null +++ b/doc/html/smilies_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/smilies.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
smilies.php File Reference
+
+
+ + + + +

+Functions

 smilies_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
smilies_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/smilies_8php.js b/doc/html/smilies_8php.js new file mode 100644 index 000000000..dc1c06b09 --- /dev/null +++ b/doc/html/smilies_8php.js @@ -0,0 +1,4 @@ +var smilies_8php = +[ + [ "smilies_content", "smilies_8php.html#ab43b1e9f33a700a830aff14c7b3a617f", null ] +]; \ No newline at end of file diff --git a/doc/html/socgraph_8php.html b/doc/html/socgraph_8php.html new file mode 100644 index 000000000..30b89186a --- /dev/null +++ b/doc/html/socgraph_8php.html @@ -0,0 +1,434 @@ + + + + + + +The Red Project: include/socgraph.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
socgraph.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + +

+Functions

 poco_load ($xchan=null, $url=null)
 
 count_common_friends ($uid, $xchan)
 
 common_friends ($uid, $xchan, $start=0, $limit=100000000, $shuffle=false)
 
 count_common_friends_zcid ($uid, $zcid)
 
 common_friends_zcid ($uid, $zcid, $start=0, $limit=9999, $shuffle=false)
 
 count_all_friends ($uid, $cid)
 
 all_friends ($uid, $cid, $start=0, $limit=80)
 
 suggestion_query ($uid, $start=0, $limit=80)
 
 update_suggestions ()
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
all_friends ( $uid,
 $cid,
 $start = 0,
 $limit = 80 
)
+
+ +

Referenced by allfriends_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
common_friends ( $uid,
 $xchan,
 $start = 0,
 $limit = 100000000,
 $shuffle = false 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
common_friends_zcid ( $uid,
 $zcid,
 $start = 0,
 $limit = 9999,
 $shuffle = false 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
count_all_friends ( $uid,
 $cid 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
count_common_friends ( $uid,
 $xchan 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
count_common_friends_zcid ( $uid,
 $zcid 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
poco_load ( $xchan = null,
 $url = null 
)
+
+ +

Referenced by onepoll_run(), and update_suggestions().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
suggestion_query ( $uid,
 $start = 0,
 $limit = 80 
)
+
+ +

Referenced by suggest_content().

+ +
+
+ +
+
+ + + + + + + +
update_suggestions ()
+
+ +
+
+
+
+ + + + diff --git a/doc/html/socgraph_8php.js b/doc/html/socgraph_8php.js new file mode 100644 index 000000000..bb8f9d3f2 --- /dev/null +++ b/doc/html/socgraph_8php.js @@ -0,0 +1,12 @@ +var socgraph_8php = +[ + [ "all_friends", "socgraph_8php.html#a16ac51c505d72987ed8d6d6aed0e8586", null ], + [ "common_friends", "socgraph_8php.html#a7d34cd58025bcd9e575282f44db75918", null ], + [ "common_friends_zcid", "socgraph_8php.html#ac343a846241d36cdf046b08f3396cfe9", null ], + [ "count_all_friends", "socgraph_8php.html#af29d056beec10b4e38e5209c92452894", null ], + [ "count_common_friends", "socgraph_8php.html#a887d576f21fd708132a06d0f72f90f84", null ], + [ "count_common_friends_zcid", "socgraph_8php.html#af175807406d94407a5e11742a3287746", null ], + [ "poco_load", "socgraph_8php.html#aad9ee2421fd1ca405b241e8ed72d9aca", null ], + [ "suggestion_query", "socgraph_8php.html#aab445ff14a151fda2efbabde65faf134", null ], + [ "update_suggestions", "socgraph_8php.html#a790690bb1a1d02483fe31632a160144d", null ] +]; \ No newline at end of file diff --git a/doc/html/starred_8php.html b/doc/html/starred_8php.html new file mode 100644 index 000000000..d856ba540 --- /dev/null +++ b/doc/html/starred_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/starred.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
starred.php File Reference
+
+
+ + + + +

+Functions

 starred_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
starred_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/starred_8php.js b/doc/html/starred_8php.js new file mode 100644 index 000000000..328089950 --- /dev/null +++ b/doc/html/starred_8php.js @@ -0,0 +1,4 @@ +var starred_8php = +[ + [ "starred_init", "starred_8php.html#a63024fb418c678e49fd535e3752d349a", null ] +]; \ No newline at end of file diff --git a/doc/html/style_8php.html b/doc/html/style_8php.html new file mode 100644 index 000000000..39f7d139c --- /dev/null +++ b/doc/html/style_8php.html @@ -0,0 +1,387 @@ + + + + + + +The Red Project: view/theme/redbasic/php/style.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
style.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Variables

 $line_height = false
 
 $redbasic_font_size = false
 
 $resolution = false
 
 $colour = false
 
 $shadows = false
 
 $navcolour = false
 
 $nav_bg_1 = "f88"
 
 $nav_bg_2 = "b00"
 
 $nav_bg_3 = "f00"
 
 $nav_bg_4 = "b00"
 
 $displaystyle = false
 
 $linkcolour = false
 
 $shiny = false
 
 $site_line_height = get_config("redbasic","line_height")
 
 $site_redbasic_font_size = get_config("redbasic", "font_size" )
 
 $site_colour = get_config("redbasic", "colour" )
 
if(local_user()) if($line_height===false)
+if($line_height===false) if($redbasic_font_size===false)
+if($redbasic_font_size===false)
+if($colour===false) if($colour===false)
+if($navcolour==="black") 
if (file_exists('view/theme/'.current_theme(). '/css/style.css'))
 
+

Variable Documentation

+ +
+
+ + + + +
$colour = false
+
+ +

Referenced by redbasic_form(), and theme_content().

+ +
+
+ +
+
+ + + + +
$displaystyle = false
+
+ +

Referenced by redbasic_form(), and theme_content().

+ +
+
+ +
+
+ + + + +
$line_height = false
+
+ +

Referenced by redbasic_form(), and theme_content().

+ +
+
+ +
+
+ + + + +
$linkcolour = false
+
+ +

Referenced by redbasic_form(), and theme_content().

+ +
+
+ +
+
+ + + + +
$nav_bg_1 = "f88"
+
+ +
+
+ +
+
+ + + + +
$nav_bg_2 = "b00"
+
+ +
+
+ +
+
+ + + + +
$nav_bg_3 = "f00"
+
+ +
+
+ +
+
+ + + + +
$nav_bg_4 = "b00"
+
+ +
+
+ +
+
+ + + + +
$navcolour = false
+
+ +

Referenced by redbasic_form(), and theme_content().

+ +
+
+ +
+
+ + + + +
$redbasic_font_size = false
+
+ +
+
+ +
+
+ + + + +
$resolution = false
+
+ +

Referenced by photo_init().

+ +
+
+ +
+
+ + + + +
$shadows = false
+
+ +

Referenced by redbasic_form().

+ +
+
+ +
+
+ + + + +
$shiny = false
+
+ +

Referenced by redbasic_form(), and theme_content().

+ +
+
+ +
+
+ + + + +
$site_colour = get_config("redbasic", "colour" )
+
+ +
+
+ +
+
+ + + + +
$site_line_height = get_config("redbasic","line_height")
+
+ +
+
+ +
+
+ + + + +
$site_redbasic_font_size = get_config("redbasic", "font_size" )
+
+ +
+
+ +
+
+ + + + +
if ($colour==="dark") if (($redbasic_font_size >=8.0)&&($redbasic_font_size<=20.0)) if (($line_height >=1.0)&&($line_height<=2.0)) if($shadows==="true")
+
+ +
+
+
+
+ + + + diff --git a/doc/html/style_8php.js b/doc/html/style_8php.js new file mode 100644 index 000000000..35e00198f --- /dev/null +++ b/doc/html/style_8php.js @@ -0,0 +1,20 @@ +var style_8php = +[ + [ "$colour", "style_8php.html#a4086b1a341b7c8462a47fb1b25fd49ab", null ], + [ "$displaystyle", "style_8php.html#aa658152b727ea1233f6df6ded6437dad", null ], + [ "$line_height", "style_8php.html#a4131d1765ee4deb28e83fc4527943ee0", null ], + [ "$linkcolour", "style_8php.html#a6628a80911a6b37b464ef110ac8f6e42", null ], + [ "$nav_bg_1", "style_8php.html#a232513bf4339fe34908c4c63cb93168b", null ], + [ "$nav_bg_2", "style_8php.html#a03a72942b7428fd9af1224770d20a8ba", null ], + [ "$nav_bg_3", "style_8php.html#acc190405dda0a23a80551dee11c74c0c", null ], + [ "$nav_bg_4", "style_8php.html#aef266cfcb27c6ddb3292584c945bab33", null ], + [ "$navcolour", "style_8php.html#a938168352fd3cdaa1c10c16a34f5938a", null ], + [ "$redbasic_font_size", "style_8php.html#addf42c3d02e53f8e4153f3bb9dabfcda", null ], + [ "$resolution", "style_8php.html#adcfa918e05b5a98cbddc84bc3f1c15cc", null ], + [ "$shadows", "style_8php.html#acb3046ad9c01b7d60cde20f58d77c548", null ], + [ "$shiny", "style_8php.html#a0b942d36d8862908864e2ffa4521be70", null ], + [ "$site_colour", "style_8php.html#a02d39b683a42fffbb27823d3860283bd", null ], + [ "$site_line_height", "style_8php.html#a8749837e08dfb3372662af9c33fa2a2e", null ], + [ "$site_redbasic_font_size", "style_8php.html#a45e6fafa363bc4586fa91dce1786be4f", null ], + [ "if", "style_8php.html#a0a473a25349f07563d6c56d14031f02a", null ] +]; \ No newline at end of file diff --git a/doc/html/subthread_8php.html b/doc/html/subthread_8php.html new file mode 100644 index 000000000..8a1e3be41 --- /dev/null +++ b/doc/html/subthread_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/subthread.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
subthread.php File Reference
+
+
+ + + + +

+Functions

 subthread_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
subthread_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/subthread_8php.js b/doc/html/subthread_8php.js new file mode 100644 index 000000000..93781b6dd --- /dev/null +++ b/doc/html/subthread_8php.js @@ -0,0 +1,4 @@ +var subthread_8php = +[ + [ "subthread_content", "subthread_8php.html#a50368f3d825b77996030528e7fbfa3d3", null ] +]; \ No newline at end of file diff --git a/doc/html/suggest_8php.html b/doc/html/suggest_8php.html new file mode 100644 index 000000000..41e18fad5 --- /dev/null +++ b/doc/html/suggest_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/suggest.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
suggest.php File Reference
+
+
+ + + + + + +

+Functions

 suggest_init (&$a)
 
 suggest_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
suggest_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
suggest_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/suggest_8php.js b/doc/html/suggest_8php.js new file mode 100644 index 000000000..6a1ef5b3d --- /dev/null +++ b/doc/html/suggest_8php.js @@ -0,0 +1,5 @@ +var suggest_8php = +[ + [ "suggest_content", "suggest_8php.html#a58748a8235d4523f8333847f3e42dd91", null ], + [ "suggest_init", "suggest_8php.html#a696acf1dd8070e479adcc80c63c6718c", null ] +]; \ No newline at end of file diff --git a/doc/html/sync_off.png b/doc/html/sync_off.png new file mode 100644 index 000000000..3b443fc62 Binary files /dev/null and b/doc/html/sync_off.png differ diff --git a/doc/html/sync_on.png b/doc/html/sync_on.png new file mode 100644 index 000000000..e08320fb6 Binary files /dev/null and b/doc/html/sync_on.png differ diff --git a/doc/html/system__unavailable_8php.html b/doc/html/system__unavailable_8php.html new file mode 100644 index 000000000..c5b7e560b --- /dev/null +++ b/doc/html/system__unavailable_8php.html @@ -0,0 +1,148 @@ + + + + + + +The Red Project: include/system_unavailable.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
system_unavailable.php File Reference
+
+
+ + + + +

+Functions

 system_down ()
 
+

Function Documentation

+ +
+
+ + + + + + + +
system_down ()
+
+ +

Referenced by system_unavailable().

+ +
+
+
+
+ + + + diff --git a/doc/html/system__unavailable_8php.js b/doc/html/system__unavailable_8php.js new file mode 100644 index 000000000..c92284b98 --- /dev/null +++ b/doc/html/system__unavailable_8php.js @@ -0,0 +1,4 @@ +var system__unavailable_8php = +[ + [ "system_down", "system__unavailable_8php.html#a73751a6bcc17ad3ca503496e2fb020fa", null ] +]; \ No newline at end of file diff --git a/doc/html/tab_a.png b/doc/html/tab_a.png new file mode 100644 index 000000000..3b725c41c Binary files /dev/null and b/doc/html/tab_a.png differ diff --git a/doc/html/tab_b.png b/doc/html/tab_b.png new file mode 100644 index 000000000..e2b4a8638 Binary files /dev/null and b/doc/html/tab_b.png differ diff --git a/doc/html/tab_h.png b/doc/html/tab_h.png new file mode 100644 index 000000000..fd5cb7054 Binary files /dev/null and b/doc/html/tab_h.png differ diff --git a/doc/html/tab_s.png b/doc/html/tab_s.png new file mode 100644 index 000000000..ab478c95b Binary files /dev/null and b/doc/html/tab_s.png differ diff --git a/doc/html/tabs.css b/doc/html/tabs.css new file mode 100644 index 000000000..9cf578f23 --- /dev/null +++ b/doc/html/tabs.css @@ -0,0 +1,60 @@ +.tabs, .tabs2, .tabs3 { + background-image: url('tab_b.png'); + width: 100%; + z-index: 101; + font-size: 13px; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +} + +.tabs2 { + font-size: 10px; +} +.tabs3 { + font-size: 9px; +} + +.tablist { + margin: 0; + padding: 0; + display: table; +} + +.tablist li { + float: left; + display: table-cell; + background-image: url('tab_b.png'); + line-height: 36px; + list-style: none; +} + +.tablist a { + display: block; + padding: 0 20px; + font-weight: bold; + background-image:url('tab_s.png'); + background-repeat:no-repeat; + background-position:right; + color: #283A5D; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; + outline: none; +} + +.tabs3 .tablist a { + padding: 0 10px; +} + +.tablist a:hover { + background-image: url('tab_h.png'); + background-repeat:repeat-x; + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); + text-decoration: none; +} + +.tablist li.current a { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} diff --git a/doc/html/tagger_8php.html b/doc/html/tagger_8php.html new file mode 100644 index 000000000..ca842c236 --- /dev/null +++ b/doc/html/tagger_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/tagger.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
tagger.php File Reference
+
+
+ + + + +

+Functions

 tagger_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
tagger_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/tagger_8php.js b/doc/html/tagger_8php.js new file mode 100644 index 000000000..845567bb3 --- /dev/null +++ b/doc/html/tagger_8php.js @@ -0,0 +1,4 @@ +var tagger_8php = +[ + [ "tagger_content", "tagger_8php.html#a0e4a3eb177d1684553c547503d67161c", null ] +]; \ No newline at end of file diff --git a/doc/html/tagrm_8php.html b/doc/html/tagrm_8php.html new file mode 100644 index 000000000..c9c70ba89 --- /dev/null +++ b/doc/html/tagrm_8php.html @@ -0,0 +1,165 @@ + + + + + + +The Red Project: mod/tagrm.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
tagrm.php File Reference
+
+
+ + + + + + +

+Functions

 tagrm_post (&$a)
 
 tagrm_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
tagrm_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
tagrm_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/tagrm_8php.js b/doc/html/tagrm_8php.js new file mode 100644 index 000000000..2753559fd --- /dev/null +++ b/doc/html/tagrm_8php.js @@ -0,0 +1,5 @@ +var tagrm_8php = +[ + [ "tagrm_content", "tagrm_8php.html#adfd4ea5b4d7fc6d9c9e042af5cd7d49a", null ], + [ "tagrm_post", "tagrm_8php.html#a1702f40aa53a2fa93deade1f609abe78", null ] +]; \ No newline at end of file diff --git a/doc/html/template__processor_8php.html b/doc/html/template__processor_8php.html new file mode 100644 index 000000000..1ba09d37c --- /dev/null +++ b/doc/html/template__processor_8php.html @@ -0,0 +1,210 @@ + + + + + + +The Red Project: include/template_processor.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
template_processor.php File Reference
+
+
+ + + + +

+Classes

class  Template
 
+ + + + + +

+Functions

 template_escape ($s)
 
 template_unescape ($s)
 
+ + + + + +

+Variables

const KEY_NOT_EXISTS '^R_key_not_Exists^'
 
 $t = new Template
 
+

Function Documentation

+ +
+
+ + + + + + + + +
template_escape ( $s)
+
+
+ +
+
+ + + + + + + + +
template_unescape ( $s)
+
+ +
+
+

Variable Documentation

+ + + +
+
+ + + + +
const KEY_NOT_EXISTS '^R_key_not_Exists^'
+
+ +

Referenced by Template\_get_var(), and Template\var_replace().

+ +
+
+
+
+ + + + diff --git a/doc/html/template__processor_8php.js b/doc/html/template__processor_8php.js new file mode 100644 index 000000000..1244d9b26 --- /dev/null +++ b/doc/html/template__processor_8php.js @@ -0,0 +1,8 @@ +var template__processor_8php = +[ + [ "Template", "classTemplate.html", "classTemplate" ], + [ "template_escape", "template__processor_8php.html#ab2bcd8738f20f293636a6ae8e1099db5", null ], + [ "template_unescape", "template__processor_8php.html#ac635bb19a5f6eadd6b0cddefdd537c1e", null ], + [ "$t", "template__processor_8php.html#a3d44ea1cbbc9bc72aad8436186c4866e", null ], + [ "KEY_NOT_EXISTS", "template__processor_8php.html#a797745996c7839a93b2ab1af456631ab", null ] +]; \ No newline at end of file diff --git a/doc/html/test_2php_2theme_8php.html b/doc/html/test_2php_2theme_8php.html new file mode 100644 index 000000000..e1ea59948 --- /dev/null +++ b/doc/html/test_2php_2theme_8php.html @@ -0,0 +1,166 @@ + + + + + + +The Red Project: view/theme/test/php/theme.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
theme.php File Reference
+
+
+ + + + +

+Functions

 test_init (&$a)
 
+ + + +

+Variables

$a theme_info = array()
 
+

Function Documentation

+ +
+
+ + + + + + + + +
test_init ($a)
+
+ +
+
+

Variable Documentation

+ +
+
+ + + + +
$a theme_info = array()
+
+ +
+
+
+
+ + + + diff --git a/doc/html/test_2php_2theme_8php.js b/doc/html/test_2php_2theme_8php.js new file mode 100644 index 000000000..cac936eda --- /dev/null +++ b/doc/html/test_2php_2theme_8php.js @@ -0,0 +1,5 @@ +var test_2php_2theme_8php = +[ + [ "test_init", "test_2php_2theme_8php.html#ad4235a22a5389b2291cdee55677e3cc5", null ], + [ "theme_info", "test_2php_2theme_8php.html#ae74b5c3ec259b616b5137f6cfc591fb5", null ] +]; \ No newline at end of file diff --git a/doc/html/test_8php.html b/doc/html/test_8php.html new file mode 100644 index 000000000..a4c34f596 --- /dev/null +++ b/doc/html/test_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/test.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
test.php File Reference
+
+
+ + + + +

+Functions

 test_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
test_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/test_8php.js b/doc/html/test_8php.js new file mode 100644 index 000000000..3d877ee85 --- /dev/null +++ b/doc/html/test_8php.js @@ -0,0 +1,4 @@ +var test_8php = +[ + [ "test_content", "test_8php.html#aaff133c1f566a332b5a3ae41b70941f8", null ] +]; \ No newline at end of file diff --git a/doc/html/text_8php.html b/doc/html/text_8php.html new file mode 100644 index 000000000..680e70223 --- /dev/null +++ b/doc/html/text_8php.html @@ -0,0 +1,1471 @@ + + + + + + +The Red Project: include/text.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
text.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

if(!function_exists('random_string'))
+if(!function_exists('notags'))
+if(!function_exists('escape_tags'))
+if(!function_exists('autoname'))
+if(!function_exists('xmlify'))
+if(!function_exists('unxmlify'))
+if(!function_exists('hex2bin'))
+if(!function_exists('paginate'))
+if(!function_exists('alt_pager'))
+if(!function_exists('expand_acl'))
+if(!function_exists('sanitise_acl'))
+if(!function_exists('perms2str'))
+if(!function_exists('item_message_id'))
+if(!function_exists('photo_new_resource'))
+if(!function_exists('attribute_contains'))
+if(!function_exists('logger'))
+if(!function_exists('dlogger')) 
profiler ($t1, $t2, $label)
 
if(!function_exists('activity_match'))
+if(!function_exists('get_tags'))
+if(!function_exists('qp')) if(!function_exists('get_mentions'))
+if(!function_exists('contact_block')) 
chanlink_hash ($s)
 
 chanlink_url ($s)
 
 chanlink_cid ($d)
 
 magiclink_url ($observer, $myaddr, $url)
 
if(!function_exists('micropro'))
+if(!function_exists('search'))
+if(!function_exists('valid_email'))
+if(!function_exists('linkify')) 
get_poke_verbs ()
 
 get_mood_verbs ()
 
if(!function_exists('smilies')) smile_encode ($m)
 
 smile_decode ($m)
 
 preg_heart ($x)
 
if(!function_exists('day_translate'))
+if(!function_exists('normalise_link'))
+if(!function_exists('link_compare'))
+if(!function_exists('prepare_body'))
+if(!function_exists('prepare_text'))
+if(!function_exists('feed_hublinks'))
+if(!function_exists('feed_salmonlinks'))
+if(!function_exists('get_plink'))
+if(!function_exists('unamp'))
+if(!function_exists('lang_selector'))
+if(!function_exists('return_bytes')) 
generate_user_guid ()
 
 base64url_encode ($s, $strip_padding=true)
 
 base64url_decode ($s)
 
if(!function_exists('str_getcsv')) cleardiv ()
 
 bb_translate_video ($s)
 
 html2bb_video ($s)
 
 array_xmlify ($val)
 
 reltoabs ($text, $base)
 
 item_post_type ($item)
 
 file_tag_encode ($s)
 
 file_tag_decode ($s)
 
 file_tag_file_query ($table, $s, $type= 'file')
 
 term_query ($table, $s, $type=TERM_UNKNOWN)
 
 file_tag_list_to_file ($list, $type= 'file')
 
 file_tag_file_to_list ($file, $type= 'file')
 
 file_tag_update_pconfig ($uid, $file_old, $file_new, $type= 'file')
 
 store_item_tag ($uid, $iid, $otype, $type, $term, $url= '')
 
 get_terms_oftype ($arr, $type)
 
 format_term_for_display ($term)
 
 file_tag_save_file ($uid, $item, $file)
 
 file_tag_unsave_file ($uid, $item, $file, $cat=false)
 
 normalise_openid ($s)
 
 undo_post_tagging ($s)
 
 fix_mce_lf ($s)
 
 protect_sprintf ($s)
 
 is_a_date_arg ($s)
 
 legal_webbie ($s)
 
 check_webbie ($arr)
 
 ids_to_querystr ($arr, $idx= 'id')
 
 xchan_query (&$items, $abook=false)
 
 xchan_mail_query (&$item)
 
 find_xchan_in_array ($xchan, $arr)
 
 get_rel_link ($j, $rel)
 
 magic_link ($s)
 
 stringify_array_elms (&$arr, $escape=false)
 
 jindent ($json)
 
 tagadelic ($uid, $count=0, $type=TERM_HASHTAG)
 
 tags_sort ($a, $b)
 
 tagblock ($link, $uid, $count=0, $type=TERM_HASHTAG)
 
+ + + + + +

+Variables

const RANDOM_STRING_HEX (!function_exists('replace_macros')) 0x00
 
const RANDOM_STRING_TEXT 0x01
 
+

Function Documentation

+ +
+
+ + + + + + + + +
array_xmlify ( $val)
+
+

apply xmlify() to all values of array $val, recursively

+ +

Referenced by api_apply_template(), and poco_init().

+ +
+
+ +
+
+ + + + + + + + +
base64url_decode ( $s)
+
+
+ + + +
+
+ + + + + + + + +
bb_translate_video ( $s)
+
+ +

Referenced by item_post().

+ +
+
+ +
+
+ + + + + + + + +
chanlink_cid ( $d)
+
+ +
+
+ +
+
+ + + + + + + + +
if (!function_exists('activity_match')) if (!function_exists('get_tags')) if (!function_exists('qp')) if (!function_exists('get_mentions')) if (!function_exists('contact_block')) chanlink_hash ( $s)
+
+ +

Referenced by message_content().

+ +
+
+ +
+
+ + + + + + + + +
chanlink_url ( $s)
+
+
+ +
+
+ + + + + + + + +
check_webbie ( $arr)
+
+ +

Referenced by create_identity(), and new_channel_init().

+ +
+
+ +
+
+ + + + + + + +
if (!function_exists('str_getcsv')) cleardiv ()
+
+
+ +
+
+ + + + + + + + +
file_tag_decode ( $s)
+
+ +

Referenced by file_tag_file_to_list().

+ +
+
+ +
+
+ + + + + + + + +
file_tag_encode ( $s)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
file_tag_file_query ( $table,
 $s,
 $type = 'file' 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
file_tag_file_to_list ( $file,
 $type = 'file' 
)
+
+ +

Referenced by editpost_content(), and file_tag_update_pconfig().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
file_tag_list_to_file ( $list,
 $type = 'file' 
)
+
+ +

Referenced by file_tag_update_pconfig().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
file_tag_save_file ( $uid,
 $item,
 $file 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
file_tag_unsave_file ( $uid,
 $item,
 $file,
 $cat = false 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
file_tag_update_pconfig ( $uid,
 $file_old,
 $file_new,
 $type = 'file' 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
find_xchan_in_array ( $xchan,
 $arr 
)
+
+
+ +
+
+ + + + + + + + +
fix_mce_lf ( $s)
+
+ +

Referenced by item_post(), message_post(), and profiles_post().

+ +
+
+ +
+
+ + + + + + + + +
format_term_for_display ( $term)
+
+ +
+
+ +
+
+ + + + + + + +
if (!function_exists('day_translate')) if (!function_exists('normalise_link')) if (!function_exists('link_compare')) if (!function_exists('prepare_body')) if (!function_exists('prepare_text')) if (!function_exists('feed_hublinks')) if (!function_exists('feed_salmonlinks')) if (!function_exists('get_plink')) if (!function_exists('unamp')) if (!function_exists('lang_selector')) if (!function_exists('return_bytes')) generate_user_guid ()
+
+

Compare two URLs to see if they are the same, but ignore slight but hopefully insignificant differences such as if one is https and the other isn't, or if one is www.something and the other isn't - and also ignore case differences.

+

Return true if the URLs match, otherwise false. return atom link elements for all of our hubs

+ +
+
+ +
+
+ + + + + + + +
get_mood_verbs ()
+
+ +

Referenced by mood_content(), and mood_init().

+ +
+
+ +
+
+ + + + + + + +
if (!function_exists('micropro')) if (!function_exists('search')) if (!function_exists('valid_email')) if (!function_exists('linkify')) get_poke_verbs ()
+
+

Function: linkify

+

Replace naked text hyperlink with HTML formatted hyperlink

+ +

Referenced by poke_content(), and poke_init().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
get_rel_link ( $j,
 $rel 
)
+
+ +

Referenced by localize_item().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
get_terms_oftype ( $arr,
 $type 
)
+
+ +

Referenced by item_getfeedtags(), and tag_deliver().

+ +
+
+ +
+
+ + + + + + + + +
html2bb_video ( $s)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
ids_to_querystr ( $arr,
 $idx = 'id' 
)
+
+
+ +
+
+ + + + + + + + +
is_a_date_arg ( $s)
+
+
+ +
+
+ + + + + + + + +
item_post_type ( $item)
+
+ +

Referenced by notification().

+ +
+
+ +
+
+ + + + + + + + +
jindent ( $json)
+
+

Indents a flat JSON string to make it more human-readable.

+
Parameters
+ + +
string$jsonThe original JSON string to process.
+
+
+
Returns
string Indented version of the original JSON string.
+ +
+
+ +
+
+ + + + + + + + +
legal_webbie ( $s)
+
+ +

Referenced by check_webbie(), and new_channel_init().

+ +
+
+ +
+
+ + + + + + + + +
magic_link ( $s)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
magiclink_url ( $observer,
 $myaddr,
 $url 
)
+
+ +
+
+ +
+
+ + + + + + + + +
normalise_openid ( $s)
+
+ +
+
+ +
+
+ + + + + + + + +
preg_heart ( $x)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
if (!function_exists('random_string')) if (!function_exists('notags')) if (!function_exists('escape_tags')) if (!function_exists('autoname')) if (!function_exists('xmlify')) if (!function_exists('unxmlify')) if (!function_exists('hex2bin')) if (!function_exists('paginate')) if (!function_exists('alt_pager')) if (!function_exists('expand_acl')) if (!function_exists('sanitise_acl')) if (!function_exists('perms2str')) if (!function_exists('item_message_id')) if (!function_exists('photo_new_resource')) if (!function_exists('attribute_contains')) if (!function_exists('logger')) if (!function_exists('dlogger')) profiler ( $t1,
 $t2,
 $label 
)
+
+

This is our primary input filter.

+

The high bit hack only involved some old IE browser, forget which (IE5/Mac?) that had an XSS attack vector due to stripping the high-bit on an 8-bit character after cleansing, and angle chars with the high bit set could get through as markup.

+

This is now disabled because it was interfering with some legitimate unicode sequences and hopefully there aren't a lot of those browsers left.

+

Use this on any text input where angle chars are not valid or permitted They will be replaced with safer brackets. This may be filtered further if these are not allowed either.

+ +

Referenced by network_content().

+ +
+
+ + + +
+
+ + + + + + + + + + + + + + + + + + +
reltoabs ( $text,
 $base 
)
+
+ +

Referenced by get_atom_elements().

+ +
+
+ +
+
+ + + + + + + + +
smile_decode ( $m)
+
+ +
+
+ +
+
+ + + + + + + + +
if (!function_exists('smilies')) smile_encode ( $m)
+
+

Function: smilies

+

Description: Replaces text emoticons with graphical images

+

: string $s

+

Returns string

+

It is expected that this function will be called using HTML text. We will escape text between HTML pre and code blocks from being processed.

+

At a higher level, the bbcode [nosmile] tag can be used to prevent this function from being executed by the prepare_text() routine when preparing bbcode source for HTML display

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
store_item_tag ( $uid,
 $iid,
 $otype,
 $type,
 $term,
 $url = '' 
)
+
+ +

Referenced by filer_content().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
stringify_array_elms ($arr,
 $escape = false 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
tagadelic ( $uid,
 $count = 0,
 $type = TERM_HASHTAG 
)
+
+ +

Referenced by tagblock().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
tagblock ( $link,
 $uid,
 $count = 0,
 $type = TERM_HASHTAG 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
tags_sort ( $a,
 $b 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
term_query ( $table,
 $s,
 $type = TERM_UNKNOWN 
)
+
+ +

Referenced by network_content().

+ +
+
+ +
+
+ + + + + + + + +
undo_post_tagging ( $s)
+
+ +

Referenced by editpost_content().

+ +
+
+ +
+
+ + + + + + + + +
xchan_mail_query ($item)
+
+ +

Referenced by notifier_run().

+ +
+
+ + +

Variable Documentation

+ +
+
+ + + + +
const RANDOM_STRING_HEX(!function_exists('replace_macros')) 0x00
+
+ +
+
+ +
+
+ + + + +
const RANDOM_STRING_TEXT 0x01
+
+ +

Referenced by aes_encapsulate().

+ +
+
+
+
+ + + + diff --git a/doc/html/text_8php.js b/doc/html/text_8php.js new file mode 100644 index 000000000..e3c0bee6f --- /dev/null +++ b/doc/html/text_8php.js @@ -0,0 +1,54 @@ +var text_8php = +[ + [ "array_xmlify", "text_8php.html#acedb584f65114a33f389efb796172a91", null ], + [ "base64url_decode", "text_8php.html#a13286f8a95d2de6b102966ecc270c8d6", null ], + [ "base64url_encode", "text_8php.html#a070384ec000fd65043fce11d5392d241", null ], + [ "bb_translate_video", "text_8php.html#a3d2793d66db3345fd290b71e2eadf98e", null ], + [ "chanlink_cid", "text_8php.html#a85e3a4851c16674834010d8419a5d7ca", null ], + [ "chanlink_hash", "text_8php.html#a8c5d610a901665dfe6cbb64d39bfaa2f", null ], + [ "chanlink_url", "text_8php.html#a2e8d6c402603be3a1256a16605e09c2a", null ], + [ "check_webbie", "text_8php.html#a0c65597bb4aed3a039eb795ff540e5e3", null ], + [ "cleardiv", "text_8php.html#a8c59dbc3c93b2601c6bb22ddff163349", null ], + [ "file_tag_decode", "text_8php.html#a08df5164926d2b31b8e9fcfe919de2b6", null ], + [ "file_tag_encode", "text_8php.html#a3299482ac20e9d79453048dd52881d37", null ], + [ "file_tag_file_query", "text_8php.html#a163b5131f388080b0fc82398d3a32fe1", null ], + [ "file_tag_file_to_list", "text_8php.html#a544fc13c1798371e5a5984b5482108f8", null ], + [ "file_tag_list_to_file", "text_8php.html#abb55ec0142207aeec3d90b25ed4d7266", null ], + [ "file_tag_save_file", "text_8php.html#a30311fd46e05be0e2cc466118641a4ed", null ], + [ "file_tag_unsave_file", "text_8php.html#a48f6d04513d26270e10e9b7d153f7526", null ], + [ "file_tag_update_pconfig", "text_8php.html#abbe4894b4e746e47e1f91c7df27f6e81", null ], + [ "find_xchan_in_array", "text_8php.html#ace3c98538c63e09b70a363210b414112", null ], + [ "fix_mce_lf", "text_8php.html#afdc69fe3f6c09e35e46304dcea63ae28", null ], + [ "format_term_for_display", "text_8php.html#adfead45e3b8a3dfb2b4a4b9281d0dbe1", null ], + [ "generate_user_guid", "text_8php.html#a149372f9167903c31d4cdb9e81ac0d19", null ], + [ "get_mood_verbs", "text_8php.html#a736db13a966b8abaf8c9198faa35911a", null ], + [ "get_poke_verbs", "text_8php.html#a75fbba83ab521c145e262646c3128da5", null ], + [ "get_rel_link", "text_8php.html#a3972701c5c83624ec4e2d06242f614e7", null ], + [ "get_terms_oftype", "text_8php.html#a0fb8cf0ac7bcbc8b27d856fe9bf69cd1", null ], + [ "html2bb_video", "text_8php.html#a138a3a611fa7f4f3630674145fc826bf", null ], + [ "ids_to_querystr", "text_8php.html#a436a8de00c942364c2d0fcfc7e1f4b5a", null ], + [ "is_a_date_arg", "text_8php.html#a1557112a774ec00fa06ed6b6f6495506", null ], + [ "item_post_type", "text_8php.html#ac1dbf2e37e8069bea2c0f557fdbf203e", null ], + [ "jindent", "text_8php.html#ae17b39d5e321debd3ad16dcbbde842b8", null ], + [ "legal_webbie", "text_8php.html#a2690ad67bb6fb97ef69de3e8d23f2728", null ], + [ "magic_link", "text_8php.html#a1e510c53624933ce9b7d6715784894db", null ], + [ "magiclink_url", "text_8php.html#a24d441d30df4b8e6bf6780bf62a5e2c6", null ], + [ "normalise_openid", "text_8php.html#adba17ec946f4285285dc100f7860bf51", null ], + [ "preg_heart", "text_8php.html#ac19d2b33a58372a357a43d51eed19162", null ], + [ "profiler", "text_8php.html#aac3721c73b3ceadf02a172704d0a27b7", null ], + [ "protect_sprintf", "text_8php.html#a4e7698aca48982512594b274543c3b9b", null ], + [ "reltoabs", "text_8php.html#ad855a32bee22c3f3b9734e3a334b96f2", null ], + [ "smile_decode", "text_8php.html#aca0f589be74fab1a460c57e88dad9779", null ], + [ "smile_encode", "text_8php.html#a6232a23958366a80955a5782f4ba9073", null ], + [ "store_item_tag", "text_8php.html#a4ba1339b2a7054971178ce194e4440fd", null ], + [ "stringify_array_elms", "text_8php.html#a8796f6a9ca592ecdce7b3afc3462aa13", null ], + [ "tagadelic", "text_8php.html#afe44c30f1d0f8cb3ca097d4e189d852d", null ], + [ "tagblock", "text_8php.html#a4f3605ee8de717a401ea9df2401b59f6", null ], + [ "tags_sort", "text_8php.html#aaeded36bcc983b35d9205fe5b6c18c43", null ], + [ "term_query", "text_8php.html#a7a913d19c77610da689be48fbbf6734c", null ], + [ "undo_post_tagging", "text_8php.html#a740ad03e00459039a2c0992246c4e727", null ], + [ "xchan_mail_query", "text_8php.html#a543447c5ed766535221e2d9636b379ee", null ], + [ "xchan_query", "text_8php.html#a24b2b69b9162da789ab6514e0e09a37c", null ], + [ "RANDOM_STRING_HEX", "text_8php.html#a5bb69d560e9d8a9acc8778eba6cf2f4e", null ], + [ "RANDOM_STRING_TEXT", "text_8php.html#a2ffd79c60cc87cec24ef76447b905187", null ] +]; \ No newline at end of file diff --git a/doc/html/theme__init_8php.html b/doc/html/theme__init_8php.html new file mode 100644 index 000000000..af679e35b --- /dev/null +++ b/doc/html/theme__init_8php.html @@ -0,0 +1,122 @@ + + + + + + +The Red Project: view/php/theme_init.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
theme_init.php File Reference
+
+
+
+
+ + + + diff --git a/doc/html/toggle__mobile_8php.html b/doc/html/toggle__mobile_8php.html new file mode 100644 index 000000000..cf15ae039 --- /dev/null +++ b/doc/html/toggle__mobile_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/toggle_mobile.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
toggle_mobile.php File Reference
+
+
+ + + + +

+Functions

 toggle_mobile_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
toggle_mobile_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/toggle__mobile_8php.js b/doc/html/toggle__mobile_8php.js new file mode 100644 index 000000000..81ee78e90 --- /dev/null +++ b/doc/html/toggle__mobile_8php.js @@ -0,0 +1,4 @@ +var toggle__mobile_8php = +[ + [ "toggle_mobile_init", "toggle__mobile_8php.html#aca53ade8971802b45c31e722b22c6254", null ] +]; \ No newline at end of file diff --git a/doc/html/typo_8php.html b/doc/html/typo_8php.html new file mode 100644 index 000000000..378b04205 --- /dev/null +++ b/doc/html/typo_8php.html @@ -0,0 +1,201 @@ + + + + + + +The Red Project: util/typo.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
typo.php File Reference
+
+
+ + + + + + + + + + + + +

+Variables

 $a = new App()
 
 $files = glob('include/*.php')
 
 foreach ($files as $file)
 
 $dirs = glob('addon/*')
 
else $phpath = 'php'
 
+

Variable Documentation

+ +
+
+ + + + +
$a = new App()
+
+ +
+
+ +
+
+ + + + +
$dirs = glob('addon/*')
+
+ +
+
+ +
+
+ + + + +
$files = glob('include/*.php')
+
+ +
+
+ +
+
+ + + + +
else $phpath = 'php'
+
+ +

Referenced by check_php(), setup_content(), and setup_post().

+ +
+
+ +
+
+ + + + +
foreach($files as $file)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/typo_8php.js b/doc/html/typo_8php.js new file mode 100644 index 000000000..65f12e997 --- /dev/null +++ b/doc/html/typo_8php.js @@ -0,0 +1,8 @@ +var typo_8php = +[ + [ "$a", "typo_8php.html#acebf83966ef6d7e5645a6b62ba368f9f", null ], + [ "$dirs", "typo_8php.html#a1b709c1d79631ebc8320b41bda028b54", null ], + [ "$files", "typo_8php.html#a9590b15215a21e9b42eb546aeef79704", null ], + [ "$phpath", "typo_8php.html#a3ecd17ac846be1b35f3662f5c12ab6bd", null ], + [ "foreach", "typo_8php.html#a3bb638ebb8472e4ee7c85afe721f4fe3", null ] +]; \ No newline at end of file diff --git a/doc/html/typohelper_8php.html b/doc/html/typohelper_8php.html new file mode 100644 index 000000000..12f3d4764 --- /dev/null +++ b/doc/html/typohelper_8php.html @@ -0,0 +1,163 @@ + + + + + + +The Red Project: util/typohelper.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
typohelper.php File Reference
+
+
+ + + + + + +

+Variables

 $str
 
 EOT
 
+

Variable Documentation

+ +
+
+ + + + +
$str
+
+
+ + +
+
+ + + + diff --git a/doc/html/typohelper_8php.js b/doc/html/typohelper_8php.js new file mode 100644 index 000000000..7fb5a8d08 --- /dev/null +++ b/doc/html/typohelper_8php.js @@ -0,0 +1,5 @@ +var typohelper_8php = +[ + [ "$str", "typohelper_8php.html#a7542d95618011800c61773127fa625cf", null ], + [ "EOT", "typohelper_8php.html#ab6fd357fb5b2a3ba8aab9e8b98c6a805", null ] +]; \ No newline at end of file diff --git a/doc/html/uexport_8php.html b/doc/html/uexport_8php.html new file mode 100644 index 000000000..59ac71af4 --- /dev/null +++ b/doc/html/uexport_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/uexport.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
uexport.php File Reference
+
+
+ + + + +

+Functions

 uexport_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
uexport_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/uexport_8php.js b/doc/html/uexport_8php.js new file mode 100644 index 000000000..05a236df8 --- /dev/null +++ b/doc/html/uexport_8php.js @@ -0,0 +1,4 @@ +var uexport_8php = +[ + [ "uexport_init", "uexport_8php.html#a118920137dedebe0581623a2e57e7b0d", null ] +]; \ No newline at end of file diff --git a/doc/html/update__channel_8php.html b/doc/html/update__channel_8php.html new file mode 100644 index 000000000..6d1506ce5 --- /dev/null +++ b/doc/html/update__channel_8php.html @@ -0,0 +1,151 @@ + + + + + + +The Red Project: mod/update_channel.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
update_channel.php File Reference
+
+
+ + + + +

+Functions

 update_channel_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
update_channel_content ($a)
+
+

Module: update_profile Purpose: AJAX synchronisation of profile page

+

We can remove this hack once Internet Explorer recognises HTML5 natively

+

Grab the page inner contents by calling the content function from the profile module directly, but move any image src attributes to another attribute name. This is because some browsers will prefetch all the images for the page even if we don't need them. The only ones we need to fetch are those for new page additions, which we'll discover on the client side and then swap the image back.

+

reportedly some versions of MSIE don't handle tabs in XMLHttpRequest documents very well

+ +
+
+
+
+ + + + diff --git a/doc/html/update__channel_8php.js b/doc/html/update__channel_8php.js new file mode 100644 index 000000000..94dbeff08 --- /dev/null +++ b/doc/html/update__channel_8php.js @@ -0,0 +1,4 @@ +var update__channel_8php = +[ + [ "update_channel_content", "update__channel_8php.html#aca52a9da500f0db2f0a8666af5bc06ba", null ] +]; \ No newline at end of file diff --git a/doc/html/update__community_8php.html b/doc/html/update__community_8php.html new file mode 100644 index 000000000..eaeb71fb3 --- /dev/null +++ b/doc/html/update__community_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/update_community.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
update_community.php File Reference
+
+
+ + + + +

+Functions

 update_community_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
update_community_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/update__community_8php.js b/doc/html/update__community_8php.js new file mode 100644 index 000000000..eda76aa18 --- /dev/null +++ b/doc/html/update__community_8php.js @@ -0,0 +1,4 @@ +var update__community_8php = +[ + [ "update_community_content", "update__community_8php.html#abdcc5c4ecebbe0b5fcba2755c69cb3b1", null ] +]; \ No newline at end of file diff --git a/doc/html/update__display_8php.html b/doc/html/update__display_8php.html new file mode 100644 index 000000000..f54606763 --- /dev/null +++ b/doc/html/update__display_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/update_display.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
update_display.php File Reference
+
+
+ + + + +

+Functions

 update_display_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
update_display_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/update__display_8php.js b/doc/html/update__display_8php.js new file mode 100644 index 000000000..05acc47d5 --- /dev/null +++ b/doc/html/update__display_8php.js @@ -0,0 +1,4 @@ +var update__display_8php = +[ + [ "update_display_content", "update__display_8php.html#aa36ac524059e209d5d75a03c16206246", null ] +]; \ No newline at end of file diff --git a/doc/html/update__network_8php.html b/doc/html/update__network_8php.html new file mode 100644 index 000000000..61d3ee7eb --- /dev/null +++ b/doc/html/update__network_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/update_network.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
update_network.php File Reference
+
+
+ + + + +

+Functions

 update_network_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
update_network_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/update__network_8php.js b/doc/html/update__network_8php.js new file mode 100644 index 000000000..54bc186a3 --- /dev/null +++ b/doc/html/update__network_8php.js @@ -0,0 +1,4 @@ +var update__network_8php = +[ + [ "update_network_content", "update__network_8php.html#a8abf5b9f65af6a27ee2f9d7207ed1b41", null ] +]; \ No newline at end of file diff --git a/doc/html/updatetpl_8py.html b/doc/html/updatetpl_8py.html new file mode 100644 index 000000000..7a109a1f6 --- /dev/null +++ b/doc/html/updatetpl_8py.html @@ -0,0 +1,150 @@ + + + + + + +The Red Project: util/updatetpl.py File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
updatetpl.py File Reference
+
+
+ + + + +

+Namespaces

namespace  updatetpl
 
+ + + +

+Functions

def updatetpl.help
 
+ + + + + + + + + + + +

+Variables

string updatetpl.path = ''
 
list updatetpl.excludepaths = ['css', 'img', 'js', 'php', 'theme']
 
list updatetpl.tplpaths = []
 
tuple updatetpl.names = os.listdir(path + 'view/')
 
tuple updatetpl.fnull = open(os.devnull, "w")
 
+
+
+ + + + diff --git a/doc/html/updatetpl_8py.js b/doc/html/updatetpl_8py.js new file mode 100644 index 000000000..38f8a5299 --- /dev/null +++ b/doc/html/updatetpl_8py.js @@ -0,0 +1,9 @@ +var updatetpl_8py = +[ + [ "help", "updatetpl_8py.html#ac9d11279fed403a329a719298feafc4f", null ], + [ "excludepaths", "updatetpl_8py.html#a988d937ed5d5c2b592b763036af5cf94", null ], + [ "fnull", "updatetpl_8py.html#a79c20eb62d568c999b56eb08530355d3", null ], + [ "names", "updatetpl_8py.html#ab42dd79af65ee82201fd6f04715f62f6", null ], + [ "path", "updatetpl_8py.html#ae694f5e1f25f8a92a945eb90c432dfe6", null ], + [ "tplpaths", "updatetpl_8py.html#a52a85ffa6b6d63d840b185a133478c12", null ] +]; \ No newline at end of file diff --git a/doc/html/view_2theme_2redbasic_2php_2config_8php.html b/doc/html/view_2theme_2redbasic_2php_2config_8php.html new file mode 100644 index 000000000..ab0cd25f8 --- /dev/null +++ b/doc/html/view_2theme_2redbasic_2php_2config_8php.html @@ -0,0 +1,252 @@ + + + + + + +The Red Project: view/theme/redbasic/php/config.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
config.php File Reference
+
+
+ + + + + + + + +

+Functions

 theme_content (&$a)
 
 theme_post (&$a)
 
 redbasic_form (&$a, $font_size, $line_height, $colour, $shadow, $navcolour, $opaquenav, $displaystyle, $linkcolour, $iconset, $shiny)
 
+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
redbasic_form ($a,
 $font_size,
 $line_height,
 $colour,
 $shadow,
 $navcolour,
 $opaquenav,
 $displaystyle,
 $linkcolour,
 $iconset,
 $shiny 
)
+
+ +

Referenced by theme_content().

+ +
+
+ +
+
+ + + + + + + + +
theme_content ($a)
+
+

Theme settings

+ +
+
+ +
+
+ + + + + + + + +
theme_post ($a)
+
+ +

Referenced by settings_post().

+ +
+
+
+
+ + + + diff --git a/doc/html/view_2theme_2redbasic_2php_2config_8php.js b/doc/html/view_2theme_2redbasic_2php_2config_8php.js new file mode 100644 index 000000000..ee504c037 --- /dev/null +++ b/doc/html/view_2theme_2redbasic_2php_2config_8php.js @@ -0,0 +1,6 @@ +var view_2theme_2redbasic_2php_2config_8php = +[ + [ "redbasic_form", "view_2theme_2redbasic_2php_2config_8php.html#af58e97b437c1e98a5e434886494cc70e", null ], + [ "theme_content", "view_2theme_2redbasic_2php_2config_8php.html#aa7d5739b72efef9822535b2b32d5364d", null ], + [ "theme_post", "view_2theme_2redbasic_2php_2config_8php.html#ad29461920cf03b9ce1428e21eb1f4ba6", null ] +]; \ No newline at end of file diff --git a/doc/html/view_8php.html b/doc/html/view_8php.html new file mode 100644 index 000000000..5343043ab --- /dev/null +++ b/doc/html/view_8php.html @@ -0,0 +1,148 @@ + + + + + + +The Red Project: mod/view.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
view.php File Reference
+
+
+ + + + +

+Functions

 view_init ($a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
view_init ( $a)
+
+

load view/theme/$current_theme/style.php with friendica contex

+ +
+
+
+
+ + + + diff --git a/doc/html/view_8php.js b/doc/html/view_8php.js new file mode 100644 index 000000000..d40a196cb --- /dev/null +++ b/doc/html/view_8php.js @@ -0,0 +1,4 @@ +var view_8php = +[ + [ "view_init", "view_8php.html#ac168f6c61a91ba2063f13b441c0ae96e", null ] +]; \ No newline at end of file diff --git a/doc/html/viewconnections_8php.html b/doc/html/viewconnections_8php.html new file mode 100644 index 000000000..831743b2c --- /dev/null +++ b/doc/html/viewconnections_8php.html @@ -0,0 +1,183 @@ + + + + + + +The Red Project: mod/viewconnections.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
viewconnections.php File Reference
+
+
+ + + + + + + + +

+Functions

 viewconnections_init (&$a)
 
 viewconnections_aside (&$a)
 
 viewconnections_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
viewconnections_aside ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
viewconnections_content ($a)
+
+ +
+
+ +
+
+ + + + + + + + +
viewconnections_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/viewconnections_8php.js b/doc/html/viewconnections_8php.js new file mode 100644 index 000000000..5b9ec8153 --- /dev/null +++ b/doc/html/viewconnections_8php.js @@ -0,0 +1,6 @@ +var viewconnections_8php = +[ + [ "viewconnections_aside", "viewconnections_8php.html#ae330cea4cddd091559659f8b469617b6", null ], + [ "viewconnections_content", "viewconnections_8php.html#ab6c4d983e97b3a8a879567ff76507776", null ], + [ "viewconnections_init", "viewconnections_8php.html#a00163d50b17568f7b0e48b1ca9ab7330", null ] +]; \ No newline at end of file diff --git a/doc/html/viewsrc_8php.html b/doc/html/viewsrc_8php.html new file mode 100644 index 000000000..7bc503737 --- /dev/null +++ b/doc/html/viewsrc_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/viewsrc.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
viewsrc.php File Reference
+
+
+ + + + +

+Functions

 viewsrc_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
viewsrc_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/viewsrc_8php.js b/doc/html/viewsrc_8php.js new file mode 100644 index 000000000..0f5ac6b8c --- /dev/null +++ b/doc/html/viewsrc_8php.js @@ -0,0 +1,4 @@ +var viewsrc_8php = +[ + [ "viewsrc_content", "viewsrc_8php.html#a6eff3d0c1d7d14b335c4edb785cd60a4", null ] +]; \ No newline at end of file diff --git a/doc/html/wall__attach_8php.html b/doc/html/wall__attach_8php.html new file mode 100644 index 000000000..2b633abec --- /dev/null +++ b/doc/html/wall__attach_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/wall_attach.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
wall_attach.php File Reference
+
+
+ + + + +

+Functions

 wall_attach_post (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
wall_attach_post ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/wall__attach_8php.js b/doc/html/wall__attach_8php.js new file mode 100644 index 000000000..c0281be85 --- /dev/null +++ b/doc/html/wall__attach_8php.js @@ -0,0 +1,4 @@ +var wall__attach_8php = +[ + [ "wall_attach_post", "wall__attach_8php.html#a7385e970e93228d082f0fd7254f6e653", null ] +]; \ No newline at end of file diff --git a/doc/html/wall__upload_8php.html b/doc/html/wall__upload_8php.html new file mode 100644 index 000000000..ee173e308 --- /dev/null +++ b/doc/html/wall__upload_8php.html @@ -0,0 +1,149 @@ + + + + + + +The Red Project: mod/wall_upload.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
wall_upload.php File Reference
+
+
+ + + + +

+Functions

 wall_upload_post (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
wall_upload_post ($a)
+
+ +

Referenced by api_statuses_mediap(), and api_statuses_update().

+ +
+
+
+
+ + + + diff --git a/doc/html/wall__upload_8php.js b/doc/html/wall__upload_8php.js new file mode 100644 index 000000000..86f363be5 --- /dev/null +++ b/doc/html/wall__upload_8php.js @@ -0,0 +1,4 @@ +var wall__upload_8php = +[ + [ "wall_upload_post", "wall__upload_8php.html#a7cbe204244cf9e0380ee932263a74d8f", null ] +]; \ No newline at end of file diff --git a/doc/html/webfinger_8php.html b/doc/html/webfinger_8php.html new file mode 100644 index 000000000..50025b4b4 --- /dev/null +++ b/doc/html/webfinger_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/webfinger.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
webfinger.php File Reference
+
+
+ + + + +

+Functions

 webfinger_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
webfinger_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/webfinger_8php.js b/doc/html/webfinger_8php.js new file mode 100644 index 000000000..f34d3bd88 --- /dev/null +++ b/doc/html/webfinger_8php.js @@ -0,0 +1,4 @@ +var webfinger_8php = +[ + [ "webfinger_content", "webfinger_8php.html#a17dd28db6d390194bf9ecb809739d1d3", null ] +]; \ No newline at end of file diff --git a/doc/html/xchan_8php.html b/doc/html/xchan_8php.html new file mode 100644 index 000000000..d7776e522 --- /dev/null +++ b/doc/html/xchan_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/xchan.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
xchan.php File Reference
+
+
+ + + + +

+Functions

 xchan_content (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
xchan_content ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/xchan_8php.js b/doc/html/xchan_8php.js new file mode 100644 index 000000000..65ea176d4 --- /dev/null +++ b/doc/html/xchan_8php.js @@ -0,0 +1,4 @@ +var xchan_8php = +[ + [ "xchan_content", "xchan_8php.html#a9853348bf1a35c644460221ba75edc2d", null ] +]; \ No newline at end of file diff --git a/doc/html/xrd_8php.html b/doc/html/xrd_8php.html new file mode 100644 index 000000000..8377f23ac --- /dev/null +++ b/doc/html/xrd_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/xrd.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
xrd.php File Reference
+
+
+ + + + +

+Functions

 xrd_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
xrd_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/xrd_8php.js b/doc/html/xrd_8php.js new file mode 100644 index 000000000..01f00aa54 --- /dev/null +++ b/doc/html/xrd_8php.js @@ -0,0 +1,4 @@ +var xrd_8php = +[ + [ "xrd_init", "xrd_8php.html#aee3cf087968e4a0ff3a87de16eb23270", null ] +]; \ No newline at end of file diff --git a/doc/html/zfinger_8php.html b/doc/html/zfinger_8php.html new file mode 100644 index 000000000..9973f7b41 --- /dev/null +++ b/doc/html/zfinger_8php.html @@ -0,0 +1,149 @@ + + + + + + +The Red Project: mod/zfinger.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
zfinger.php File Reference
+
+
+ + + + +

+Functions

 zfinger_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
zfinger_init ($a)
+
+ +

Referenced by _well_known_init().

+ +
+
+
+
+ + + + diff --git a/doc/html/zfinger_8php.js b/doc/html/zfinger_8php.js new file mode 100644 index 000000000..9bee68767 --- /dev/null +++ b/doc/html/zfinger_8php.js @@ -0,0 +1,4 @@ +var zfinger_8php = +[ + [ "zfinger_init", "zfinger_8php.html#a8139b83a22ef98869adc10aa224027a0", null ] +]; \ No newline at end of file diff --git a/doc/html/zot_8php.html b/doc/html/zot_8php.html new file mode 100644 index 000000000..c1af15435 --- /dev/null +++ b/doc/html/zot_8php.html @@ -0,0 +1,788 @@ + + + + + + +The Red Project: include/zot.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
zot.php File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 zot_new_uid ($channel_nick)
 
 zot_get_hubloc ($arr, $primary=false)
 
 zot_notify ($channel, $url, $type= 'notify', $recipients=null, $remote_key=null)
 
 zot_build_packet ($channel, $type= 'notify', $recipients=null, $remote_key=null, $secret=null)
 
 zot_zot ($url, $data)
 
 zot_finger ($webbie, $channel)
 
 zot_refresh ($them, $channel=null)
 
 zot_gethub ($arr)
 
 zot_register_hub ($arr)
 
 import_xchan ($arr)
 
 zot_process_response ($hub, $arr, $outq)
 
 zot_fetch ($arr)
 
 zot_import ($arr)
 
 public_recips ($msg)
 
 allowed_public_recips ($msg)
 
 process_delivery ($sender, $arr, $deliveries, $relay)
 
 update_imported_item ($sender, $item, $uid)
 
 delete_imported_item ($sender, $item, $uid)
 
 process_mail_delivery ($sender, $arr, $deliveries)
 
 process_profile_delivery ($sender, $arr, $deliveries)
 
 import_directory_profile ($hash, $profile)
 
 import_directory_keywords ($hash, $keywords)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
allowed_public_recips ( $msg)
+
+ +

Referenced by zot_import().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
delete_imported_item ( $sender,
 $item,
 $uid 
)
+
+ +

Referenced by process_delivery().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
import_directory_keywords ( $hash,
 $keywords 
)
+
+ +

Referenced by import_directory_profile().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
import_directory_profile ( $hash,
 $profile 
)
+
+
+ +
+
+ + + + + + + + +
import_xchan ( $arr)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
process_delivery ( $sender,
 $arr,
 $deliveries,
 $relay 
)
+
+ +

Referenced by onepoll_run(), and zot_import().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
process_mail_delivery ( $sender,
 $arr,
 $deliveries 
)
+
+ +

Referenced by zot_import().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
process_profile_delivery ( $sender,
 $arr,
 $deliveries 
)
+
+ +

Referenced by zot_import().

+ +
+
+ +
+
+ + + + + + + + +
public_recips ( $msg)
+
+ +

Referenced by allowed_public_recips().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
update_imported_item ( $sender,
 $item,
 $uid 
)
+
+ +

Referenced by process_delivery().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
zot_build_packet ( $channel,
 $type = 'notify',
 $recipients = null,
 $remote_key = null,
 $secret = null 
)
+
+ +

Referenced by directory_run(), notifier_run(), and post_init().

+ +
+
+ +
+
+ + + + + + + + +
zot_fetch ( $arr)
+
+ +

Referenced by post_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
zot_finger ( $webbie,
 $channel 
)
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
zot_get_hubloc ( $arr,
 $primary = false 
)
+
+

Given an array of zot hashes, return all distinct hubs If primary is true, return only primary hubs Result is ordered by url to assist in batching. Return only the first primary hub as there should only be one.

+ +

Referenced by zfinger_init(), and zperms_init().

+ +
+
+ +
+
+ + + + + + + + +
zot_gethub ( $arr)
+
+ +

Referenced by import_post(), post_post(), and zot_fetch().

+ +
+
+ +
+
+ + + + + + + + +
zot_import ( $arr)
+
+ +

Referenced by deliver_run(), and zot_fetch().

+ +
+
+ +
+
+ + + + + + + + +
zot_new_uid ( $channel_nick)
+
+

zot_new_uid($channel_nick) = unique nickname of controlling entity

+
Returns
string
+ +

Referenced by create_identity().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
zot_notify ( $channel,
 $url,
 $type = 'notify',
 $recipients = null,
 $remote_key = null 
)
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
zot_process_response ( $hub,
 $arr,
 $outq 
)
+
+ +

Referenced by deliver_run(), and queue_run().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
zot_refresh ( $them,
 $channel = null 
)
+
+
+ +
+
+ + + + + + + + +
zot_register_hub ( $arr)
+
+ +

Referenced by post_post().

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
zot_zot ( $url,
 $data 
)
+
+
+
+
+ + + + diff --git a/doc/html/zot_8php.js b/doc/html/zot_8php.js new file mode 100644 index 000000000..cb382ba1d --- /dev/null +++ b/doc/html/zot_8php.js @@ -0,0 +1,25 @@ +var zot_8php = +[ + [ "allowed_public_recips", "zot_8php.html#a703f528ade8382cf374e4119bd6f7859", null ], + [ "delete_imported_item", "zot_8php.html#adfeb9400ae6b726beec89f8f1e8fde72", null ], + [ "import_directory_keywords", "zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a", null ], + [ "import_directory_profile", "zot_8php.html#a3c9e0b243ba29a7b0c050bd0b86eee32", null ], + [ "import_xchan", "zot_8php.html#ab0227978011d8601494a7651fa26acf0", null ], + [ "process_delivery", "zot_8php.html#a37ec13b18057634eadb071f05297f5e1", null ], + [ "process_mail_delivery", "zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc", null ], + [ "process_profile_delivery", "zot_8php.html#a9a57b40669351c9791126b925cb7ef3b", null ], + [ "public_recips", "zot_8php.html#a083aec6c900d244e1bfc1406f9461465", null ], + [ "update_imported_item", "zot_8php.html#a31aad56acf8ff8f2353e6ff8595544df", null ], + [ "zot_build_packet", "zot_8php.html#a3862b3161b2c8557dc1a95020179bd81", null ], + [ "zot_fetch", "zot_8php.html#a61cdc1ec843663c423ed2d8160ae5aea", null ], + [ "zot_finger", "zot_8php.html#a77720d6b59894e9b609af89c310c8a4d", null ], + [ "zot_get_hubloc", "zot_8php.html#acdea9362d78a63dce948fdf0ea73ef0e", null ], + [ "zot_gethub", "zot_8php.html#a55056e863a7860bc0cf922e78fcce073", null ], + [ "zot_import", "zot_8php.html#a22e3f9b97b7969ddbe43ccf0db93a19c", null ], + [ "zot_new_uid", "zot_8php.html#ab22d67660702056bf3f4696dcebf5ce7", null ], + [ "zot_notify", "zot_8php.html#af22a8732e60d30055617a95f77493446", null ], + [ "zot_process_response", "zot_8php.html#a928f5643ca66ae9635d85aeb2be62e03", null ], + [ "zot_refresh", "zot_8php.html#a7b23bfb31d4491231e1e73bdc077240d", null ], + [ "zot_register_hub", "zot_8php.html#a5bcdfef419b16075a0eca990956223dc", null ], + [ "zot_zot", "zot_8php.html#ab3e9b99ddb11353f37f265a05bb42142", null ] +]; \ No newline at end of file diff --git a/doc/html/zotfeed_8php.html b/doc/html/zotfeed_8php.html new file mode 100644 index 000000000..841ea2861 --- /dev/null +++ b/doc/html/zotfeed_8php.html @@ -0,0 +1,147 @@ + + + + + + +The Red Project: mod/zotfeed.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
zotfeed.php File Reference
+
+
+ + + + +

+Functions

 zotfeed_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
zotfeed_init ($a)
+
+ +
+
+
+
+ + + + diff --git a/doc/html/zotfeed_8php.js b/doc/html/zotfeed_8php.js new file mode 100644 index 000000000..e13749e5b --- /dev/null +++ b/doc/html/zotfeed_8php.js @@ -0,0 +1,4 @@ +var zotfeed_8php = +[ + [ "zotfeed_init", "zotfeed_8php.html#a24dfc23d366e7f840cf2847d0c1c8eac", null ] +]; \ No newline at end of file diff --git a/doc/html/zperms_8php.html b/doc/html/zperms_8php.html new file mode 100644 index 000000000..1d90932b0 --- /dev/null +++ b/doc/html/zperms_8php.html @@ -0,0 +1,148 @@ + + + + + + +The Red Project: mod/zperms.php File Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
zperms.php File Reference
+
+
+ + + + +

+Functions

 zperms_init (&$a)
 
+

Function Documentation

+ +
+
+ + + + + + + + +
zperms_init ($a)
+
+

hmmm we probably shouldn't sign somebody else's hub. FIXME

+ +
+
+
+
+ + + + diff --git a/doc/html/zperms_8php.js b/doc/html/zperms_8php.js new file mode 100644 index 000000000..42c93a5b3 --- /dev/null +++ b/doc/html/zperms_8php.js @@ -0,0 +1,4 @@ +var zperms_8php = +[ + [ "zperms_init", "zperms_8php.html#a2f698dcd51150bda3146425f038da628", null ] +]; \ No newline at end of file diff --git a/include/config.php b/include/config.php index 6e1196af1..9eea446aa 100644 --- a/include/config.php +++ b/include/config.php @@ -15,7 +15,6 @@ // retrieve a "family" of config variables from database to cached storage -if(! function_exists('load_config')) { function load_config($family) { global $a; $r = q("SELECT * FROM `config` WHERE `cat` = '%s'", dbesc($family)); @@ -32,7 +31,7 @@ function load_config($family) { // Negative caching $a->config[$family] = "!!"; } -}} +} // get a particular config variable given the family name // and key. Returns false if not set. @@ -42,7 +41,7 @@ function load_config($family) { // local config cache, pull it into the cache so we don't have // to hit the DB again for this item. -if(! function_exists('get_config')) { + function get_config($family, $key, $instore = false) { global $a; @@ -76,13 +75,13 @@ function get_config($family, $key, $instore = false) { $a->config[$family][$key] = '!!'; } return false; -}} +} // Store a config value ($value) in the category ($family) // under the key ($key) // Return the value, or false if the database update failed -if(! function_exists('set_config')) { + function set_config($family,$key,$value) { global $a; // manage array value @@ -111,10 +110,10 @@ function set_config($family,$key,$value) { if($ret) return $value; return $ret; -}} +} + -if(! function_exists('load_pconfig')) { function load_pconfig($uid,$family) { global $a; $r = q("SELECT * FROM `pconfig` WHERE `cat` = '%s' AND `uid` = %d", @@ -130,11 +129,11 @@ function load_pconfig($uid,$family) { // Negative caching $a->config[$uid][$family] = "!!"; } -}} +} + -if(! function_exists('get_pconfig')) { function get_pconfig($uid,$family, $key, $instore = false) { global $a; @@ -170,9 +169,9 @@ function get_pconfig($uid,$family, $key, $instore = false) { $a->config[$uid][$family][$key] = '!!'; } return false; -}} +} + -if(! function_exists('del_config')) { function del_config($family,$key) { global $a; @@ -183,14 +182,14 @@ function del_config($family,$key) { dbesc($key) ); return $ret; -}} +} // Same as above functions except these are for personal config storage and take an // additional $uid argument. -if(! function_exists('set_pconfig')) { + function set_pconfig($uid,$family,$key,$value) { global $a; @@ -222,9 +221,9 @@ function set_pconfig($uid,$family,$key,$value) { if($ret) return $value; return $ret; -}} +} + -if(! function_exists('del_pconfig')) { function del_pconfig($uid,$family,$key) { global $a; @@ -236,4 +235,4 @@ function del_pconfig($uid,$family,$key) { dbesc($key) ); return $ret; -}} +} diff --git a/include/dba.php b/include/dba.php index 3117744aa..004bff423 100644 --- a/include/dba.php +++ b/include/dba.php @@ -13,7 +13,7 @@ require_once('include/datetime.php'); * */ -if(! class_exists('dba')) { + class dba { private $debug = 0; @@ -188,33 +188,33 @@ class dba { else mysql_close($this->db); } -}} +} + -if(! function_exists('printable')) { function printable($s) { $s = preg_replace("~([\x01-\x08\x0E-\x0F\x10-\x1F\x7F-\xFF])~",".", $s); $s = str_replace("\x00",'.',$s); if(x($_SERVER,'SERVER_NAME')) $s = escape_tags($s); return $s; -}} +} // Procedural functions -if(! function_exists('dbg')) { + function dbg($state) { global $db; if($db) $db->dbg($state); -}} +} + -if(! function_exists('dbesc')) { function dbesc($str) { global $db; if($db && $db->connected) return($db->escape($str)); else return(str_replace("'","\\'",$str)); -}} +} @@ -223,7 +223,7 @@ function dbesc($str) { // Example: $r = q("SELECT * FROM `%s` WHERE `uid` = %d", // 'user', 1); -if(! function_exists('q')) { + function q($sql) { global $db; @@ -246,7 +246,7 @@ function q($sql) { logger('dba: no database: ' . print_r($args,true)); return false; -}} +} /** * @@ -254,7 +254,7 @@ function q($sql) { * */ -if(! function_exists('dbq')) { + function dbq($sql) { global $db; @@ -263,7 +263,7 @@ function dbq($sql) { else $ret = false; return $ret; -}} +} // Caller is responsible for ensuring that any integer arguments to @@ -272,18 +272,18 @@ function dbq($sql) { // cast to int to avoid trouble. -if(! function_exists('dbesc_array_cb')) { + function dbesc_array_cb(&$item, $key) { if(is_string($item)) $item = dbesc($item); -}} +} + -if(! function_exists('dbesc_array')) { function dbesc_array(&$arr) { if(is_array($arr) && count($arr)) { array_walk($arr,'dbesc_array_cb'); } -}} +} diff --git a/include/network.php b/include/network.php index a31c64f1b..9d7ae8497 100644 --- a/include/network.php +++ b/include/network.php @@ -6,10 +6,19 @@ function get_capath() { return appdirpath() . '/library/cacert.pem'; } + + // curl wrapper. If binary flag is true, return binary // results. +/** + * fetch_url is deprecated and being replaced by the more capable z_fetch_url + * please use that function instead. + * Once all occurrences of fetch_url are removed from the codebase we will + * remove this function and perhaps rename z_fetch_url back to fetch_url + */ + + -if(! function_exists('fetch_url')) { function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_content=Null) { $a = get_app(); @@ -98,11 +107,11 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_ $a->set_curl_headers($header); @curl_close($ch); return($body); -}} +} // post request to $url. $params is an array of post variables. -if(! function_exists('post_url')) { + function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0) { $a = get_app(); $ch = curl_init($url); @@ -193,9 +202,9 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0) curl_close($ch); return($body); -}} +} + -if(! function_exists('z_fetch_url')) { function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { $ret = array('return_code' => 0, 'success' => false, 'header' => "", 'body' => ""); @@ -231,6 +240,10 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { @curl_setopt($ch, CURLOPT_USERPWD, $opts['http_auth']); } + @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, + ((x($opts,'novalidate') && intval($opts['novalidate'])) ? false : true)); + + $prx = get_config('system','proxy'); if(strlen($prx)) { @curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1); @@ -283,11 +296,11 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { $ret['header'] = $header; @curl_close($ch); return($ret); -}} +} + -if(! function_exists('z_post_url')) { function z_post_url($url,$params, $headers = null, $redirects = 0, $timeout = 0) { $ret = array('return_code' => 0, 'success' => false, 'header' => "", 'body' => ""); @@ -378,7 +391,7 @@ function z_post_url($url,$params, $headers = null, $redirects = 0, $timeout = 0) $ret['header'] = $header; curl_close($ch); return($ret); -}} +} @@ -394,7 +407,7 @@ function json_return_and_die($x) { // Outputs a basic dfrn XML status structure to STDOUT, with a variable // of $st and an optional text of $message and terminates the current process. -if(! function_exists('xml_status')) { + function xml_status($st, $message = '') { $xml_message = ((strlen($message)) ? "\t" . xmlify($message) . "\r\n" : ''); @@ -406,10 +419,10 @@ function xml_status($st, $message = '') { echo ''."\r\n"; echo "\r\n\t$st\r\n$xml_message\r\n"; killme(); -}} +} + -if(! function_exists('http_status_exit')) { function http_status_exit($val) { $err = ''; @@ -422,13 +435,13 @@ function http_status_exit($val) { header($_SERVER["SERVER_PROTOCOL"] . ' ' . $val . ' ' . $err); killme(); -}} +} // convert an XML document to a normalised, case-corrected array // used by webfinger -if(! function_exists('convert_xml_element_to_array')) { + function convert_xml_element_to_array($xml_element, &$recursion_depth=0) { // If we're getting too deep, bail out @@ -468,7 +481,7 @@ function convert_xml_element_to_array($xml_element, &$recursion_depth=0) { } else { return (trim(strval($xml_element))); } -}} +} // Given an email style address, perform webfinger lookup and // return the resulting DFRN profile URL, or if no DFRN profile URL @@ -482,7 +495,7 @@ function convert_xml_element_to_array($xml_element, &$recursion_depth=0) { // amended 7/9/2011 to return an hcard which could save potentially loading // a lengthy content page to scrape dfrn attributes -if(! function_exists('webfinger_dfrn')) { + function webfinger_dfrn($s,&$hcard) { if(! strstr($s,'@')) { return $s; @@ -502,14 +515,14 @@ function webfinger_dfrn($s,&$hcard) { } } return $profile_link; -}} +} // Given an email style address, perform webfinger lookup and // return the array of link attributes from the personal XRD file. // On error/failure return an empty array. -if(! function_exists('webfinger')) { + function webfinger($s, $debug = false) { $host = ''; if(strstr($s,'@')) { @@ -532,9 +545,9 @@ function webfinger($s, $debug = false) { } } return array(); -}} +} + -if(! function_exists('lrdd')) { function lrdd($uri, $debug = false) { $a = get_app(); @@ -702,7 +715,7 @@ function lrdd($uri, $debug = false) { return array(); -}} +} @@ -710,7 +723,7 @@ function lrdd($uri, $debug = false) { // host. Returns the LRDD template or an empty string on // error/failure. -if(! function_exists('fetch_lrdd_template')) { + function fetch_lrdd_template($host) { $tpl = ''; @@ -732,13 +745,13 @@ function fetch_lrdd_template($host) { if(! strpos($tpl,'{uri}')) $tpl = ''; return $tpl; -}} +} // Given a URL, retrieve the page as an XRD document. // Return an array of links. // on error/failure return empty array. -if(! function_exists('fetch_xrd_links')) { + function fetch_xrd_links($url) { $xrd_timeout = intval(get_config('system','xrd_timeout')); @@ -783,14 +796,14 @@ function fetch_xrd_links($url) { return $links; -}} +} // Take a URL from the wild, prepend http:// if necessary // and check DNS to see if it's real (or check if is a valid IP address) // return true if it's OK, false if something is wrong with it -if(! function_exists('validate_url')) { + function validate_url(&$url) { // no naked subdomains (allow localhost for tests) @@ -804,11 +817,11 @@ function validate_url(&$url) { return true; } return false; -}} +} // checks that email is an actual resolvable internet address -if(! function_exists('validate_email')) { + function validate_email($addr) { if(get_config('system','disable_email_validation')) @@ -822,14 +835,14 @@ function validate_email($addr) { return true; } return false; -}} +} // Check $url against our list of allowed sites, // wildcards allowed. If allowed_sites is unset return true; // If url is allowed, return true. // otherwise, return false -if(! function_exists('allowed_url')) { + function allowed_url($url) { $h = @parse_url($url); @@ -864,14 +877,14 @@ function allowed_url($url) { } } return $found; -}} +} // check if email address is allowed to register here. // Compare against our list (wildcards allowed). // Returns false if not allowed, true if allowed or if // allowed list is not configured. -if(! function_exists('allowed_email')) { + function allowed_email($email) { @@ -898,10 +911,10 @@ function allowed_email($email) { } } return $found; -}} +} + -if(! function_exists('avatar_img')) { function avatar_img($email) { $a = get_app(); @@ -918,10 +931,10 @@ function avatar_img($email) { logger('Avatar: ' . $avatar['email'] . ' ' . $avatar['url'], LOGGER_DEBUG); return $avatar['url']; -}} +} + -if(! function_exists('parse_xml_string')) { function parse_xml_string($s,$strict = true) { if($strict) { if(! strstr($s,' 15, 'accept_content' => "text/*")); + $result = z_fetch_url($embedurl, false, $redirects, array('timeout' => 15, 'accept_content' => "text/*", 'novalidate' => true )); if($result['success']) $html_text = $result['body']; diff --git a/mod/parse_url.php b/mod/parse_url.php index d9bef2fa1..e7b9bb391 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -56,7 +56,7 @@ function parseurl_getsiteinfo($url) { $siteinfo = array(); - $result = z_fetch_url($url); + $result = z_fetch_url($url,false,0,array('novalidate' => true)); if(! $result['success']) return $siteinfo; diff --git a/util/Doxyfile b/util/Doxyfile index 30657d0ff..be0b5097a 100644 --- a/util/Doxyfile +++ b/util/Doxyfile @@ -1,7 +1,17 @@ -PROJECT_NAME = red -INPUT = mod include boot.php -OUTPUT_DIRECTORY = docs +INPUT = boot.php mod include setup util view +RECURSIVE = YES +PROJECT_NAME = "The Red Project" +PROJECT_LOGO = images/fred-48.png +EXCLUDE = .htconfig.php library doc .git +EXCLUDE_PATTERNS = *smarty3* *strings.php *.out *test* +OUTPUT_DIRECTORY = doc GENERATE_HTML = YES HTML_OUTPUT = html/ HTML_FILE_EXTENSION = .html GENERATE_LATEX = NO +EXTRACT_ALL = YES +EXTRACT_PRIVATE = YES +GENERATE_TODOLIST = YES +USE_MDFILE_AS_MAINPAGE = README.md +REFERENCED_BY_RELATION = YES +GENERATE_TREEVIEW = YES \ No newline at end of file diff --git a/util/makedocs b/util/makedocs new file mode 100755 index 000000000..b09016b88 --- /dev/null +++ b/util/makedocs @@ -0,0 +1,2 @@ +#!/bin/sh +doxygen util/Doxyfile diff --git a/version.inc b/version.inc index 49d6ae9a6..8c23eaf17 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-02-25.235 +2013-02-26.236