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

Xchan Lookup

'; + $o = '

' . t('Xchan Lookup') . '

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

'; - $o .= '

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

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

+

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

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

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

+

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

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

Variables

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

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

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

Functions

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

Function Documentation

+

Detailed Description

+

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

+

Function Documentation

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

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

+

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

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

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

+

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

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

returns querystring as string from a mapped array

+ +

Returns querystring as string from a mapped array.

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

build the page.

Build the page - now that we have all the components

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

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

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

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

+

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

+
Returns
int|bool account_id or false
+

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

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

Returns a custom navigation by name???

+

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

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

Referenced by construct_page().

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

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

+
Returns
int
+

Referenced by get_item_elements(), and limit_body_size().

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

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

+

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

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

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

+

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

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

Check if current user has developer role.

+

Check if the current user has ACCOUNT_ROLE_DEVELOPER.

+
Returns
bool true if user is a developer
+

Referenced by achievements_content(), and change_channel().

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

Checks if we are running on M$ Windows.

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

Referenced by check_php(), and proc_run().

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

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

+

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

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

Loads a page definition file for a module.

+

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

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

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

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

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

+

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

+

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

+
Returns
int|bool channel_id or false
+ +

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

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

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

+

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

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

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

+

Multi-purpose function to check variable state.

+

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

+

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

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

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

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

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

+

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

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

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

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

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

+

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

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

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

+

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

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

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

+

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

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

Referenced by item_post(), and notification().

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

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

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

Referenced by dirsearch_content(), and import_xchan().

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

Detailed Description

class: App

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

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

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

Referenced by get_baseurl().

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

Referenced by get_widgets().

-

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

- e -

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

    - o -

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

    - e -

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

    - o -

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

      - q -

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

      - u -

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

    - i -

    + + +

    - n -

    + + +

    - u -

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

    - x -

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

      - x -

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

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

      load/reload current theme info

      -

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

      +

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

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

      Referenced by dirprofile_init().

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

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

      -

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

      +

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

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

      Arbitrary configuration storage.

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

      Arrays get stored as serialize strings.

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

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

      +

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

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

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

      +

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

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

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

      +

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

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

      Functions

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

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

      +

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

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

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

      +

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

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

      Variables

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

      Variable Documentation

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

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

      +

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

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

      Variables

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

      Variable Documentation

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

      some DAV related functions for RedMatrix.

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

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

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

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

      Function Documentation

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

      Returns an array with viewable channels.

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

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

      TODO what exactly does this function?

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

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

      Referenced by setup_post().

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

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

      +

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

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

      Function: linkify

      Replace naked text hyperlink with HTML formatted hyperlink

      -

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

      +

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

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

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

      +

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

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

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

      +

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

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

      Variables

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

      Variable Documentation

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

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

      +

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

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

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

      +

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

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

      Functions

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

      What next

      " +msgstr "" + +#: ../../mod/setup.php:662 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../mod/siteinfo.php:132 +msgid "Red" +msgstr "" + +#: ../../mod/siteinfo.php:133 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "" + +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "" + +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "" + +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/siteinfo.php:142 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +msgstr "" + +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" +msgstr "" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "" + +#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "" + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "" + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "" + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "" + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "" + +#: ../../mod/blocks.php:99 +msgid "Block Name" +msgstr "" + +#: ../../mod/search.php:13 ../../mod/directory.php:15 ../../mod/photos.php:458 +#: ../../mod/display.php:9 ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "" + +#: ../../mod/directory.php:161 +msgid "Gender: " +msgstr "" + +#: ../../mod/directory.php:163 +msgid "Status: " +msgstr "" + +#: ../../mod/directory.php:165 +msgid "Homepage: " +msgstr "" + +#: ../../mod/directory.php:168 +msgid "Hometown: " +msgstr "" + +#: ../../mod/directory.php:170 +msgid "About: " +msgstr "" + +#: ../../mod/directory.php:225 +msgid "Public Forum:" +msgstr "" + +#: ../../mod/directory.php:228 +msgid "Keywords: " +msgstr "" + +#: ../../mod/directory.php:268 +msgid "Finding:" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:290 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "" + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "" + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "" + +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" +msgstr "" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "" + +#: ../../mod/events.php:81 +msgid "Event can not end before it has started." +msgstr "" + +#: ../../mod/events.php:86 +msgid "Event title and start time are required." +msgstr "" + +#: ../../mod/events.php:100 +msgid "Event not found." +msgstr "" + +#: ../../mod/events.php:364 +msgid "l, F j" +msgstr "" + +#: ../../mod/events.php:386 +msgid "Edit event" +msgstr "" + +#: ../../mod/events.php:432 +msgid "Create New Event" +msgstr "" + +#: ../../mod/events.php:433 ../../mod/photos.php:859 +msgid "Previous" +msgstr "" + +#: ../../mod/events.php:560 +msgid "Event details" +msgstr "" + +#: ../../mod/events.php:561 +msgid "Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:565 +msgid "Event Starts:" +msgstr "" + +#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 +msgid "Required" +msgstr "" + +#: ../../mod/events.php:571 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: ../../mod/events.php:573 +msgid "Event Finishes:" +msgstr "" + +#: ../../mod/events.php:575 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../mod/events.php:577 +msgid "Description:" +msgstr "" + +#: ../../mod/events.php:581 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:583 +msgid "Share this event" +msgstr "" + +#: ../../mod/pubsites.php:16 +msgid "Public Sites" +msgstr "" + +#: ../../mod/pubsites.php:19 +msgid "" +"The listed sites allow public registration into the Red Matrix. All sites in " +"the matrix are interlinked so membership on any of them conveys membership " +"in the matrix as a whole. Some sites may require subscription or provide " +"tiered service plans. The provider links may provide " +"additional details." +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Site URL" +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Access Type" +msgstr "" + +#: ../../mod/pubsites.php:25 +msgid "Registration Policy" +msgstr "" + +#: ../../mod/channel.php:25 ../../mod/chat.php:19 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../mod/channel.php:86 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../mod/chat.php:167 +msgid "Room not found" +msgstr "" + +#: ../../mod/chat.php:178 +msgid "Leave Room" +msgstr "" + +#: ../../mod/chat.php:179 +msgid "Delete This Room" +msgstr "" + +#: ../../mod/chat.php:180 +msgid "I am away right now" +msgstr "" + +#: ../../mod/chat.php:181 +msgid "I am online" +msgstr "" + +#: ../../mod/chat.php:183 +msgid "Bookmark this room" +msgstr "" + +#: ../../mod/chat.php:207 ../../mod/chat.php:229 +msgid "New Chatroom" +msgstr "" + +#: ../../mod/chat.php:208 +msgid "Chatroom Name" +msgstr "" + +#: ../../mod/chat.php:225 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "" + +#: ../../mod/network.php:79 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:118 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:172 +msgid "Collection is empty" +msgstr "" + +#: ../../mod/network.php:180 +msgid "Collection: " +msgstr "" + +#: ../../mod/network.php:193 +msgid "Connection: " +msgstr "" + +#: ../../mod/network.php:196 +msgid "Invalid connection." +msgstr "" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "" + +#: ../../mod/removeme.php:58 +msgid "" +"This will completely remove this channel from the network. Once this has " +"been done it is not recoverable." +msgstr "" + +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "" + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "" + +#: ../../mod/rmagic.php:38 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../mod/rmagic.php:38 +msgid "The error message was:" +msgstr "" + +#: ../../mod/rmagic.php:42 +msgid "Authentication failed." +msgstr "" + +#: ../../mod/rmagic.php:82 +msgid "Remote Authentication" +msgstr "" + +#: ../../mod/rmagic.php:83 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../mod/rmagic.php:84 +msgid "Authenticate" +msgstr "" + +#: ../../mod/filer.php:49 +msgid "- select -" +msgstr "" + #: ../../mod/photos.php:77 msgid "Page owner information could not be retrieved." msgstr "" @@ -3662,286 +5091,805 @@ msgstr "" msgid "Album not found." msgstr "" -#: ../../mod/photos.php:119 ../../mod/photos.php:670 +#: ../../mod/photos.php:119 ../../mod/photos.php:672 msgid "Delete Album" msgstr "" -#: ../../mod/photos.php:159 ../../mod/photos.php:954 +#: ../../mod/photos.php:159 ../../mod/photos.php:957 msgid "Delete Photo" msgstr "" -#: ../../mod/photos.php:459 ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "" - -#: ../../mod/photos.php:470 +#: ../../mod/photos.php:469 msgid "No photos selected" msgstr "" -#: ../../mod/photos.php:514 +#: ../../mod/photos.php:513 msgid "Access to this item is restricted." msgstr "" -#: ../../mod/photos.php:553 +#: ../../mod/photos.php:552 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../mod/photos.php:556 +#: ../../mod/photos.php:555 #, php-format msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../mod/photos.php:580 +#: ../../mod/photos.php:579 msgid "Upload Photos" msgstr "" -#: ../../mod/photos.php:584 ../../mod/photos.php:663 ../../mod/photos.php:941 +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 msgid "Enter a new album name" msgstr "" -#: ../../mod/photos.php:585 ../../mod/photos.php:664 ../../mod/photos.php:942 +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../mod/photos.php:586 +#: ../../mod/photos.php:585 msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/photos.php:614 +#: ../../mod/photos.php:613 msgid "Album name could not be decoded" msgstr "" -#: ../../mod/photos.php:652 ../../mod/photos.php:1163 -#: ../../mod/photos.php:1178 +#: ../../mod/photos.php:654 ../../mod/photos.php:1166 +#: ../../mod/photos.php:1182 msgid "Contact Photos" msgstr "" -#: ../../mod/photos.php:676 +#: ../../mod/photos.php:678 msgid "Show Newest First" msgstr "" -#: ../../mod/photos.php:678 +#: ../../mod/photos.php:680 msgid "Show Oldest First" msgstr "" -#: ../../mod/photos.php:705 ../../mod/photos.php:1210 +#: ../../mod/photos.php:707 ../../mod/photos.php:1214 msgid "View Photo" msgstr "" -#: ../../mod/photos.php:734 +#: ../../mod/photos.php:736 msgid "Edit Album" msgstr "" -#: ../../mod/photos.php:779 +#: ../../mod/photos.php:781 msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/photos.php:781 +#: ../../mod/photos.php:783 msgid "Photo not available" msgstr "" -#: ../../mod/photos.php:839 +#: ../../mod/photos.php:841 msgid "Use as profile photo" msgstr "" -#: ../../mod/photos.php:846 +#: ../../mod/photos.php:848 msgid "Private Photo" msgstr "" -#: ../../mod/photos.php:857 ../../mod/events.php:433 -msgid "Previous" -msgstr "" - -#: ../../mod/photos.php:861 +#: ../../mod/photos.php:863 msgid "View Full Size" msgstr "" -#: ../../mod/photos.php:866 ../../mod/events.php:434 ../../mod/setup.php:261 -msgid "Next" -msgstr "" - -#: ../../mod/photos.php:903 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 +#: ../../mod/photos.php:905 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 msgid "Remove" msgstr "" -#: ../../mod/photos.php:935 +#: ../../mod/photos.php:937 msgid "Edit photo" msgstr "" -#: ../../mod/photos.php:937 +#: ../../mod/photos.php:939 msgid "Rotate CW (right)" msgstr "" -#: ../../mod/photos.php:938 +#: ../../mod/photos.php:940 msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/photos.php:945 +#: ../../mod/photos.php:947 msgid "Caption" msgstr "" -#: ../../mod/photos.php:947 +#: ../../mod/photos.php:949 msgid "Add a Tag" msgstr "" -#: ../../mod/photos.php:950 +#: ../../mod/photos.php:953 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../mod/photos.php:952 +#: ../../mod/photos.php:955 msgid "Flag as adult in album view" msgstr "" -#: ../../mod/photos.php:1129 +#: ../../mod/photos.php:1132 msgid "In This Photo:" msgstr "" -#: ../../mod/photos.php:1216 +#: ../../mod/photos.php:1220 msgid "View Album" msgstr "" -#: ../../mod/photos.php:1239 +#: ../../mod/photos.php:1243 msgid "Recent Photos" msgstr "" -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." +#: ../../mod/connections.php:37 ../../mod/connedit.php:64 +msgid "Could not access contact record." msgstr "" -#: ../../mod/mitem.php:47 -msgid "Menu element updated." +#: ../../mod/connections.php:51 ../../mod/connedit.php:86 +msgid "Could not locate selected profile." msgstr "" -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." +#: ../../mod/connections.php:94 ../../mod/connedit.php:140 +msgid "Connection updated." msgstr "" -#: ../../mod/mitem.php:57 -msgid "Menu element added." +#: ../../mod/connections.php:96 ../../mod/connedit.php:142 +msgid "Failed to update connection record." msgstr "" -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." +#: ../../mod/connections.php:191 ../../mod/connections.php:292 +msgid "Blocked" msgstr "" -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:38 -msgid "Not found." +#: ../../mod/connections.php:196 ../../mod/connections.php:299 +msgid "Ignored" msgstr "" -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" +#: ../../mod/connections.php:201 ../../mod/connections.php:313 +msgid "Hidden" msgstr "" -#: ../../mod/mitem.php:99 -msgid "Edit menu" +#: ../../mod/connections.php:206 ../../mod/connections.php:306 +msgid "Archived" msgstr "" -#: ../../mod/mitem.php:102 -msgid "Edit element" +#: ../../mod/connections.php:230 ../../mod/connections.php:245 +msgid "All" msgstr "" -#: ../../mod/mitem.php:103 -msgid "Drop element" +#: ../../mod/connections.php:270 +msgid "Suggest new connections" msgstr "" -#: ../../mod/mitem.php:104 -msgid "New element" +#: ../../mod/connections.php:273 +msgid "New Connections" msgstr "" -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" +#: ../../mod/connections.php:276 +msgid "Show pending (new) connections" msgstr "" -#: ../../mod/mitem.php:106 -msgid "Add menu element" +#: ../../mod/connections.php:282 +msgid "Show all connections" msgstr "" -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" +#: ../../mod/connections.php:285 +msgid "Unblocked" msgstr "" -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" +#: ../../mod/connections.php:288 +msgid "Only show unblocked connections" msgstr "" -#: ../../mod/mitem.php:131 -msgid "New Menu Element" +#: ../../mod/connections.php:295 +msgid "Only show blocked connections" msgstr "" -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" +#: ../../mod/connections.php:302 +msgid "Only show ignored connections" msgstr "" -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:1011 -msgid "(click to open/close)" +#: ../../mod/connections.php:309 +msgid "Only show archived connections" msgstr "" -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" +#: ../../mod/connections.php:316 +msgid "Only show hidden connections" msgstr "" -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" +#: ../../mod/connections.php:371 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" +#: ../../mod/connections.php:372 +msgid "Edit connection" msgstr "" -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" +#: ../../mod/connections.php:410 +msgid "Search your connections" msgstr "" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" +#: ../../mod/connections.php:411 +msgid "Finding: " msgstr "" -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../mod/mitem.php:154 -msgid "Menu item not found." +#: ../../mod/manage.php:144 +msgid "Create a new channel" msgstr "" -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." +#: ../../mod/manage.php:149 +msgid "Current Channel" msgstr "" -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." msgstr "" -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" +#: ../../mod/manage.php:152 +msgid "Default Channel" msgstr "" -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" +#: ../../mod/manage.php:153 +msgid "Make Default" msgstr "" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" +#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 +msgid "Edit post" msgstr "" -#: ../../mod/ping.php:255 +#: ../../mod/connedit.php:189 +msgid "is now connected to" +msgstr "" + +#: ../../mod/connedit.php:310 +msgid "Could not access address book record." +msgstr "" + +#: ../../mod/connedit.php:324 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../mod/connedit.php:331 +msgid "Channel has been unblocked" +msgstr "" + +#: ../../mod/connedit.php:332 +msgid "Channel has been blocked" +msgstr "" + +#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 +#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 +#: ../../mod/connedit.php:388 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../mod/connedit.php:343 +msgid "Channel has been unignored" +msgstr "" + +#: ../../mod/connedit.php:344 +msgid "Channel has been ignored" +msgstr "" + +#: ../../mod/connedit.php:355 +msgid "Channel has been unarchived" +msgstr "" + +#: ../../mod/connedit.php:356 +msgid "Channel has been archived" +msgstr "" + +#: ../../mod/connedit.php:367 +msgid "Channel has been unhidden" +msgstr "" + +#: ../../mod/connedit.php:368 +msgid "Channel has been hidden" +msgstr "" + +#: ../../mod/connedit.php:383 +msgid "Channel has been approved" +msgstr "" + +#: ../../mod/connedit.php:384 +msgid "Channel has been unapproved" +msgstr "" + +#: ../../mod/connedit.php:412 +msgid "Connection has been removed." +msgstr "" + +#: ../../mod/connedit.php:432 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../mod/connedit.php:436 +msgid "Refresh Permissions" +msgstr "" + +#: ../../mod/connedit.php:439 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../mod/connedit.php:443 +msgid "Recent Activity" +msgstr "" + +#: ../../mod/connedit.php:446 +msgid "View recent posts and comments" +msgstr "" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:732 +msgid "Unblock" +msgstr "" + +#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 +#: ../../mod/admin.php:731 +msgid "Block" +msgstr "" + +#: ../../mod/connedit.php:453 +msgid "Block or Unblock this connection" +msgstr "" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +msgid "Unignore" +msgstr "" + +#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 +#: ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "" + +#: ../../mod/connedit.php:460 +msgid "Ignore or Unignore this connection" +msgstr "" + +#: ../../mod/connedit.php:463 +msgid "Unarchive" +msgstr "" + +#: ../../mod/connedit.php:463 +msgid "Archive" +msgstr "" + +#: ../../mod/connedit.php:466 +msgid "Archive or Unarchive this connection" +msgstr "" + +#: ../../mod/connedit.php:469 +msgid "Unhide" +msgstr "" + +#: ../../mod/connedit.php:469 +msgid "Hide" +msgstr "" + +#: ../../mod/connedit.php:472 +msgid "Hide or Unhide this connection" +msgstr "" + +#: ../../mod/connedit.php:479 +msgid "Delete this connection" +msgstr "" + +#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 +msgid "Approve this connection" +msgstr "" + +#: ../../mod/connedit.php:522 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../mod/connedit.php:538 +#, php-format +msgid "Connections: settings for %s" +msgstr "" + +#: ../../mod/connedit.php:539 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../mod/connedit.php:543 +msgid "Apply the permissions indicated on this page to all new connections." +msgstr "" + +#: ../../mod/connedit.php:545 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../mod/connedit.php:551 +msgid "inherited" +msgstr "" + +#: ../../mod/connedit.php:553 +msgid "Connection has no individual permissions!" +msgstr "" + +#: ../../mod/connedit.php:554 +msgid "" +"This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." +msgstr "" + +#: ../../mod/connedit.php:556 +msgid "Profile Visibility" +msgstr "" + +#: ../../mod/connedit.php:557 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../mod/connedit.php:558 +msgid "Contact Information / Notes" +msgstr "" + +#: ../../mod/connedit.php:559 +msgid "Edit contact notes" +msgstr "" + +#: ../../mod/connedit.php:561 +msgid "Their Settings" +msgstr "" + +#: ../../mod/connedit.php:562 +msgid "My Settings" +msgstr "" + +#: ../../mod/connedit.php:564 +msgid "Clear/Disable Automatic Permissions" +msgstr "" + +#: ../../mod/connedit.php:565 +msgid "Forum Members" +msgstr "" + +#: ../../mod/connedit.php:566 +msgid "Soapbox" +msgstr "" + +#: ../../mod/connedit.php:567 +msgid "Full Sharing (typical social network permissions)" +msgstr "" + +#: ../../mod/connedit.php:568 +msgid "Cautious Sharing " +msgstr "" + +#: ../../mod/connedit.php:569 +msgid "Follow Only" +msgstr "" + +#: ../../mod/connedit.php:570 +msgid "Individual Permissions" +msgstr "" + +#: ../../mod/connedit.php:571 +msgid "" +"Some permissions may be inherited from your channel privacy settings, which have higher priority than individual " +"settings. Changing those inherited settings on this page will have no effect." +msgstr "" + +#: ../../mod/connedit.php:572 +msgid "Advanced Permissions" +msgstr "" + +#: ../../mod/connedit.php:573 +msgid "Simple Permissions (select one and submit)" +msgstr "" + +#: ../../mod/connedit.php:577 +#, php-format +msgid "Visit %s's profile - %s" +msgstr "" + +#: ../../mod/connedit.php:578 +msgid "Block/Unblock contact" +msgstr "" + +#: ../../mod/connedit.php:579 +msgid "Ignore contact" +msgstr "" + +#: ../../mod/connedit.php:580 +msgid "Repair URL settings" +msgstr "" + +#: ../../mod/connedit.php:581 +msgid "View conversations" +msgstr "" + +#: ../../mod/connedit.php:583 +msgid "Delete contact" +msgstr "" + +#: ../../mod/connedit.php:586 +msgid "Last update:" +msgstr "" + +#: ../../mod/connedit.php:588 +msgid "Update public posts" +msgstr "" + +#: ../../mod/connedit.php:590 +msgid "Update now" +msgstr "" + +#: ../../mod/connedit.php:596 +msgid "Currently blocked" +msgstr "" + +#: ../../mod/connedit.php:597 +msgid "Currently ignored" +msgstr "" + +#: ../../mod/connedit.php:598 +msgid "Currently archived" +msgstr "" + +#: ../../mod/connedit.php:599 +msgid "Currently pending" +msgstr "" + +#: ../../mod/connedit.php:600 +msgid "Hide this contact from others" +msgstr "" + +#: ../../mod/connedit.php:600 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../mod/thing.php:96 +msgid "Thing updated" +msgstr "" + +#: ../../mod/thing.php:156 +msgid "Object store: failed" +msgstr "" + +#: ../../mod/thing.php:160 +msgid "Thing added" +msgstr "" + +#: ../../mod/thing.php:180 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../mod/thing.php:232 +msgid "Show Thing" +msgstr "" + +#: ../../mod/thing.php:239 +msgid "item not found." +msgstr "" + +#: ../../mod/thing.php:270 +msgid "Edit Thing" +msgstr "" + +#: ../../mod/thing.php:272 ../../mod/thing.php:319 +msgid "Select a profile" +msgstr "" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Post an activity" +msgstr "" + +#: ../../mod/thing.php:276 ../../mod/thing.php:322 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../mod/thing.php:278 ../../mod/thing.php:324 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../mod/thing.php:280 ../../mod/thing.php:325 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:282 ../../mod/thing.php:326 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../mod/thing.php:317 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "" + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../mod/lostpass.php:85 ../../boot.php:1494 +msgid "Password Reset" +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../mod/lostpass.php:87 +msgid "Your new password is" +msgstr "" + +#: ../../mod/lostpass.php:88 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:89 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:90 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:124 +msgid "Email Address" +msgstr "" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "" + +#: ../../mod/bookmarks.php:38 +msgid "Bookmark added" +msgstr "" + +#: ../../mod/bookmarks.php:60 +msgid "My Bookmarks" +msgstr "" + +#: ../../mod/bookmarks.php:71 +msgid "My Connections Bookmarks" +msgstr "" + +#: ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "" + +#: ../../mod/cloud.php:130 +msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" +msgstr "" + +#: ../../mod/ping.php:257 msgid "sent you a private message" msgstr "" -#: ../../mod/ping.php:306 +#: ../../mod/ping.php:308 msgid "added your channel" msgstr "" -#: ../../mod/ping.php:347 +#: ../../mod/ping.php:349 msgid "posted an event" msgstr "" -#: ../../mod/acl.php:244 -msgid "network" +#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 +#: ../../mod/editlayout.php:78 ../../mod/editpost.php:20 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "" + +#: ../../mod/editblock.php:115 +msgid "Edit Block" +msgstr "" + +#: ../../mod/editblock.php:125 +msgid "Delete block?" +msgstr "" + +#: ../../mod/editblock.php:147 ../../mod/editlayout.php:143 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:178 +msgid "Insert YouTube video" +msgstr "" + +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:144 +#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:179 +msgid "Insert Vorbis [.ogg] video" +msgstr "" + +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:145 +#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:180 +msgid "Insert Vorbis [.ogg] audio" +msgstr "" + +#: ../../mod/editblock.php:183 +msgid "Delete Block" +msgstr "" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "" + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "" + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "" + +#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +msgid "Layout Help" +msgstr "" + +#: ../../mod/editlayout.php:108 +msgid "Edit Layout" +msgstr "" + +#: ../../mod/editlayout.php:117 +msgid "Delete layout?" +msgstr "" + +#: ../../mod/editlayout.php:178 +msgid "Delete Layout" +msgstr "" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "" + +#: ../../mod/editpost.php:53 +msgid "Delete item?" msgstr "" #: ../../mod/settings.php:73 @@ -4102,7 +6050,7 @@ msgstr "" msgid "Connector Settings" msgstr "" -#: ../../mod/settings.php:743 ../../mod/admin.php:362 +#: ../../mod/settings.php:743 msgid "No special theme for mobile devices" msgstr "" @@ -4191,18 +6139,6 @@ msgstr "" msgid "Publish your default profile in the network directory" msgstr "" -#: ../../mod/settings.php:916 ../../mod/settings.php:921 -#: ../../mod/settings.php:1004 ../../mod/api.php:106 -#: ../../mod/profiles.php:574 ../../mod/admin.php:392 -msgid "No" -msgstr "" - -#: ../../mod/settings.php:916 ../../mod/settings.php:921 -#: ../../mod/settings.php:1004 ../../mod/api.php:105 -#: ../../mod/profiles.php:573 ../../mod/admin.php:394 -msgid "Yes" -msgstr "" - #: ../../mod/settings.php:921 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" @@ -4480,1757 +6416,15 @@ msgstr "" msgid "Remove this channel" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "" - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." -msgstr "" - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "" - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "" - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "" - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "" - -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "" - -#: ../../mod/siteinfo.php:90 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:111 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:124 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:132 -msgid "Red" -msgstr "" - -#: ../../mod/siteinfo.php:133 -msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:137 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:138 -msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." -msgstr "" - -#: ../../mod/siteinfo.php:139 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:142 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" -msgstr "" - -#: ../../mod/siteinfo.php:144 -msgid "Site Administrators" -msgstr "" - -#: ../../mod/blocks.php:62 -msgid "Block Name" -msgstr "" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:547 -msgid "Profile not found." -msgstr "" - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "" - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "" - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "" - -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "" - -#: ../../mod/profiles.php:362 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:366 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:370 -msgid "Likes" -msgstr "" - -#: ../../mod/profiles.php:374 -msgid "Dislikes" -msgstr "" - -#: ../../mod/profiles.php:378 -msgid "Work/Employment" -msgstr "" - -#: ../../mod/profiles.php:381 -msgid "Religion" -msgstr "" - -#: ../../mod/profiles.php:385 -msgid "Political Views" -msgstr "" - -#: ../../mod/profiles.php:389 -msgid "Gender" -msgstr "" - -#: ../../mod/profiles.php:393 -msgid "Sexual Preference" -msgstr "" - -#: ../../mod/profiles.php:397 -msgid "Homepage" -msgstr "" - -#: ../../mod/profiles.php:401 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:405 ../../mod/admin.php:868 -msgid "Address" -msgstr "" - -#: ../../mod/profiles.php:412 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "" - -#: ../../mod/profiles.php:495 -msgid "Profile updated." -msgstr "" - -#: ../../mod/profiles.php:572 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: ../../mod/profiles.php:614 -msgid "Edit Profile Details" -msgstr "" - -#: ../../mod/profiles.php:616 -msgid "View this profile" -msgstr "" - -#: ../../mod/profiles.php:618 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:619 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:620 -msgid "Clone this profile" -msgstr "" - -#: ../../mod/profiles.php:621 -msgid "Delete this profile" -msgstr "" - -#: ../../mod/profiles.php:623 -msgid "Import profile from file" -msgstr "" - -#: ../../mod/profiles.php:624 -msgid "Export profile to file" -msgstr "" - -#: ../../mod/profiles.php:625 -msgid "Profile Name:" -msgstr "" - -#: ../../mod/profiles.php:626 -msgid "Your Full Name:" -msgstr "" - -#: ../../mod/profiles.php:627 -msgid "Title/Description:" -msgstr "" - -#: ../../mod/profiles.php:628 -msgid "Your Gender:" -msgstr "" - -#: ../../mod/profiles.php:629 -msgid "Birthday :" -msgstr "" - -#: ../../mod/profiles.php:630 -msgid "Street Address:" -msgstr "" - -#: ../../mod/profiles.php:631 -msgid "Locality/City:" -msgstr "" - -#: ../../mod/profiles.php:632 -msgid "Postal/Zip Code:" -msgstr "" - -#: ../../mod/profiles.php:633 -msgid "Country:" -msgstr "" - -#: ../../mod/profiles.php:634 -msgid "Region/State:" -msgstr "" - -#: ../../mod/profiles.php:635 -msgid " Marital Status:" -msgstr "" - -#: ../../mod/profiles.php:636 -msgid "Who: (if applicable)" -msgstr "" - -#: ../../mod/profiles.php:637 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../mod/profiles.php:638 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:640 -msgid "Homepage URL:" -msgstr "" - -#: ../../mod/profiles.php:643 -msgid "Religious Views:" -msgstr "" - -#: ../../mod/profiles.php:644 -msgid "Keywords:" -msgstr "" - -#: ../../mod/profiles.php:647 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../mod/profiles.php:648 -msgid "Used in directory listings" -msgstr "" - -#: ../../mod/profiles.php:649 -msgid "Tell us about yourself..." -msgstr "" - -#: ../../mod/profiles.php:650 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../mod/profiles.php:651 -msgid "Contact information and Social Networks" -msgstr "" - -#: ../../mod/profiles.php:652 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:653 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:654 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:655 -msgid "Television" -msgstr "" - -#: ../../mod/profiles.php:656 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:657 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:658 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:659 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:665 -msgid "This is your default profile." -msgstr "" - -#: ../../mod/profiles.php:676 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "" - -#: ../../mod/profiles.php:719 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:720 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:721 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "" - -#: ../../mod/events.php:81 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../mod/events.php:86 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:100 -msgid "Event not found." -msgstr "" - -#: ../../mod/events.php:364 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:386 -msgid "Edit event" -msgstr "" - -#: ../../mod/events.php:432 -msgid "Create New Event" -msgstr "" - -#: ../../mod/events.php:560 -msgid "Event details" -msgstr "" - -#: ../../mod/events.php:561 -msgid "Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:565 -msgid "Event Starts:" -msgstr "" - -#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "" - -#: ../../mod/events.php:571 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: ../../mod/events.php:573 -msgid "Event Finishes:" -msgstr "" - -#: ../../mod/events.php:575 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../mod/events.php:577 -msgid "Description:" -msgstr "" - -#: ../../mod/events.php:581 -msgid "Title:" -msgstr "" - -#: ../../mod/events.php:583 -msgid "Share this event" -msgstr "" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in " -"the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "" - -#: ../../mod/register.php:42 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:82 -msgid "Passwords do not match." -msgstr "" - -#: ../../mod/register.php:115 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../mod/register.php:121 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:124 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:161 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:170 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:181 -msgid "Terms of Service" -msgstr "" - -#: ../../mod/register.php:187 -#, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:189 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:203 ../../mod/admin.php:415 -msgid "Registration" -msgstr "" - -#: ../../mod/register.php:208 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "" - -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "" - -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "" - -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "" - -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "" - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "" - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "" - -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "" - -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "" - -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "" - -#: ../../mod/connections.php:51 ../../mod/connedit.php:86 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../mod/connections.php:94 ../../mod/connedit.php:140 -msgid "Connection updated." -msgstr "" - -#: ../../mod/connections.php:96 ../../mod/connedit.php:142 -msgid "Failed to update connection record." -msgstr "" - -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" -msgstr "" - -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" -msgstr "" - -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" -msgstr "" - -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" -msgstr "" - -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" -msgstr "" - -#: ../../mod/connections.php:270 -msgid "Suggest new connections" -msgstr "" - -#: ../../mod/connections.php:273 -msgid "New Connections" -msgstr "" - -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../mod/connections.php:282 -msgid "Show all connections" -msgstr "" - -#: ../../mod/connections.php:285 -msgid "Unblocked" -msgstr "" - -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" -msgstr "" - -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" -msgstr "" - -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" -msgstr "" - -#: ../../mod/connections.php:309 -msgid "Only show archived connections" -msgstr "" - -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" -msgstr "" - -#: ../../mod/connections.php:371 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../mod/connections.php:372 -msgid "Edit connection" -msgstr "" - -#: ../../mod/connections.php:410 -msgid "Search your connections" -msgstr "" - -#: ../../mod/connections.php:411 -msgid "Finding: " -msgstr "" - -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "" - -#: ../../mod/connedit.php:189 -msgid "is now connected to" -msgstr "" - -#: ../../mod/connedit.php:310 -msgid "Could not access address book record." -msgstr "" - -#: ../../mod/connedit.php:324 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../mod/connedit.php:331 -msgid "Channel has been unblocked" -msgstr "" - -#: ../../mod/connedit.php:332 -msgid "Channel has been blocked" -msgstr "" - -#: ../../mod/connedit.php:336 ../../mod/connedit.php:348 -#: ../../mod/connedit.php:360 ../../mod/connedit.php:372 -#: ../../mod/connedit.php:388 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../mod/connedit.php:343 -msgid "Channel has been unignored" -msgstr "" - -#: ../../mod/connedit.php:344 -msgid "Channel has been ignored" -msgstr "" - -#: ../../mod/connedit.php:355 -msgid "Channel has been unarchived" -msgstr "" - -#: ../../mod/connedit.php:356 -msgid "Channel has been archived" -msgstr "" - -#: ../../mod/connedit.php:367 -msgid "Channel has been unhidden" -msgstr "" - -#: ../../mod/connedit.php:368 -msgid "Channel has been hidden" -msgstr "" - -#: ../../mod/connedit.php:383 -msgid "Channel has been approved" -msgstr "" - -#: ../../mod/connedit.php:384 -msgid "Channel has been unapproved" -msgstr "" - -#: ../../mod/connedit.php:412 -msgid "Connection has been removed." -msgstr "" - -#: ../../mod/connedit.php:432 -#, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../mod/connedit.php:436 -msgid "Refresh Permissions" -msgstr "" - -#: ../../mod/connedit.php:439 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../mod/connedit.php:443 -msgid "Recent Activity" -msgstr "" - -#: ../../mod/connedit.php:446 -msgid "View recent posts and comments" -msgstr "" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 -#: ../../mod/admin.php:734 -msgid "Unblock" -msgstr "" - -#: ../../mod/connedit.php:450 ../../mod/connedit.php:594 -#: ../../mod/admin.php:733 -msgid "Block" -msgstr "" - -#: ../../mod/connedit.php:453 -msgid "Block or Unblock this connection" -msgstr "" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 -msgid "Unignore" -msgstr "" - -#: ../../mod/connedit.php:457 ../../mod/connedit.php:595 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "" - -#: ../../mod/connedit.php:460 -msgid "Ignore or Unignore this connection" -msgstr "" - -#: ../../mod/connedit.php:463 -msgid "Unarchive" -msgstr "" - -#: ../../mod/connedit.php:463 -msgid "Archive" -msgstr "" - -#: ../../mod/connedit.php:466 -msgid "Archive or Unarchive this connection" -msgstr "" - -#: ../../mod/connedit.php:469 -msgid "Unhide" -msgstr "" - -#: ../../mod/connedit.php:469 -msgid "Hide" -msgstr "" - -#: ../../mod/connedit.php:472 -msgid "Hide or Unhide this connection" -msgstr "" - -#: ../../mod/connedit.php:479 -msgid "Delete this connection" -msgstr "" - -#: ../../mod/connedit.php:522 ../../mod/connedit.php:552 -msgid "Approve this connection" -msgstr "" - -#: ../../mod/connedit.php:522 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../mod/connedit.php:538 -#, php-format -msgid "Connections: settings for %s" -msgstr "" - -#: ../../mod/connedit.php:539 -msgid "Apply these permissions automatically" -msgstr "" - -#: ../../mod/connedit.php:543 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "" - -#: ../../mod/connedit.php:545 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../mod/connedit.php:551 -msgid "inherited" -msgstr "" - -#: ../../mod/connedit.php:553 -msgid "Connection has no individual permissions!" -msgstr "" - -#: ../../mod/connedit.php:554 -msgid "" -"This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "" - -#: ../../mod/connedit.php:556 -msgid "Profile Visibility" -msgstr "" - -#: ../../mod/connedit.php:557 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: ../../mod/connedit.php:558 -msgid "Contact Information / Notes" -msgstr "" - -#: ../../mod/connedit.php:559 -msgid "Edit contact notes" -msgstr "" - -#: ../../mod/connedit.php:561 -msgid "Their Settings" -msgstr "" - -#: ../../mod/connedit.php:562 -msgid "My Settings" -msgstr "" - -#: ../../mod/connedit.php:564 -msgid "Clear/Disable Automatic Permissions" -msgstr "" - -#: ../../mod/connedit.php:565 -msgid "Forum Members" -msgstr "" - -#: ../../mod/connedit.php:566 -msgid "Soapbox" -msgstr "" - -#: ../../mod/connedit.php:567 -msgid "Full Sharing (typical social network permissions)" -msgstr "" - -#: ../../mod/connedit.php:568 -msgid "Cautious Sharing " -msgstr "" - -#: ../../mod/connedit.php:569 -msgid "Follow Only" -msgstr "" - -#: ../../mod/connedit.php:570 -msgid "Individual Permissions" -msgstr "" - -#: ../../mod/connedit.php:571 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than individual " -"settings. Changing those inherited settings on this page will have no effect." -msgstr "" - -#: ../../mod/connedit.php:572 -msgid "Advanced Permissions" -msgstr "" - -#: ../../mod/connedit.php:573 -msgid "Simple Permissions (select one and submit)" -msgstr "" - -#: ../../mod/connedit.php:577 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "" - -#: ../../mod/connedit.php:578 -msgid "Block/Unblock contact" -msgstr "" - -#: ../../mod/connedit.php:579 -msgid "Ignore contact" -msgstr "" - -#: ../../mod/connedit.php:580 -msgid "Repair URL settings" -msgstr "" - -#: ../../mod/connedit.php:581 -msgid "View conversations" -msgstr "" - -#: ../../mod/connedit.php:583 -msgid "Delete contact" -msgstr "" - -#: ../../mod/connedit.php:586 -msgid "Last update:" -msgstr "" - -#: ../../mod/connedit.php:588 -msgid "Update public posts" -msgstr "" - -#: ../../mod/connedit.php:590 -msgid "Update now" -msgstr "" - -#: ../../mod/connedit.php:596 -msgid "Currently blocked" -msgstr "" - -#: ../../mod/connedit.php:597 -msgid "Currently ignored" -msgstr "" - -#: ../../mod/connedit.php:598 -msgid "Currently archived" -msgstr "" - -#: ../../mod/connedit.php:599 -msgid "Currently pending" -msgstr "" - -#: ../../mod/connedit.php:600 -msgid "Hide this contact from others" -msgstr "" - -#: ../../mod/connedit.php:600 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "" - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "" - -#: ../../mod/directory.php:223 -msgid "Finding:" -msgstr "" - -#: ../../mod/directory.php:228 -msgid "next page" -msgstr "" - -#: ../../mod/directory.php:228 -msgid "previous page" -msgstr "" - -#: ../../mod/directory.php:245 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "" - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "" - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "" - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "" - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "" - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "" - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "" - -#: ../../mod/cloud.php:130 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/setup.php:162 -msgid "Red Matrix Server - Setup" -msgstr "" - -#: ../../mod/setup.php:168 -msgid "Could not connect to database." -msgstr "" - -#: ../../mod/setup.php:172 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../mod/setup.php:179 -msgid "Could not create table." -msgstr "" - -#: ../../mod/setup.php:185 -msgid "Your site database has been installed." -msgstr "" - -#: ../../mod/setup.php:190 -msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." -msgstr "" - -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../mod/setup.php:257 -msgid "System check" -msgstr "" - -#: ../../mod/setup.php:262 -msgid "Check again" -msgstr "" - -#: ../../mod/setup.php:284 -msgid "Database connection" -msgstr "" - -#: ../../mod/setup.php:285 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "" - -#: ../../mod/setup.php:286 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../mod/setup.php:287 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../mod/setup.php:291 -msgid "Database Server Name" -msgstr "" - -#: ../../mod/setup.php:291 -msgid "Default is localhost" -msgstr "" - -#: ../../mod/setup.php:292 -msgid "Database Port" -msgstr "" - -#: ../../mod/setup.php:292 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../mod/setup.php:293 -msgid "Database Login Name" -msgstr "" - -#: ../../mod/setup.php:294 -msgid "Database Login Password" -msgstr "" - -#: ../../mod/setup.php:295 -msgid "Database Name" -msgstr "" - -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "Site administrator email address" -msgstr "" - -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Website URL" -msgstr "" - -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../mod/setup.php:301 ../../mod/setup.php:344 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../mod/setup.php:328 -msgid "Site settings" -msgstr "" - -#: ../../mod/setup.php:387 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../mod/setup.php:388 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../mod/setup.php:392 -msgid "PHP executable path" -msgstr "" - -#: ../../mod/setup.php:392 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/setup.php:397 -msgid "Command line PHP" -msgstr "" - -#: ../../mod/setup.php:406 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../mod/setup.php:407 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../mod/setup.php:409 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../mod/setup.php:430 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:431 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../mod/setup.php:433 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:440 -msgid "libCurl PHP module" -msgstr "" - -#: ../../mod/setup.php:441 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../mod/setup.php:442 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "" - -#: ../../mod/setup.php:444 -msgid "mb_string PHP module" -msgstr "" - -#: ../../mod/setup.php:445 -msgid "mcrypt PHP module" -msgstr "" - -#: ../../mod/setup.php:450 ../../mod/setup.php:452 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../mod/setup.php:450 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../mod/setup.php:456 ../../mod/setup.php:459 -msgid "proc_open" -msgstr "" - -#: ../../mod/setup.php:456 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../mod/setup.php:464 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:468 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../mod/setup.php:472 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:480 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:484 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:500 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: ../../mod/setup.php:501 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: ../../mod/setup.php:502 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "" - -#: ../../mod/setup.php:503 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/setup.php:506 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../mod/setup.php:516 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../mod/setup.php:517 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "" - -#: ../../mod/setup.php:518 ../../mod/setup.php:536 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../mod/setup.php:519 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../mod/setup.php:522 -#, php-format -msgid "%s is writable" -msgstr "" - -#: ../../mod/setup.php:535 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to " -"have write access to the store directory under the Red top level folder" -msgstr "" - -#: ../../mod/setup.php:539 -msgid "store is writable" -msgstr "" - -#: ../../mod/setup.php:569 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../mod/setup.php:570 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "" - -#: ../../mod/setup.php:571 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../mod/setup.php:572 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "" - -#: ../../mod/setup.php:573 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../mod/setup.php:574 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../mod/setup.php:576 -msgid "SSL certificate validation" -msgstr "" - -#: ../../mod/setup.php:582 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: ../../mod/setup.php:584 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/setup.php:594 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: ../../mod/setup.php:618 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/setup.php:653 -msgid "

      What next

      " -msgstr "" - -#: ../../mod/setup.php:654 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "" - -#: ../../mod/editwebpage.php:106 +#: ../../mod/editwebpage.php:140 msgid "Edit Webpage" msgstr "" -#: ../../mod/editwebpage.php:116 +#: ../../mod/editwebpage.php:150 msgid "Delete webpage?" msgstr "" -#: ../../mod/editwebpage.php:186 +#: ../../mod/editwebpage.php:215 msgid "Delete Webpage" msgstr "" @@ -6323,71 +6517,21 @@ msgstr "" msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" #: ../../mod/filestorage.php:76 @@ -6430,36 +6574,47 @@ msgstr "" msgid "Not Found" msgstr "" +#: ../../mod/acl.php:245 +msgid "network" +msgstr "" + #: ../../mod/follow.php:25 msgid "Channel added." msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." msgstr "" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" - -#: ../../mod/suggest.php:35 +#: ../../mod/delegate.php:123 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:132 +msgid "No entries." msgstr "" #: ../../mod/group.php:20 @@ -6510,760 +6665,10 @@ msgstr "" msgid "Click on a channel to add or remove." msgstr "" -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "" - -#: ../../mod/like.php:21 +#: ../../mod/suggest.php:35 msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "" - -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "" - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "" - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "" - -#: ../../mod/like.php:430 -msgid "Action completed." -msgstr "" - -#: ../../mod/like.php:431 -msgid "Thank you." -msgstr "" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "" - -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" -msgstr "" - -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 -msgid "Logs" -msgstr "" - -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 -#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 -#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 -msgid "Administration" -msgstr "" - -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "" - -#: ../../mod/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "" - -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" -msgstr "" - -#: ../../mod/admin.php:333 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" -msgstr "" - -#: ../../mod/admin.php:393 -msgid "Yes - with approval" -msgstr "" - -#: ../../mod/admin.php:399 -msgid "My site is not a public server" -msgstr "" - -#: ../../mod/admin.php:400 -msgid "My site has paid access only" -msgstr "" - -#: ../../mod/admin.php:401 -msgid "My site has free access only" -msgstr "" - -#: ../../mod/admin.php:402 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../mod/admin.php:416 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:417 -msgid "Policies" -msgstr "" - -#: ../../mod/admin.php:422 -msgid "Site name" -msgstr "" - -#: ../../mod/admin.php:423 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:424 -msgid "Administrator Information" -msgstr "" - -#: ../../mod/admin.php:424 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../mod/admin.php:425 -msgid "System language" -msgstr "" - -#: ../../mod/admin.php:426 -msgid "System theme" -msgstr "" - -#: ../../mod/admin.php:426 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:427 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "" - -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "" - -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" -msgstr "" - -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "" - -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" -msgstr "" - -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" -msgstr "" - -#: ../../mod/admin.php:432 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:432 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:433 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../mod/admin.php:434 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../mod/admin.php:435 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:436 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:436 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:437 -msgid "Allowed friend domains" -msgstr "" - -#: ../../mod/admin.php:437 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:438 -msgid "Allowed email domains" -msgstr "" - -#: ../../mod/admin.php:438 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:439 -msgid "Block public" -msgstr "" - -#: ../../mod/admin.php:439 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:440 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../mod/admin.php:440 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../mod/admin.php:441 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:441 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:442 -msgid "Disable discovery tab" -msgstr "" - -#: ../../mod/admin.php:442 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "" - -#: ../../mod/admin.php:443 -msgid "No login on Homepage" -msgstr "" - -#: ../../mod/admin.php:443 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "" - -#: ../../mod/admin.php:445 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:446 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:447 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:447 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:448 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:448 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:449 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:449 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:450 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:450 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:506 -msgid "No server found" -msgstr "" - -#: ../../mod/admin.php:513 ../../mod/admin.php:737 -msgid "ID" -msgstr "" - -#: ../../mod/admin.php:513 -msgid "for channel" -msgstr "" - -#: ../../mod/admin.php:513 -msgid "on server" -msgstr "" - -#: ../../mod/admin.php:513 -msgid "Status" -msgstr "" - -#: ../../mod/admin.php:534 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:544 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:547 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:551 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:554 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:569 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:573 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:576 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:602 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:609 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:638 -msgid "Account not found" -msgstr "" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: ../../mod/admin.php:724 ../../mod/admin.php:736 -msgid "Users" -msgstr "" - -#: ../../mod/admin.php:726 ../../mod/admin.php:862 -msgid "select all" -msgstr "" - -#: ../../mod/admin.php:727 -msgid "User registrations waiting for confirm" -msgstr "" - -#: ../../mod/admin.php:728 -msgid "Request date" -msgstr "" - -#: ../../mod/admin.php:729 -msgid "No registrations." -msgstr "" - -#: ../../mod/admin.php:730 -msgid "Approve" -msgstr "" - -#: ../../mod/admin.php:731 -msgid "Deny" -msgstr "" - -#: ../../mod/admin.php:737 -msgid "Register date" -msgstr "" - -#: ../../mod/admin.php:737 -msgid "Last login" -msgstr "" - -#: ../../mod/admin.php:737 -msgid "Expires" -msgstr "" - -#: ../../mod/admin.php:737 -msgid "Service Class" -msgstr "" - -#: ../../mod/admin.php:739 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:740 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:773 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:780 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:799 -msgid "Channel not found" -msgstr "" - -#: ../../mod/admin.php:810 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../mod/admin.php:864 -msgid "Censor" -msgstr "" - -#: ../../mod/admin.php:865 -msgid "Uncensor" -msgstr "" - -#: ../../mod/admin.php:868 -msgid "UID" -msgstr "" - -#: ../../mod/admin.php:870 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:871 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:910 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../mod/admin.php:914 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Disable" -msgstr "" - -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 -msgid "Enable" -msgstr "" - -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 -msgid "Toggle" -msgstr "" - -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 -msgid "Author: " -msgstr "" - -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:1090 -msgid "No themes found." -msgstr "" - -#: ../../mod/admin.php:1149 -msgid "Screenshot" -msgstr "" - -#: ../../mod/admin.php:1197 -msgid "[Experimental]" -msgstr "" - -#: ../../mod/admin.php:1198 -msgid "[Unsupported]" -msgstr "" - -#: ../../mod/admin.php:1225 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1281 -msgid "Clear" -msgstr "" - -#: ../../mod/admin.php:1287 -msgid "Debugging" -msgstr "" - -#: ../../mod/admin.php:1288 -msgid "Log file" -msgstr "" - -#: ../../mod/admin.php:1288 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "" - -#: ../../mod/admin.php:1289 -msgid "Log level" -msgstr "" - -#: ../../mod/admin.php:1336 -msgid "New Profile Field" -msgstr "" - -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Field nickname" -msgstr "" - -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "System name of field" -msgstr "" - -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Input type" -msgstr "" - -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Field Name" -msgstr "" - -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Label on profile pages" -msgstr "" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Help text" -msgstr "" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Additional info (optional)" -msgstr "" - -#: ../../mod/admin.php:1351 -msgid "Field definition not found" -msgstr "" - -#: ../../mod/admin.php:1357 -msgid "Edit Profile Field" -msgstr "" - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" #: ../../mod/import.php:25 @@ -7352,6 +6757,731 @@ msgstr "" msgid "Import existing posts if possible" msgstr "" +#: ../../mod/tagger.php:98 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:97 ../../mod/admin.php:411 +msgid "Site" +msgstr "" + +#: ../../mod/admin.php:98 +msgid "Accounts" +msgstr "" + +#: ../../mod/admin.php:99 ../../mod/admin.php:858 +msgid "Channels" +msgstr "" + +#: ../../mod/admin.php:100 ../../mod/admin.php:949 ../../mod/admin.php:991 +msgid "Plugins" +msgstr "" + +#: ../../mod/admin.php:101 ../../mod/admin.php:1154 ../../mod/admin.php:1190 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:102 ../../mod/admin.php:512 +msgid "Server" +msgstr "" + +#: ../../mod/admin.php:103 +msgid "Profile Config" +msgstr "" + +#: ../../mod/admin.php:104 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1277 +msgid "Logs" +msgstr "" + +#: ../../mod/admin.php:124 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:126 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:211 ../../mod/admin.php:410 ../../mod/admin.php:511 +#: ../../mod/admin.php:721 ../../mod/admin.php:857 ../../mod/admin.php:948 +#: ../../mod/admin.php:990 ../../mod/admin.php:1153 ../../mod/admin.php:1189 +#: ../../mod/admin.php:1276 +msgid "Administration" +msgstr "" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "" + +#: ../../mod/admin.php:216 ../../mod/admin.php:515 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:219 ../../mod/admin.php:516 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:326 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:363 +msgid "mobile" +msgstr "" + +#: ../../mod/admin.php:365 +msgid "experimental" +msgstr "" + +#: ../../mod/admin.php:367 +msgid "unsupported" +msgstr "" + +#: ../../mod/admin.php:391 +msgid "Yes - with approval" +msgstr "" + +#: ../../mod/admin.php:397 +msgid "My site is not a public server" +msgstr "" + +#: ../../mod/admin.php:398 +msgid "My site has paid access only" +msgstr "" + +#: ../../mod/admin.php:399 +msgid "My site has free access only" +msgstr "" + +#: ../../mod/admin.php:400 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "" + +#: ../../mod/admin.php:414 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:415 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:420 +msgid "Site name" +msgstr "" + +#: ../../mod/admin.php:421 +msgid "Banner/Logo" +msgstr "" + +#: ../../mod/admin.php:422 +msgid "Administrator Information" +msgstr "" + +#: ../../mod/admin.php:422 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../mod/admin.php:423 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:424 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:424 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:425 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:425 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "Enable Diaspora Protocol" +msgstr "" + +#: ../../mod/admin.php:427 +msgid "Communicate with Diaspora and Friendica - experimental" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "Allow Feeds as Connections" +msgstr "" + +#: ../../mod/admin.php:428 +msgid "(Heavy system resource usage)" +msgstr "" + +#: ../../mod/admin.php:429 +msgid "Maximum image size" +msgstr "" + +#: ../../mod/admin.php:429 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:430 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../mod/admin.php:431 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../mod/admin.php:432 +msgid "Register text" +msgstr "" + +#: ../../mod/admin.php:432 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../mod/admin.php:433 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../mod/admin.php:434 +msgid "Allowed friend domains" +msgstr "" + +#: ../../mod/admin.php:434 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../mod/admin.php:435 +msgid "Allowed email domains" +msgstr "" + +#: ../../mod/admin.php:435 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../mod/admin.php:436 +msgid "Block public" +msgstr "" + +#: ../../mod/admin.php:436 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: ../../mod/admin.php:437 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../mod/admin.php:437 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../mod/admin.php:438 +msgid "Force publish" +msgstr "" + +#: ../../mod/admin.php:438 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:439 +msgid "Disable discovery tab" +msgstr "" + +#: ../../mod/admin.php:439 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "" + +#: ../../mod/admin.php:440 +msgid "No login on Homepage" +msgstr "" + +#: ../../mod/admin.php:440 +msgid "" +"Check to hide the login form from your sites homepage when visitors arrive " +"who are not logged in (e.g. when you put the content of the homepage in via " +"the site channel)." +msgstr "" + +#: ../../mod/admin.php:442 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:443 +msgid "Proxy URL" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Network timeout" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:445 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:445 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:446 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:446 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:447 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:447 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:503 +msgid "No server found" +msgstr "" + +#: ../../mod/admin.php:510 ../../mod/admin.php:735 +msgid "ID" +msgstr "" + +#: ../../mod/admin.php:510 +msgid "for channel" +msgstr "" + +#: ../../mod/admin.php:510 +msgid "on server" +msgstr "" + +#: ../../mod/admin.php:510 +msgid "Status" +msgstr "" + +#: ../../mod/admin.php:531 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:541 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:544 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:548 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:551 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:566 +msgid "No failed updates." +msgstr "" + +#: ../../mod/admin.php:570 +msgid "Failed Updates" +msgstr "" + +#: ../../mod/admin.php:572 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:573 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:599 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:606 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:635 +msgid "Account not found" +msgstr "" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: ../../mod/admin.php:655 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: ../../mod/admin.php:722 ../../mod/admin.php:734 +msgid "Users" +msgstr "" + +#: ../../mod/admin.php:724 ../../mod/admin.php:860 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:725 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:726 +msgid "Request date" +msgstr "" + +#: ../../mod/admin.php:727 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:728 +msgid "Approve" +msgstr "" + +#: ../../mod/admin.php:729 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:735 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:735 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:735 +msgid "Expires" +msgstr "" + +#: ../../mod/admin.php:735 +msgid "Service Class" +msgstr "" + +#: ../../mod/admin.php:737 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:738 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:771 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:778 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:797 +msgid "Channel not found" +msgstr "" + +#: ../../mod/admin.php:808 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../mod/admin.php:819 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../mod/admin.php:862 +msgid "Censor" +msgstr "" + +#: ../../mod/admin.php:863 +msgid "Uncensor" +msgstr "" + +#: ../../mod/admin.php:866 +msgid "UID" +msgstr "" + +#: ../../mod/admin.php:868 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:869 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:908 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:912 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:922 ../../mod/admin.php:1124 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:924 ../../mod/admin.php:1126 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:950 ../../mod/admin.php:1155 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:958 ../../mod/admin.php:1165 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:959 ../../mod/admin.php:1166 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:1088 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1147 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1195 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1196 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1223 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1279 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1285 +msgid "Debugging" +msgstr "" + +#: ../../mod/admin.php:1286 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1286 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "" + +#: ../../mod/admin.php:1287 +msgid "Log level" +msgstr "" + +#: ../../mod/admin.php:1334 +msgid "New Profile Field" +msgstr "" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "Field nickname" +msgstr "" + +#: ../../mod/admin.php:1335 ../../mod/admin.php:1356 +msgid "System name of field" +msgstr "" + +#: ../../mod/admin.php:1336 ../../mod/admin.php:1357 +msgid "Input type" +msgstr "" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Field Name" +msgstr "" + +#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 +msgid "Label on profile pages" +msgstr "" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Help text" +msgstr "" + +#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 +msgid "Additional info (optional)" +msgstr "" + +#: ../../mod/admin.php:1349 +msgid "Field definition not found" +msgstr "" + +#: ../../mod/admin.php:1355 +msgid "Edit Profile Field" +msgstr "" + +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "" + +#: ../../mod/item.php:898 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:1373 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../mod/item.php:1379 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "" + +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +msgstr "" + +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." +msgstr "" + +#: ../../mod/like.php:119 +msgid "thing" +msgstr "" + +#: ../../mod/like.php:165 +msgid "Channel unavailable." +msgstr "" + +#: ../../mod/like.php:204 +msgid "Previous action reversed." +msgstr "" + +#: ../../mod/like.php:430 +msgid "Action completed." +msgstr "" + +#: ../../mod/like.php:431 +msgid "Thank you." +msgstr "" + #: ../../mod/invite.php:25 msgid "Total invitation limit exceeded." msgstr "" @@ -7421,45 +7551,6 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../mod/item.php:151 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:411 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:453 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:891 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:1366 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../mod/item.php:1372 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "" - -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "" - #: ../../mod/locs.php:19 ../../mod/locs.php:46 msgid "Location not found." msgstr "" @@ -7488,6 +7579,19 @@ msgstr "" msgid "Drop location" msgstr "" +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +msgid "[Embedded content - reload page to view]" +msgstr "" + +#: ../../mod/layouts.php:110 +msgid "Help with this feature" +msgstr "" + +#: ../../mod/layouts.php:130 +msgid "Layout Name" +msgstr "" + #: ../../mod/lockview.php:31 msgid "Remote privacy information not available." msgstr "" @@ -7509,79 +7613,6 @@ msgstr "" msgid "View Connnections" msgstr "" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:85 ../../boot.php:1523 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "" - #: ../../mod/magic.php:70 msgid "Hub not found." msgstr "" @@ -7668,31 +7699,6 @@ msgstr "" msgid "Send Reply" msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "" - #: ../../mod/wall_upload.php:34 msgid "Wall Photos" msgstr "" @@ -7713,87 +7719,91 @@ msgstr "" msgid "No matches" msgstr "" -#: ../../mod/menu.php:21 +#: ../../mod/menu.php:31 msgid "Menu updated." msgstr "" -#: ../../mod/menu.php:25 +#: ../../mod/menu.php:35 msgid "Unable to update menu." msgstr "" -#: ../../mod/menu.php:30 +#: ../../mod/menu.php:40 msgid "Menu created." msgstr "" -#: ../../mod/menu.php:34 +#: ../../mod/menu.php:44 msgid "Unable to create menu." msgstr "" -#: ../../mod/menu.php:57 +#: ../../mod/menu.php:76 msgid "Manage Menus" msgstr "" -#: ../../mod/menu.php:60 +#: ../../mod/menu.php:79 msgid "Drop" msgstr "" -#: ../../mod/menu.php:62 +#: ../../mod/menu.php:81 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../mod/menu.php:82 msgid "Create a new menu" msgstr "" -#: ../../mod/menu.php:63 +#: ../../mod/menu.php:83 msgid "Delete this menu" msgstr "" -#: ../../mod/menu.php:64 ../../mod/menu.php:109 +#: ../../mod/menu.php:84 ../../mod/menu.php:125 msgid "Edit menu contents" msgstr "" -#: ../../mod/menu.php:65 +#: ../../mod/menu.php:85 msgid "Edit this menu" msgstr "" -#: ../../mod/menu.php:80 +#: ../../mod/menu.php:96 msgid "New Menu" msgstr "" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Menu name" msgstr "" -#: ../../mod/menu.php:81 ../../mod/menu.php:110 +#: ../../mod/menu.php:97 ../../mod/menu.php:126 msgid "Must be unique, only seen by you" msgstr "" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title" msgstr "" -#: ../../mod/menu.php:82 ../../mod/menu.php:111 +#: ../../mod/menu.php:98 ../../mod/menu.php:127 msgid "Menu title as seen by others" msgstr "" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Allow bookmarks" msgstr "" -#: ../../mod/menu.php:83 ../../mod/menu.php:112 +#: ../../mod/menu.php:99 ../../mod/menu.php:128 msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../mod/menu.php:98 +#: ../../mod/menu.php:114 msgid "Menu deleted." msgstr "" -#: ../../mod/menu.php:100 +#: ../../mod/menu.php:116 msgid "Menu could not be deleted." msgstr "" -#: ../../mod/menu.php:106 +#: ../../mod/menu.php:122 msgid "Edit Menu" msgstr "" -#: ../../mod/menu.php:108 +#: ../../mod/menu.php:124 msgid "Add or remove entries to this menu" msgstr "" @@ -7877,6 +7887,14 @@ msgstr "" msgid "System Notifications" msgstr "" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "" @@ -7889,10 +7907,6 @@ msgstr "" msgid "invalid target signature" msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "" - #: ../../mod/appman.php:28 ../../mod/appman.php:44 msgid "App installed." msgstr "" @@ -8266,41 +8280,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1311 +#: ../../boot.php:1293 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1314 +#: ../../boot.php:1296 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1488 +#: ../../boot.php:1463 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1516 +#: ../../boot.php:1489 msgid "Password" msgstr "" -#: ../../boot.php:1517 +#: ../../boot.php:1490 msgid "Remember me" msgstr "" -#: ../../boot.php:1522 +#: ../../boot.php:1493 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1587 +#: ../../boot.php:1567 msgid "permission denied" msgstr "" -#: ../../boot.php:1588 +#: ../../boot.php:1568 msgid "Got Zot?" msgstr "" -#: ../../boot.php:2021 +#: ../../boot.php:2030 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index d86614502..0ea73e309 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-13.858 +2014-11-15.860 From c1b8608940055adabc8bf4bb85b843eb5cb95412 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Sun, 16 Nov 2014 13:56:45 +0100 Subject: [PATCH 09/20] Switch to a better datetime picker widget --- include/datetime.php | 45 +- .../css/bootstrap-datetimepicker.css | 238 --- .../css/bootstrap-datetimepicker.min.css | 5 - .../js/bootstrap-datetimepicker.min.js | 1 - .../bootstrap-datetimepicker/js/moment.min.js | 6 - library/datetimepicker/.gitignore | 1 + library/datetimepicker/MIT-LICENSE.txt | 19 + library/datetimepicker/README.md | 20 + .../datetimepicker/jquery.datetimepicker.css | 418 +++++ .../datetimepicker/jquery.datetimepicker.js | 1661 +++++++++++++++++ mod/events.php | 9 +- view/theme/redbasic/php/theme_init.php | 5 +- 12 files changed, 2153 insertions(+), 275 deletions(-) delete mode 100755 library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css delete mode 100755 library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css delete mode 100644 library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js delete mode 100644 library/bootstrap-datetimepicker/js/moment.min.js create mode 100644 library/datetimepicker/.gitignore create mode 100644 library/datetimepicker/MIT-LICENSE.txt create mode 100644 library/datetimepicker/README.md create mode 100644 library/datetimepicker/jquery.datetimepicker.css create mode 100644 library/datetimepicker/jquery.datetimepicker.js diff --git a/include/datetime.php b/include/datetime.php index 270be5e3d..59dad2045 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -163,12 +163,12 @@ function dob($dob) { * @param $id * id and name of datetimepicker (defaults to "datetimepicker") */ -function datesel($format, $min, $max, $default,$id = 'datepicker') { - return datetimesel($format,$min,$max,$default,$id,true,false); +function datesel($format, $min, $max, $default, $id = 'datepicker') { + return datetimesel($format,$min,$max,$default,$id,true,false, '',''); } /** - * returns a date selector + * returns a time selector * @param $format * format string, e.g. 'ymd' or 'mdy'. Not currently supported * @param $h @@ -178,8 +178,8 @@ function datesel($format, $min, $max, $default,$id = 'datepicker') { * @param $id * id and name of datetimepicker (defaults to "timepicker") */ -function timesel($format,$h,$m,$id='timepicker') { - return datetimesel($format,mktime(),mktime(),mktime($h,$m),$id,false,true); +function timesel($format, $h, $m, $id='timepicker') { + return datetimesel($format,new DateTime(),new DateTime(),new DateTime("$h:$m"),$id,false,true); } /** @@ -204,31 +204,42 @@ function timesel($format,$h,$m,$id='timepicker') { * set maximum date from picker with id $maxfrom (none by default) */ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pickdate = true, $picktime = true, $minfrom = '', $maxfrom = '') { + // Once browser support is better this could probably be replaced with native HTML5 date picker $o = ''; $dateformat = ''; - if($pickdate) $dateformat .= 'YYYY-MM-DD'; - if($pickdate && $picktime) $dateformat .= ' '; - if($picktime) $dateformat .= 'HH:mm'; - $mindate = $min ? "new Date($min*1000)" : ''; - $maxdate = $max ? "new Date($max*1000)" : ''; + if($pickdate) $dateformat .= 'Y-m-d'; + if($pickdate && $picktime) $dateformat .= ' '; + if($picktime) $dateformat .= 'H:i'; + + $minjs = $min ? ",minDate: new Date({$min->getTimestamp()}*1000), yearStart: " . $min->format('Y') : ''; + $maxjs = $max ? ",maxDate: new Date({$max->getTimestamp()}*1000), yearEnd: " . $max->format('Y') : ''; - $defaultDate = $default ? ", defaultDate: new Date($default*1000)" : ''; + $input_text = $default ? 'value="' . date($dateformat, $default->getTimestamp()) . '"' : ''; + $defaultdatejs = $default ? ",defaultDate: new Date({$default->getTimestamp()}*1000)" : ''; $pickers = ''; - if(!$pickdate) $pickers .= 'pickDate: false,'; - if(!$picktime) $pickers .= 'pickTime: false,'; + if(!$pickdate) $pickers .= ',datepicker: false'; + if(!$picktime) $pickers .= ',timepicker: false'; $extra_js = ''; if($minfrom != '') - $extra_js .= "\$('#$minfrom').on('dp.change',function (e) { \$('#$id').data('DateTimePicker').setMinDate(e.date); });"; + $extra_js .= "\$('#$minfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({minDate: currentDateTime})}})"; if($maxfrom != '') - $extra_js .= "\$('#$maxfrom').on('dp.change',function (e) { \$('#$id').data('DateTimePicker').setMaxDate(e.date); });"; + $extra_js .= "\$('#$maxfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({maxDate: currentDateTime})}})"; - $o .= "
      "; - $o .= ""; + $readable_format = $dateformat; + $readable_format = str_replace('Y','yyyy',$readable_format); + $readable_format = str_replace('m','mm',$readable_format); + $readable_format = str_replace('d','dd',$readable_format); + $readable_format = str_replace('H','HH',$readable_format); + $readable_format = str_replace('i','MM',$readable_format); + + $o .= "
      "; + $o .= '
      '; + $o .= ""; return $o; } diff --git a/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css b/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css deleted file mode 100755 index 80df7d86f..000000000 --- a/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css +++ /dev/null @@ -1,238 +0,0 @@ -/*! -* Datetimepicker for Bootstrap v3 -//! version : 3.1.3 -* https://github.com/Eonasdan/bootstrap-datetimepicker/ -*/ -.bootstrap-datetimepicker-widget { -top: 0; -left: 0; -width: 250px; -padding: 4px; -margin-top: 1px; -z-index: 99999 !important; -border-radius: 4px; -} -.bootstrap-datetimepicker-widget.timepicker-sbs { -width: 600px; -} -.bootstrap-datetimepicker-widget.bottom:before { -content: ''; -display: inline-block; -border-left: 7px solid transparent; -border-right: 7px solid transparent; -border-bottom: 7px solid #ccc; -border-bottom-color: rgba(0, 0, 0, 0.2); -position: absolute; -top: -7px; -left: 7px; -} -.bootstrap-datetimepicker-widget.bottom:after { -content: ''; -display: inline-block; -border-left: 6px solid transparent; -border-right: 6px solid transparent; -border-bottom: 6px solid white; -position: absolute; -top: -6px; -left: 8px; -} -.bootstrap-datetimepicker-widget.top:before { -content: ''; -display: inline-block; -border-left: 7px solid transparent; -border-right: 7px solid transparent; -border-top: 7px solid #ccc; -border-top-color: rgba(0, 0, 0, 0.2); -position: absolute; -bottom: -7px; -left: 6px; -} -.bootstrap-datetimepicker-widget.top:after { -content: ''; -display: inline-block; -border-left: 6px solid transparent; -border-right: 6px solid transparent; -border-top: 6px solid white; -position: absolute; -bottom: -6px; -left: 7px; -} -.bootstrap-datetimepicker-widget .dow { -width: 14.2857%; -} -.bootstrap-datetimepicker-widget.pull-right:before { -left: auto; -right: 6px; -} -.bootstrap-datetimepicker-widget.pull-right:after { -left: auto; -right: 7px; -} -.bootstrap-datetimepicker-widget > ul { -list-style-type: none; -margin: 0; -} -.bootstrap-datetimepicker-widget a[data-action] { -padding: 6px 0; -} -.bootstrap-datetimepicker-widget a[data-action]:active { -box-shadow: none; -} -.bootstrap-datetimepicker-widget .timepicker-hour, -.bootstrap-datetimepicker-widget .timepicker-minute, -.bootstrap-datetimepicker-widget .timepicker-second { -width: 54px; -font-weight: bold; -font-size: 1.2em; -margin: 0; -} -.bootstrap-datetimepicker-widget button[data-action] { -padding: 6px; -} -.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator { -width: 4px; -padding: 0; -margin: 0; -} -.bootstrap-datetimepicker-widget .datepicker > div { -display: none; -} -.bootstrap-datetimepicker-widget .picker-switch { -text-align: center; -} -.bootstrap-datetimepicker-widget table { -width: 100%; -margin: 0; -} -.bootstrap-datetimepicker-widget td, -.bootstrap-datetimepicker-widget th { -text-align: center; -border-radius: 4px; -} -.bootstrap-datetimepicker-widget td { -height: 54px; -line-height: 54px; -width: 54px; -} -.bootstrap-datetimepicker-widget td.cw { -font-size: 10px; -height: 20px; -line-height: 20px; -color: #777777; -} -.bootstrap-datetimepicker-widget td.day { -height: 20px; -line-height: 20px; -width: 20px; -} -.bootstrap-datetimepicker-widget td.day:hover, -.bootstrap-datetimepicker-widget td.hour:hover, -.bootstrap-datetimepicker-widget td.minute:hover, -.bootstrap-datetimepicker-widget td.second:hover { -background: #eeeeee; -cursor: pointer; -} -.bootstrap-datetimepicker-widget td.old, -.bootstrap-datetimepicker-widget td.new { -color: #777777; -} -.bootstrap-datetimepicker-widget td.today { -position: relative; -} -.bootstrap-datetimepicker-widget td.today:before { -content: ''; -display: inline-block; -border-left: 7px solid transparent; -border-bottom: 7px solid #428bca; -border-top-color: rgba(0, 0, 0, 0.2); -position: absolute; -bottom: 4px; -right: 4px; -} -.bootstrap-datetimepicker-widget td.active, -.bootstrap-datetimepicker-widget td.active:hover { -background-color: #428bca; -color: #ffffff; -text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.bootstrap-datetimepicker-widget td.active.today:before { -border-bottom-color: #fff; -} -.bootstrap-datetimepicker-widget td.disabled, -.bootstrap-datetimepicker-widget td.disabled:hover { -background: none; -color: #777777; -cursor: not-allowed; -} -.bootstrap-datetimepicker-widget td span { -display: inline-block; -width: 54px; -height: 54px; -line-height: 54px; -margin: 2px 1.5px; -cursor: pointer; -border-radius: 4px; -} -.bootstrap-datetimepicker-widget td span:hover { -background: #eeeeee; -} -.bootstrap-datetimepicker-widget td span.active { -background-color: #428bca; -color: #ffffff; -text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.bootstrap-datetimepicker-widget td span.old { -color: #777777; -} -.bootstrap-datetimepicker-widget td span.disabled, -.bootstrap-datetimepicker-widget td span.disabled:hover { -background: none; -color: #777777; -cursor: not-allowed; -} -.bootstrap-datetimepicker-widget th { -height: 20px; -line-height: 20px; -width: 20px; -} -.bootstrap-datetimepicker-widget th.picker-switch { -width: 145px; -} -.bootstrap-datetimepicker-widget th.next, -.bootstrap-datetimepicker-widget th.prev { -font-size: 21px; -} -.bootstrap-datetimepicker-widget th.disabled, -.bootstrap-datetimepicker-widget th.disabled:hover { -background: none; -color: #777777; -cursor: not-allowed; -} -.bootstrap-datetimepicker-widget thead tr:first-child th { -cursor: pointer; -} -.bootstrap-datetimepicker-widget thead tr:first-child th:hover { -background: #eeeeee; -} -.input-group.date .input-group-addon span { -display: block; -cursor: pointer; -width: 16px; -height: 16px; -} -.bootstrap-datetimepicker-widget.left-oriented:before { -left: auto; -right: 6px; -} -.bootstrap-datetimepicker-widget.left-oriented:after { -left: auto; -right: 7px; -} -.bootstrap-datetimepicker-widget ul.list-unstyled li div.timepicker div.timepicker-picker table.table-condensed tbody > tr > td { -padding: 0px !important; -} -@media screen and (max-width: 767px) { -.bootstrap-datetimepicker-widget.timepicker-sbs { -width: 283px; -} -} diff --git a/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css b/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css deleted file mode 100755 index 8136d3975..000000000 --- a/library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! -* Datetimepicker for Bootstrap v3 -//! version : 3.1.3 -* https://github.com/Eonasdan/bootstrap-datetimepicker/ -*/.bootstrap-datetimepicker-widget{top:0;left:0;width:250px;padding:4px;margin-top:1px;z-index:99999!important;border-radius:4px}.bootstrap-datetimepicker-widget.timepicker-sbs{width:600px}.bootstrap-datetimepicker-widget.bottom:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);position:absolute;top:-7px;left:7px}.bootstrap-datetimepicker-widget.bottom:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:8px}.bootstrap-datetimepicker-widget.top:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.top:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;position:absolute;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget .dow{width:14.2857%}.bootstrap-datetimepicker-widget.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget>ul{list-style-type:none;margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator{width:4px;padding:0;margin:0}.bootstrap-datetimepicker-widget .datepicker>div{display:none}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget td,.bootstrap-datetimepicker-widget th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget td.cw{font-size:10px;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget td.day:hover,.bootstrap-datetimepicker-widget td.hour:hover,.bootstrap-datetimepicker-widget td.minute:hover,.bootstrap-datetimepicker-widget td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget td.old,.bootstrap-datetimepicker-widget td.new{color:#777}.bootstrap-datetimepicker-widget td.today{position:relative}.bootstrap-datetimepicker-widget td.today:before{content:'';display:inline-block;border-left:7px solid transparent;border-bottom:7px solid #428bca;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget td.active,.bootstrap-datetimepicker-widget td.active:hover{background-color:#428bca;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget td.disabled,.bootstrap-datetimepicker-widget td.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget td span:hover{background:#eee}.bootstrap-datetimepicker-widget td span.active{background-color:#428bca;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget td span.old{color:#777}.bootstrap-datetimepicker-widget td span.disabled,.bootstrap-datetimepicker-widget td span.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget th.picker-switch{width:145px}.bootstrap-datetimepicker-widget th.next,.bootstrap-datetimepicker-widget th.prev{font-size:21px}.bootstrap-datetimepicker-widget th.disabled,.bootstrap-datetimepicker-widget th.disabled:hover{background:0 0;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget thead tr:first-child th:hover{background:#eee}.input-group.date .input-group-addon span{display:block;cursor:pointer;width:16px;height:16px}.bootstrap-datetimepicker-widget.left-oriented:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.left-oriented:after{left:auto;right:7px}.bootstrap-datetimepicker-widget ul.list-unstyled li div.timepicker div.timepicker-picker table.table-condensed tbody>tr>td{padding:0!important}@media screen and (max-width:767px){.bootstrap-datetimepicker-widget.timepicker-sbs{width:283px}} diff --git a/library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js b/library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js deleted file mode 100644 index 20ad225b1..000000000 --- a/library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(a,b){"use strict";if("function"==typeof define&&define.amd)define(["jquery","moment"],b);else if("object"==typeof exports)b(require("jquery"),require("moment"));else{if(!jQuery)throw new Error("bootstrap-datetimepicker requires jQuery to be loaded first");if(!moment)throw new Error("bootstrap-datetimepicker requires moment.js to be loaded first");b(a.jQuery,moment)}}(this,function(a,b){"use strict";if("undefined"==typeof b)throw new Error("momentjs is required");var c=0,d=function(d,e){var f,g=a.fn.datetimepicker.defaults,h={time:"glyphicon glyphicon-time",date:"glyphicon glyphicon-calendar",up:"glyphicon glyphicon-chevron-up",down:"glyphicon glyphicon-chevron-down"},i=this,j=!1,k=function(){var f,j,k=!1;if(i.options=a.extend({},g,e),i.options.icons=a.extend({},h,i.options.icons),i.element=a(d),m(),!i.options.pickTime&&!i.options.pickDate)throw new Error("Must choose at least one picker");if(i.id=c++,b.locale(i.options.language),i.date=b(),i.unset=!1,i.isInput=i.element.is("input"),i.component=!1,i.element.hasClass("input-group")&&(i.component=i.element.find(0===i.element.find(".datepickerbutton").size()?'[class^="input-group-"]':".datepickerbutton")),i.format=i.options.format,f=b().localeData(),i.format||(i.format=i.options.pickDate?f.longDateFormat("L"):"",i.options.pickDate&&i.options.pickTime&&(i.format+=" "),i.format+=i.options.pickTime?f.longDateFormat("LT"):"",i.options.useSeconds&&(-1!==f.longDateFormat("LT").indexOf(" A")?i.format=i.format.split(" A")[0]+":ss A":i.format+=":ss")),i.use24hours=i.format.toLowerCase().indexOf("a")<0&&i.format.indexOf("h")<0,i.component&&(k=i.component.find("span")),i.options.pickTime&&k&&k.addClass(i.options.icons.time),i.options.pickDate&&k&&(k.removeClass(i.options.icons.time),k.addClass(i.options.icons.date)),i.options.widgetParent="string"==typeof i.options.widgetParent&&i.options.widgetParent||i.element.parents().filter(function(){return"scroll"===a(this).css("overflow-y")}).get(0)||"body",i.widget=a(Q()).appendTo(i.options.widgetParent),i.minViewMode=i.options.minViewMode||0,"string"==typeof i.minViewMode)switch(i.minViewMode){case"months":i.minViewMode=1;break;case"years":i.minViewMode=2;break;default:i.minViewMode=0}if(i.viewMode=i.options.viewMode||0,"string"==typeof i.viewMode)switch(i.viewMode){case"months":i.viewMode=1;break;case"years":i.viewMode=2;break;default:i.viewMode=0}i.viewMode=Math.max(i.viewMode,i.minViewMode),i.options.disabledDates=O(i.options.disabledDates),i.options.enabledDates=O(i.options.enabledDates),i.startViewMode=i.viewMode,i.setMinDate(i.options.minDate),i.setMaxDate(i.options.maxDate),r(),s(),u(),v(),w(),q(),E(),l().prop("disabled")||F(),""!==i.options.defaultDate&&""===l().val()&&i.setValue(i.options.defaultDate),1!==i.options.minuteStepping&&(j=i.options.minuteStepping,i.date.minutes(Math.round(i.date.minutes()/j)*j%60).seconds(0))},l=function(){var a;if(i.isInput)return i.element;if(a=i.element.find(".datepickerinput"),0===a.size())a=i.element.find("input");else if(!a.is("input"))throw new Error('CSS class "datepickerinput" cannot be applied to non input element');return a},m=function(){var a;a=i.element.is("input")?i.element.data():i.element.find("input").data(),void 0!==a.dateFormat&&(i.options.format=a.dateFormat),void 0!==a.datePickdate&&(i.options.pickDate=a.datePickdate),void 0!==a.datePicktime&&(i.options.pickTime=a.datePicktime),void 0!==a.dateUseminutes&&(i.options.useMinutes=a.dateUseminutes),void 0!==a.dateUseseconds&&(i.options.useSeconds=a.dateUseseconds),void 0!==a.dateUsecurrent&&(i.options.useCurrent=a.dateUsecurrent),void 0!==a.calendarWeeks&&(i.options.calendarWeeks=a.calendarWeeks),void 0!==a.dateMinutestepping&&(i.options.minuteStepping=a.dateMinutestepping),void 0!==a.dateMindate&&(i.options.minDate=a.dateMindate),void 0!==a.dateMaxdate&&(i.options.maxDate=a.dateMaxdate),void 0!==a.dateShowtoday&&(i.options.showToday=a.dateShowtoday),void 0!==a.dateCollapse&&(i.options.collapse=a.dateCollapse),void 0!==a.dateLanguage&&(i.options.language=a.dateLanguage),void 0!==a.dateDefaultdate&&(i.options.defaultDate=a.dateDefaultdate),void 0!==a.dateDisableddates&&(i.options.disabledDates=a.dateDisableddates),void 0!==a.dateEnableddates&&(i.options.enabledDates=a.dateEnableddates),void 0!==a.dateIcons&&(i.options.icons=a.dateIcons),void 0!==a.dateUsestrict&&(i.options.useStrict=a.dateUsestrict),void 0!==a.dateDirection&&(i.options.direction=a.dateDirection),void 0!==a.dateSidebyside&&(i.options.sideBySide=a.dateSidebyside),void 0!==a.dateDaysofweekdisabled&&(i.options.daysOfWeekDisabled=a.dateDaysofweekdisabled)},n=function(){var b,c="absolute",d=i.component?i.component.offset():i.element.offset(),e=a(window);i.width=i.component?i.component.outerWidth():i.element.outerWidth(),d.top=d.top+i.element.outerHeight(),"up"===i.options.direction?b="top":"bottom"===i.options.direction?b="bottom":"auto"===i.options.direction&&(b=d.top+i.widget.height()>e.height()+e.scrollTop()&&i.widget.height()+i.element.outerHeight()"),e=b.weekdaysMin();if(i.options.calendarWeeks===!0&&d.append('#'),0===b().localeData()._week.dow)for(c=0;7>c;c++)d.append(''+e[c]+"");else for(c=1;8>c;c++)d.append(7===c?''+e[0]+"":''+e[c]+"");i.widget.find(".datepicker-days thead").append(d)},s=function(){b.locale(i.options.language);var a,c="",d=b.monthsShort();for(a=0;12>a;a++)c+=''+d[a]+"";i.widget.find(".datepicker-months td").append(c)},t=function(){if(i.options.pickDate){b.locale(i.options.language);var c,d,e,f,g,h,j,k,l,m=i.viewDate.year(),n=i.viewDate.month(),o=i.options.minDate.year(),p=i.options.minDate.month(),q=i.options.maxDate.year(),r=i.options.maxDate.month(),s=[],t=b.months();for(i.widget.find(".datepicker-days").find(".disabled").removeClass("disabled"),i.widget.find(".datepicker-months").find(".disabled").removeClass("disabled"),i.widget.find(".datepicker-years").find(".disabled").removeClass("disabled"),i.widget.find(".datepicker-days th:eq(1)").text(t[n]+" "+m),d=b(i.viewDate,i.format,i.options.useStrict).subtract(1,"months"),j=d.daysInMonth(),d.date(j).startOf("week"),(m===o&&p>=n||o>m)&&i.widget.find(".datepicker-days th:eq(0)").addClass("disabled"),(m===q&&n>=r||m>q)&&i.widget.find(".datepicker-days th:eq(2)").addClass("disabled"),e=b(d).add(42,"d");d.isBefore(e);){if(d.weekday()===b().startOf("week").weekday()&&(f=a(""),s.push(f),i.options.calendarWeeks===!0&&f.append(''+d.week()+"")),g="",d.year()m||d.year()===m&&d.month()>n)&&(g+=" new"),d.isSame(b({y:i.date.year(),M:i.date.month(),d:i.date.date()}))&&(g+=" active"),(M(d,"day")||!N(d))&&(g+=" disabled"),i.options.showToday===!0&&d.isSame(b(),"day")&&(g+=" today"),i.options.daysOfWeekDisabled)for(h=0;h'+d.date()+""),c=d.date(),d.add(1,"d"),c===d.date()&&d.add(1,"d")}for(i.widget.find(".datepicker-days tbody").empty().append(s),l=i.date.year(),t=i.widget.find(".datepicker-months").find("th:eq(1)").text(m).end().find("span").removeClass("active"),l===m&&t.eq(i.date.month()).addClass("active"),o>m-1&&i.widget.find(".datepicker-months th:eq(0)").addClass("disabled"),m+1>q&&i.widget.find(".datepicker-months th:eq(2)").addClass("disabled"),h=0;12>h;h++)m===o&&p>h||o>m?a(t[h]).addClass("disabled"):(m===q&&h>r||m>q)&&a(t[h]).addClass("disabled");for(s="",m=10*parseInt(m/10,10),k=i.widget.find(".datepicker-years").find("th:eq(1)").text(m+"-"+(m+9)).parents("table").find("td"),i.widget.find(".datepicker-years").find("th").removeClass("disabled"),o>m&&i.widget.find(".datepicker-years").find("th:eq(0)").addClass("disabled"),m+9>q&&i.widget.find(".datepicker-years").find("th:eq(2)").addClass("disabled"),m-=1,h=-1;11>h;h++)s+='m||m>q?" disabled":"")+'">'+m+"",m+=1;k.html(s)}},u=function(){b.locale(i.options.language);var a,c,d,e=i.widget.find(".timepicker .timepicker-hours table"),f="";if(e.parent().hide(),i.use24hours)for(a=0,c=0;6>c;c+=1){for(f+="",d=0;4>d;d+=1)f+=''+P(a.toString())+"",a++;f+=""}else for(a=1,c=0;3>c;c+=1){for(f+="",d=0;4>d;d+=1)f+=''+P(a.toString())+"",a++;f+=""}e.html(f)},v=function(){var a,b,c=i.widget.find(".timepicker .timepicker-minutes table"),d="",e=0,f=i.options.minuteStepping;for(c.parent().hide(),1===f&&(f=5),a=0;ab;b+=1)60>e?(d+=''+P(e.toString())+"",e+=f):d+="";d+=""}c.html(d)},w=function(){var a,b,c=i.widget.find(".timepicker .timepicker-seconds table"),d="",e=0;for(c.parent().hide(),a=0;3>a;a++){for(d+="",b=0;4>b;b+=1)d+=''+P(e.toString())+"",e+=5;d+=""}c.html(d)},x=function(){if(i.date){var a=i.widget.find(".timepicker span[data-time-component]"),b=i.date.hours(),c=i.date.format("A");i.use24hours||(0===b?b=12:12!==b&&(b%=12),i.widget.find(".timepicker [data-action=togglePeriod]").text(c)),a.filter("[data-time-component=hours]").text(P(b)),a.filter("[data-time-component=minutes]").text(P(i.date.minutes())),a.filter("[data-time-component=seconds]").text(P(i.date.second()))}},y=function(c){c.stopPropagation(),c.preventDefault(),i.unset=!1;var d,e,f,g,h=a(c.target).closest("span, td, th"),j=b(i.date);if(1===h.length&&!h.is(".disabled"))switch(h[0].nodeName.toLowerCase()){case"th":switch(h[0].className){case"picker-switch":E(1);break;case"prev":case"next":f=R.modes[i.viewMode].navStep,"prev"===h[0].className&&(f=-1*f),i.viewDate.add(f,R.modes[i.viewMode].navFnc),t()}break;case"span":h.is(".month")?(d=h.parent().find("span").index(h),i.viewDate.month(d)):(e=parseInt(h.text(),10)||0,i.viewDate.year(e)),i.viewMode===i.minViewMode&&(i.date=b({y:i.viewDate.year(),M:i.viewDate.month(),d:i.viewDate.date(),h:i.date.hours(),m:i.date.minutes(),s:i.date.seconds()}),K(),o(j,c.type)),E(-1),t();break;case"td":h.is(".day")&&(g=parseInt(h.text(),10)||1,d=i.viewDate.month(),e=i.viewDate.year(),h.is(".old")?0===d?(d=11,e-=1):d-=1:h.is(".new")&&(11===d?(d=0,e+=1):d+=1),i.date=b({y:e,M:d,d:g,h:i.date.hours(),m:i.date.minutes(),s:i.date.seconds()}),i.viewDate=b({y:e,M:d,d:Math.min(28,g)}),t(),K(),o(j,c.type))}},z={incrementHours:function(){L("add","hours",1)},incrementMinutes:function(){L("add","minutes",i.options.minuteStepping)},incrementSeconds:function(){L("add","seconds",1)},decrementHours:function(){L("subtract","hours",1)},decrementMinutes:function(){L("subtract","minutes",i.options.minuteStepping)},decrementSeconds:function(){L("subtract","seconds",1)},togglePeriod:function(){var a=i.date.hours();a>=12?a-=12:a+=12,i.date.hours(a)},showPicker:function(){i.widget.find(".timepicker > div:not(.timepicker-picker)").hide(),i.widget.find(".timepicker .timepicker-picker").show()},showHours:function(){i.widget.find(".timepicker .timepicker-picker").hide(),i.widget.find(".timepicker .timepicker-hours").show()},showMinutes:function(){i.widget.find(".timepicker .timepicker-picker").hide(),i.widget.find(".timepicker .timepicker-minutes").show()},showSeconds:function(){i.widget.find(".timepicker .timepicker-picker").hide(),i.widget.find(".timepicker .timepicker-seconds").show()},selectHour:function(b){var c=parseInt(a(b.target).text(),10);i.use24hours||(i.date.hours()>=12?12!==c&&(c+=12):12===c&&(c=0)),i.date.hours(c),z.showPicker.call(i)},selectMinute:function(b){i.date.minutes(parseInt(a(b.target).text(),10)),z.showPicker.call(i)},selectSecond:function(b){i.date.seconds(parseInt(a(b.target).text(),10)),z.showPicker.call(i)}},A=function(c){var d=b(i.date),e=a(c.currentTarget).data("action"),f=z[e].apply(i,arguments);return B(c),i.date||(i.date=b({y:1970})),K(),x(),o(d,c.type),f},B=function(a){a.stopPropagation(),a.preventDefault()},C=function(a){27===a.keyCode&&i.hide()},D=function(c){b.locale(i.options.language);var d=a(c.target),e=b(i.date),f=b(d.val(),i.format,i.options.useStrict);f.isValid()&&!M(f)&&N(f)?(q(),i.setValue(f),o(e,c.type),K()):(i.viewDate=e,i.unset=!0,o(e,c.type),p(f))},E=function(a){a&&(i.viewMode=Math.max(i.minViewMode,Math.min(2,i.viewMode+a))),i.widget.find(".datepicker > div").hide().filter(".datepicker-"+R.modes[i.viewMode].clsName).show()},F=function(){var b,c,d,e,f;i.widget.on("click",".datepicker *",a.proxy(y,this)),i.widget.on("click","[data-action]",a.proxy(A,this)),i.widget.on("mousedown",a.proxy(B,this)),i.element.on("keydown",a.proxy(C,this)),i.options.pickDate&&i.options.pickTime&&i.widget.on("click.togglePicker",".accordion-toggle",function(g){if(g.stopPropagation(),b=a(this),c=b.closest("ul"),d=c.find(".in"),e=c.find(".collapse:not(.in)"),d&&d.length){if(f=d.data("collapse"),f&&f.transitioning)return;d.collapse("hide"),e.collapse("show"),b.find("span").toggleClass(i.options.icons.time+" "+i.options.icons.date),i.component&&i.component.find("span").toggleClass(i.options.icons.time+" "+i.options.icons.date)}}),i.isInput?i.element.on({click:a.proxy(i.show,this),focus:a.proxy(i.show,this),change:a.proxy(D,this),blur:a.proxy(i.hide,this)}):(i.element.on({change:a.proxy(D,this)},"input"),i.component?(i.component.on("click",a.proxy(i.show,this)),i.component.on("mousedown",a.proxy(B,this))):i.element.on("click",a.proxy(i.show,this)))},G=function(){a(window).on("resize.datetimepicker"+i.id,a.proxy(n,this)),i.isInput||a(document).on("mousedown.datetimepicker"+i.id,a.proxy(i.hide,this))},H=function(){i.widget.off("click",".datepicker *",i.click),i.widget.off("click","[data-action]"),i.widget.off("mousedown",i.stopEvent),i.options.pickDate&&i.options.pickTime&&i.widget.off("click.togglePicker"),i.isInput?i.element.off({focus:i.show,change:D,click:i.show,blur:i.hide}):(i.element.off({change:D},"input"),i.component?(i.component.off("click",i.show),i.component.off("mousedown",i.stopEvent)):i.element.off("click",i.show))},I=function(){a(window).off("resize.datetimepicker"+i.id),i.isInput||a(document).off("mousedown.datetimepicker"+i.id)},J=function(){if(i.element){var b,c=i.element.parents(),d=!1;for(b=0;b0?d:!1},P=function(a){return a=a.toString(),a.length>=2?a:"0"+a},Q=function(){var a='‹›',b='',c='
      '+a+'
      '+a+b+'
      '+a+b+"
      ",d="";return i.options.pickDate&&i.options.pickTime?(d='
      ',d+=i.options.sideBySide?'
      '+c+'
      '+S.getTemplate()+"
      ":'
        '+c+'
      • '+S.getTemplate()+"
      ",d+="
      "):i.options.pickTime?'":'"},R={modes:[{clsName:"days",navFnc:"month",navStep:1},{clsName:"months",navFnc:"year",navStep:1},{clsName:"years",navFnc:"year",navStep:10}]},S={hourTemplate:'',minuteTemplate:'',secondTemplate:''};S.getTemplate=function(){return'
      "+(i.options.useSeconds?'':"")+(i.use24hours?"":'')+" "+(i.options.useSeconds?'":"")+(i.use24hours?"":'')+'"+(i.options.useSeconds?'':"")+(i.use24hours?"":'')+'
      '+(i.options.useMinutes?'':"")+"
      "+S.hourTemplate+' :'+(i.options.useMinutes?S.minuteTemplate:'00')+":'+S.secondTemplate+"
      '+(i.options.useMinutes?'':"")+"
      '+(i.options.useSeconds?'
      ':"")},i.destroy=function(){H(),I(),i.widget.remove(),i.element.removeData("DateTimePicker"),i.component&&i.component.removeData("DateTimePicker")},i.show=function(a){if(!l().prop("disabled")){if(i.options.useCurrent&&""===l().val()){if(1!==i.options.minuteStepping){var c=b(),d=i.options.minuteStepping;c.minutes(Math.round(c.minutes()/d)*d%60).seconds(0),i.setValue(c.format(i.format))}else i.setValue(b().format(i.format));o("",a.type)}a&&"click"===a.type&&i.isInput&&i.widget.hasClass("picker-open")||(i.widget.hasClass("picker-open")?(i.widget.hide(),i.widget.removeClass("picker-open")):(i.widget.show(),i.widget.addClass("picker-open")),i.height=i.component?i.component.outerHeight():i.element.outerHeight(),n(),i.element.trigger({type:"dp.show",date:b(i.date)}),G(),a&&B(a))}},i.disable=function(){var a=l();a.prop("disabled")||(a.prop("disabled",!0),H())},i.enable=function(){var a=l();a.prop("disabled")&&(a.prop("disabled",!1),F())},i.hide=function(){var a,c,d=i.widget.find(".collapse");for(a=0;a0)for(c in Fb)d=Fb[c],e=b[d],"undefined"!=typeof e&&(a[d]=e);return a}function n(a){return 0>a?Math.ceil(a):Math.floor(a)}function o(a,b,c){for(var d=""+Math.abs(a),e=a>=0;d.lengthd;d++)(c&&a[d]!==b[d]||!c&&z(a[d])!==z(b[d]))&&g++;return g+f}function w(a){if(a){var b=a.toLowerCase().replace(/(.)s$/,"$1");a=gc[a]||hc[b]||b}return a}function x(a){var b,c,d={};for(c in a)a.hasOwnProperty(c)&&(b=w(c),b&&(d[b]=a[c]));return d}function y(b){var c,d;if(0===b.indexOf("week"))c=7,d="day";else{if(0!==b.indexOf("month"))return;c=12,d="month"}rb[b]=function(e,f){var g,h,i=rb._locale[b],j=[];if("number"==typeof e&&(f=e,e=a),h=function(a){var b=rb().utc().set(d,a);return i.call(rb._locale,b,e||"")},null!=f)return h(f);for(g=0;c>g;g++)j.push(h(g));return j}}function z(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=b>=0?Math.floor(b):Math.ceil(b)),c}function A(a,b){return new Date(Date.UTC(a,b+1,0)).getUTCDate()}function B(a,b,c){return fb(rb([a,11,31+b-c]),b,c).week}function C(a){return D(a)?366:365}function D(a){return a%4===0&&a%100!==0||a%400===0}function E(a){var b;a._a&&-2===a._pf.overflow&&(b=a._a[yb]<0||a._a[yb]>11?yb:a._a[zb]<1||a._a[zb]>A(a._a[xb],a._a[yb])?zb:a._a[Ab]<0||a._a[Ab]>23?Ab:a._a[Bb]<0||a._a[Bb]>59?Bb:a._a[Cb]<0||a._a[Cb]>59?Cb:a._a[Db]<0||a._a[Db]>999?Db:-1,a._pf._overflowDayOfYear&&(xb>b||b>zb)&&(b=zb),a._pf.overflow=b)}function F(a){return null==a._isValid&&(a._isValid=!isNaN(a._d.getTime())&&a._pf.overflow<0&&!a._pf.empty&&!a._pf.invalidMonth&&!a._pf.nullInput&&!a._pf.invalidFormat&&!a._pf.userInvalidated,a._strict&&(a._isValid=a._isValid&&0===a._pf.charsLeftOver&&0===a._pf.unusedTokens.length)),a._isValid}function G(a){return a?a.toLowerCase().replace("_","-"):a}function H(a){for(var b,c,d,e,f=0;f0;){if(d=I(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&v(e,c,!0)>=b-1)break;b--}f++}return null}function I(a){var b=null;if(!Eb[a]&&Gb)try{b=rb.locale(),require("./locale/"+a),rb.locale(b)}catch(c){}return Eb[a]}function J(a,b){return b._isUTC?rb(a).zone(b._offset||0):rb(a).local()}function K(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function L(a){var b,c,d=a.match(Kb);for(b=0,c=d.length;c>b;b++)d[b]=mc[d[b]]?mc[d[b]]:K(d[b]);return function(e){var f="";for(b=0;c>b;b++)f+=d[b]instanceof Function?d[b].call(e,a):d[b];return f}}function M(a,b){return a.isValid()?(b=N(b,a.localeData()),ic[b]||(ic[b]=L(b)),ic[b](a)):a.localeData().invalidDate()}function N(a,b){function c(a){return b.longDateFormat(a)||a}var d=5;for(Lb.lastIndex=0;d>=0&&Lb.test(a);)a=a.replace(Lb,c),Lb.lastIndex=0,d-=1;return a}function O(a,b){var c,d=b._strict;switch(a){case"Q":return Wb;case"DDDD":return Yb;case"YYYY":case"GGGG":case"gggg":return d?Zb:Ob;case"Y":case"G":case"g":return _b;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return d?$b:Pb;case"S":if(d)return Wb;case"SS":if(d)return Xb;case"SSS":if(d)return Yb;case"DDD":return Nb;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Rb;case"a":case"A":return b._locale._meridiemParse;case"X":return Ub;case"Z":case"ZZ":return Sb;case"T":return Tb;case"SSSS":return Qb;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return d?Xb:Mb;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Mb;case"Do":return Vb;default:return c=new RegExp(X(W(a.replace("\\","")),"i"))}}function P(a){a=a||"";var b=a.match(Sb)||[],c=b[b.length-1]||[],d=(c+"").match(ec)||["-",0,0],e=+(60*d[1])+z(d[2]);return"+"===d[0]?-e:e}function Q(a,b,c){var d,e=c._a;switch(a){case"Q":null!=b&&(e[yb]=3*(z(b)-1));break;case"M":case"MM":null!=b&&(e[yb]=z(b)-1);break;case"MMM":case"MMMM":d=c._locale.monthsParse(b),null!=d?e[yb]=d:c._pf.invalidMonth=b;break;case"D":case"DD":null!=b&&(e[zb]=z(b));break;case"Do":null!=b&&(e[zb]=z(parseInt(b,10)));break;case"DDD":case"DDDD":null!=b&&(c._dayOfYear=z(b));break;case"YY":e[xb]=rb.parseTwoDigitYear(b);break;case"YYYY":case"YYYYY":case"YYYYYY":e[xb]=z(b);break;case"a":case"A":c._isPm=c._locale.isPM(b);break;case"H":case"HH":case"h":case"hh":e[Ab]=z(b);break;case"m":case"mm":e[Bb]=z(b);break;case"s":case"ss":e[Cb]=z(b);break;case"S":case"SS":case"SSS":case"SSSS":e[Db]=z(1e3*("0."+b));break;case"X":c._d=new Date(1e3*parseFloat(b));break;case"Z":case"ZZ":c._useUTC=!0,c._tzm=P(b);break;case"dd":case"ddd":case"dddd":d=c._locale.weekdaysParse(b),null!=d?(c._w=c._w||{},c._w.d=d):c._pf.invalidWeekday=b;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":a=a.substr(0,1);case"gggg":case"GGGG":case"GGGGG":a=a.substr(0,2),b&&(c._w=c._w||{},c._w[a]=z(b));break;case"gg":case"GG":c._w=c._w||{},c._w[a]=rb.parseTwoDigitYear(b)}}function R(a){var c,d,e,f,g,h,i;c=a._w,null!=c.GG||null!=c.W||null!=c.E?(g=1,h=4,d=b(c.GG,a._a[xb],fb(rb(),1,4).year),e=b(c.W,1),f=b(c.E,1)):(g=a._locale._week.dow,h=a._locale._week.doy,d=b(c.gg,a._a[xb],fb(rb(),g,h).year),e=b(c.w,1),null!=c.d?(f=c.d,g>f&&++e):f=null!=c.e?c.e+g:g),i=gb(d,e,f,h,g),a._a[xb]=i.year,a._dayOfYear=i.dayOfYear}function S(a){var c,d,e,f,g=[];if(!a._d){for(e=U(a),a._w&&null==a._a[zb]&&null==a._a[yb]&&R(a),a._dayOfYear&&(f=b(a._a[xb],e[xb]),a._dayOfYear>C(f)&&(a._pf._overflowDayOfYear=!0),d=bb(f,0,a._dayOfYear),a._a[yb]=d.getUTCMonth(),a._a[zb]=d.getUTCDate()),c=0;3>c&&null==a._a[c];++c)a._a[c]=g[c]=e[c];for(;7>c;c++)a._a[c]=g[c]=null==a._a[c]?2===c?1:0:a._a[c];a._d=(a._useUTC?bb:ab).apply(null,g),null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()+a._tzm)}}function T(a){var b;a._d||(b=x(a._i),a._a=[b.year,b.month,b.day,b.hour,b.minute,b.second,b.millisecond],S(a))}function U(a){var b=new Date;return a._useUTC?[b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate()]:[b.getFullYear(),b.getMonth(),b.getDate()]}function V(a){if(a._f===rb.ISO_8601)return void Z(a);a._a=[],a._pf.empty=!0;var b,c,d,e,f,g=""+a._i,h=g.length,i=0;for(d=N(a._f,a._locale).match(Kb)||[],b=0;b0&&a._pf.unusedInput.push(f),g=g.slice(g.indexOf(c)+c.length),i+=c.length),mc[e]?(c?a._pf.empty=!1:a._pf.unusedTokens.push(e),Q(e,c,a)):a._strict&&!c&&a._pf.unusedTokens.push(e);a._pf.charsLeftOver=h-i,g.length>0&&a._pf.unusedInput.push(g),a._isPm&&a._a[Ab]<12&&(a._a[Ab]+=12),a._isPm===!1&&12===a._a[Ab]&&(a._a[Ab]=0),S(a),E(a)}function W(a){return a.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e})}function X(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function Y(a){var b,d,e,f,g;if(0===a._f.length)return a._pf.invalidFormat=!0,void(a._d=new Date(0/0));for(f=0;fg)&&(e=g,d=b));l(a,d||b)}function Z(a){var b,c,d=a._i,e=ac.exec(d);if(e){for(a._pf.iso=!0,b=0,c=cc.length;c>b;b++)if(cc[b][1].exec(d)){a._f=cc[b][0]+(e[6]||" ");break}for(b=0,c=dc.length;c>b;b++)if(dc[b][1].exec(d)){a._f+=dc[b][0];break}d.match(Sb)&&(a._f+="Z"),V(a)}else a._isValid=!1}function $(a){Z(a),a._isValid===!1&&(delete a._isValid,rb.createFromInputFallback(a))}function _(b){var c,d=b._i;d===a?b._d=new Date:u(d)?b._d=new Date(+d):null!==(c=Hb.exec(d))?b._d=new Date(+c[1]):"string"==typeof d?$(b):t(d)?(b._a=d.slice(0),S(b)):"object"==typeof d?T(b):"number"==typeof d?b._d=new Date(d):rb.createFromInputFallback(b)}function ab(a,b,c,d,e,f,g){var h=new Date(a,b,c,d,e,f,g);return 1970>a&&h.setFullYear(a),h}function bb(a){var b=new Date(Date.UTC.apply(null,arguments));return 1970>a&&b.setUTCFullYear(a),b}function cb(a,b){if("string"==typeof a)if(isNaN(a)){if(a=b.weekdaysParse(a),"number"!=typeof a)return null}else a=parseInt(a,10);return a}function db(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function eb(a,b,c){var d=rb.duration(a).abs(),e=wb(d.as("s")),f=wb(d.as("m")),g=wb(d.as("h")),h=wb(d.as("d")),i=wb(d.as("M")),j=wb(d.as("y")),k=e0,k[4]=c,db.apply({},k)}function fb(a,b,c){var d,e=c-b,f=c-a.day();return f>e&&(f-=7),e-7>f&&(f+=7),d=rb(a).add(f,"d"),{week:Math.ceil(d.dayOfYear()/7),year:d.year()}}function gb(a,b,c,d,e){var f,g,h=bb(a,0,1).getUTCDay();return h=0===h?7:h,c=null!=c?c:e,f=e-h+(h>d?7:0)-(e>h?7:0),g=7*(b-1)+(c-e)+f+1,{year:g>0?a:a-1,dayOfYear:g>0?g:C(a-1)+g}}function hb(b){var c=b._i,d=b._f;return b._locale=b._locale||rb.localeData(b._l),null===c||d===a&&""===c?rb.invalid({nullInput:!0}):("string"==typeof c&&(b._i=c=b._locale.preparse(c)),rb.isMoment(c)?new j(c,!0):(d?t(d)?Y(b):V(b):_(b),new j(b)))}function ib(a,b){var c,d;if(1===b.length&&t(b[0])&&(b=b[0]),!b.length)return rb();for(c=b[0],d=1;d=0?"+":"-";return b+o(Math.abs(a),6)},gg:function(){return o(this.weekYear()%100,2)},gggg:function(){return o(this.weekYear(),4)},ggggg:function(){return o(this.weekYear(),5)},GG:function(){return o(this.isoWeekYear()%100,2)},GGGG:function(){return o(this.isoWeekYear(),4)},GGGGG:function(){return o(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return z(this.milliseconds()/100)},SS:function(){return o(z(this.milliseconds()/10),2)},SSS:function(){return o(this.milliseconds(),3)},SSSS:function(){return o(this.milliseconds(),3)},Z:function(){var a=-this.zone(),b="+";return 0>a&&(a=-a,b="-"),b+o(z(a/60),2)+":"+o(z(a)%60,2)},ZZ:function(){var a=-this.zone(),b="+";return 0>a&&(a=-a,b="-"),b+o(z(a/60),2)+o(z(a)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},X:function(){return this.unix()},Q:function(){return this.quarter()}},nc={},oc=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"];kc.length;)tb=kc.pop(),mc[tb+"o"]=h(mc[tb],tb);for(;lc.length;)tb=lc.pop(),mc[tb+tb]=g(mc[tb],2);mc.DDDD=g(mc.DDD,3),l(i.prototype,{set:function(a){var b,c;for(c in a)b=a[c],"function"==typeof b?this[c]=b:this["_"+c]=b},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(a){return this._months[a.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(a){return this._monthsShort[a.month()]},monthsParse:function(a){var b,c,d;for(this._monthsParse||(this._monthsParse=[]),b=0;12>b;b++)if(this._monthsParse[b]||(c=rb.utc([2e3,b]),d="^"+this.months(c,"")+"|^"+this.monthsShort(c,""),this._monthsParse[b]=new RegExp(d.replace(".",""),"i")),this._monthsParse[b].test(a))return b},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(a){return this._weekdays[a.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(a){return this._weekdaysShort[a.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(a){return this._weekdaysMin[a.day()]},weekdaysParse:function(a){var b,c,d;for(this._weekdaysParse||(this._weekdaysParse=[]),b=0;7>b;b++)if(this._weekdaysParse[b]||(c=rb([2e3,1]).day(b),d="^"+this.weekdays(c,"")+"|^"+this.weekdaysShort(c,"")+"|^"+this.weekdaysMin(c,""),this._weekdaysParse[b]=new RegExp(d.replace(".",""),"i")),this._weekdaysParse[b].test(a))return b},_longDateFormat:{LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY LT",LLLL:"dddd, MMMM D, YYYY LT"},longDateFormat:function(a){var b=this._longDateFormat[a];return!b&&this._longDateFormat[a.toUpperCase()]&&(b=this._longDateFormat[a.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(a){return a.slice(1)}),this._longDateFormat[a]=b),b},isPM:function(a){return"p"===(a+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(a,b){var c=this._calendar[a];return"function"==typeof c?c.apply(b):c},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(a,b,c,d){var e=this._relativeTime[c];return"function"==typeof e?e(a,b,c,d):e.replace(/%d/i,a)},pastFuture:function(a,b){var c=this._relativeTime[a>0?"future":"past"];return"function"==typeof c?c(b):c.replace(/%s/i,b)},ordinal:function(a){return this._ordinal.replace("%d",a)},_ordinal:"%d",preparse:function(a){return a},postformat:function(a){return a},week:function(a){return fb(a,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),rb=function(b,d,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._i=b,g._f=d,g._l=e,g._strict=f,g._isUTC=!1,g._pf=c(),hb(g)},rb.suppressDeprecationWarnings=!1,rb.createFromInputFallback=e("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(a){a._d=new Date(a._i)}),rb.min=function(){var a=[].slice.call(arguments,0);return ib("isBefore",a)},rb.max=function(){var a=[].slice.call(arguments,0);return ib("isAfter",a)},rb.utc=function(b,d,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._useUTC=!0,g._isUTC=!0,g._l=e,g._i=b,g._f=d,g._strict=f,g._pf=c(),hb(g).utc()},rb.unix=function(a){return rb(1e3*a)},rb.duration=function(a,b){var c,d,e,f,g=a,h=null;return rb.isDuration(a)?g={ms:a._milliseconds,d:a._days,M:a._months}:"number"==typeof a?(g={},b?g[b]=a:g.milliseconds=a):(h=Ib.exec(a))?(c="-"===h[1]?-1:1,g={y:0,d:z(h[zb])*c,h:z(h[Ab])*c,m:z(h[Bb])*c,s:z(h[Cb])*c,ms:z(h[Db])*c}):(h=Jb.exec(a))?(c="-"===h[1]?-1:1,e=function(a){var b=a&&parseFloat(a.replace(",","."));return(isNaN(b)?0:b)*c},g={y:e(h[2]),M:e(h[3]),d:e(h[4]),h:e(h[5]),m:e(h[6]),s:e(h[7]),w:e(h[8])}):"object"==typeof g&&("from"in g||"to"in g)&&(f=q(rb(g.from),rb(g.to)),g={},g.ms=f.milliseconds,g.M=f.months),d=new k(g),rb.isDuration(a)&&a.hasOwnProperty("_locale")&&(d._locale=a._locale),d},rb.version=ub,rb.defaultFormat=bc,rb.ISO_8601=function(){},rb.momentProperties=Fb,rb.updateOffset=function(){},rb.relativeTimeThreshold=function(b,c){return jc[b]===a?!1:c===a?jc[b]:(jc[b]=c,!0)},rb.lang=e("moment.lang is deprecated. Use moment.locale instead.",function(a,b){return rb.locale(a,b)}),rb.locale=function(a,b){var c;return a&&(c="undefined"!=typeof b?rb.defineLocale(a,b):rb.localeData(a),c&&(rb.duration._locale=rb._locale=c)),rb._locale._abbr},rb.defineLocale=function(a,b){return null!==b?(b.abbr=a,Eb[a]||(Eb[a]=new i),Eb[a].set(b),rb.locale(a),Eb[a]):(delete Eb[a],null)},rb.langData=e("moment.langData is deprecated. Use moment.localeData instead.",function(a){return rb.localeData(a)}),rb.localeData=function(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return rb._locale;if(!t(a)){if(b=I(a))return b;a=[a]}return H(a)},rb.isMoment=function(a){return a instanceof j||null!=a&&a.hasOwnProperty("_isAMomentObject")},rb.isDuration=function(a){return a instanceof k};for(tb=oc.length-1;tb>=0;--tb)y(oc[tb]);rb.normalizeUnits=function(a){return w(a)},rb.invalid=function(a){var b=rb.utc(0/0);return null!=a?l(b._pf,a):b._pf.userInvalidated=!0,b},rb.parseZone=function(){return rb.apply(null,arguments).parseZone()},rb.parseTwoDigitYear=function(a){return z(a)+(z(a)>68?1900:2e3)},l(rb.fn=j.prototype,{clone:function(){return rb(this)},valueOf:function(){return+this._d+6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var a=rb(this).utc();return 00:!1},parsingFlags:function(){return l({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(a){return this.zone(0,a)},local:function(a){return this._isUTC&&(this.zone(0,a),this._isUTC=!1,a&&this.add(this._d.getTimezoneOffset(),"m")),this},format:function(a){var b=M(this,a||rb.defaultFormat);return this.localeData().postformat(b)},add:r(1,"add"),subtract:r(-1,"subtract"),diff:function(a,b,c){var d,e,f=J(a,this),g=6e4*(this.zone()-f.zone());return b=w(b),"year"===b||"month"===b?(d=432e5*(this.daysInMonth()+f.daysInMonth()),e=12*(this.year()-f.year())+(this.month()-f.month()),e+=(this-rb(this).startOf("month")-(f-rb(f).startOf("month")))/d,e-=6e4*(this.zone()-rb(this).startOf("month").zone()-(f.zone()-rb(f).startOf("month").zone()))/d,"year"===b&&(e/=12)):(d=this-f,e="second"===b?d/1e3:"minute"===b?d/6e4:"hour"===b?d/36e5:"day"===b?(d-g)/864e5:"week"===b?(d-g)/6048e5:d),c?e:n(e)},from:function(a,b){return rb.duration({to:this,from:a}).locale(this.locale()).humanize(!b)},fromNow:function(a){return this.from(rb(),a)},calendar:function(a){var b=a||rb(),c=J(b,this).startOf("day"),d=this.diff(c,"days",!0),e=-6>d?"sameElse":-1>d?"lastWeek":0>d?"lastDay":1>d?"sameDay":2>d?"nextDay":7>d?"nextWeek":"sameElse";return this.format(this.localeData().calendar(e,this))},isLeapYear:function(){return D(this.year())},isDST:function(){return this.zone()+rb(a).startOf(b)},isBefore:function(a,b){return b="undefined"!=typeof b?b:"millisecond",+this.clone().startOf(b)<+rb(a).startOf(b)},isSame:function(a,b){return b=b||"ms",+this.clone().startOf(b)===+J(a,this).startOf(b)},min:e("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(a){return a=rb.apply(null,arguments),this>a?this:a}),max:e("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(a){return a=rb.apply(null,arguments),a>this?this:a}),zone:function(a,b){var c,d=this._offset||0;return null==a?this._isUTC?d:this._d.getTimezoneOffset():("string"==typeof a&&(a=P(a)),Math.abs(a)<16&&(a=60*a),!this._isUTC&&b&&(c=this._d.getTimezoneOffset()),this._offset=a,this._isUTC=!0,null!=c&&this.subtract(c,"m"),d!==a&&(!b||this._changeInProgress?s(this,rb.duration(d-a,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,rb.updateOffset(this,!0),this._changeInProgress=null)),this)},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.zone(this._tzm):"string"==typeof this._i&&this.zone(this._i),this},hasAlignedHourOffset:function(a){return a=a?rb(a).zone():0,(this.zone()-a)%60===0},daysInMonth:function(){return A(this.year(),this.month())},dayOfYear:function(a){var b=wb((rb(this).startOf("day")-rb(this).startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")},quarter:function(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)},weekYear:function(a){var b=fb(this,this.localeData()._week.dow,this.localeData()._week.doy).year;return null==a?b:this.add(a-b,"y")},isoWeekYear:function(a){var b=fb(this,1,4).year;return null==a?b:this.add(a-b,"y")},week:function(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")},isoWeek:function(a){var b=fb(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")},weekday:function(a){var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")},isoWeekday:function(a){return null==a?this.day()||7:this.day(this.day()%7?a:a-7)},isoWeeksInYear:function(){return B(this.year(),1,4)},weeksInYear:function(){var a=this.localeData()._week;return B(this.year(),a.dow,a.doy)},get:function(a){return a=w(a),this[a]()},set:function(a,b){return a=w(a),"function"==typeof this[a]&&this[a](b),this},locale:function(b){return b===a?this._locale._abbr:(this._locale=rb.localeData(b),this)},lang:e("moment().lang() is deprecated. Use moment().localeData() instead.",function(b){return b===a?this.localeData():(this._locale=rb.localeData(b),this)}),localeData:function(){return this._locale}}),rb.fn.millisecond=rb.fn.milliseconds=mb("Milliseconds",!1),rb.fn.second=rb.fn.seconds=mb("Seconds",!1),rb.fn.minute=rb.fn.minutes=mb("Minutes",!1),rb.fn.hour=rb.fn.hours=mb("Hours",!0),rb.fn.date=mb("Date",!0),rb.fn.dates=e("dates accessor is deprecated. Use date instead.",mb("Date",!0)),rb.fn.year=mb("FullYear",!0),rb.fn.years=e("years accessor is deprecated. Use year instead.",mb("FullYear",!0)),rb.fn.days=rb.fn.day,rb.fn.months=rb.fn.month,rb.fn.weeks=rb.fn.week,rb.fn.isoWeeks=rb.fn.isoWeek,rb.fn.quarters=rb.fn.quarter,rb.fn.toJSON=rb.fn.toISOString,l(rb.duration.fn=k.prototype,{_bubble:function(){var a,b,c,d=this._milliseconds,e=this._days,f=this._months,g=this._data,h=0;g.milliseconds=d%1e3,a=n(d/1e3),g.seconds=a%60,b=n(a/60),g.minutes=b%60,c=n(b/60),g.hours=c%24,e+=n(c/24),h=n(nb(e)),e-=n(ob(h)),f+=n(e/30),e%=30,h+=n(f/12),f%=12,g.days=e,g.months=f,g.years=h},abs:function(){return this._milliseconds=Math.abs(this._milliseconds),this._days=Math.abs(this._days),this._months=Math.abs(this._months),this._data.milliseconds=Math.abs(this._data.milliseconds),this._data.seconds=Math.abs(this._data.seconds),this._data.minutes=Math.abs(this._data.minutes),this._data.hours=Math.abs(this._data.hours),this._data.months=Math.abs(this._data.months),this._data.years=Math.abs(this._data.years),this},weeks:function(){return n(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*z(this._months/12)},humanize:function(a){var b=eb(this,!a,this.localeData());return a&&(b=this.localeData().pastFuture(+this,b)),this.localeData().postformat(b)},add:function(a,b){var c=rb.duration(a,b);return this._milliseconds+=c._milliseconds,this._days+=c._days,this._months+=c._months,this._bubble(),this},subtract:function(a,b){var c=rb.duration(a,b);return this._milliseconds-=c._milliseconds,this._days-=c._days,this._months-=c._months,this._bubble(),this},get:function(a){return a=w(a),this[a.toLowerCase()+"s"]()},as:function(a){var b,c;if(a=w(a),b=this._days+this._milliseconds/864e5,"month"===a||"year"===a)return c=this._months+12*nb(b),"month"===a?c:c/12;switch(b+=ob(this._months/12),a){case"week":return b/7;case"day":return b;case"hour":return 24*b;case"minute":return 24*b*60;case"second":return 24*b*60*60;case"millisecond":return 24*b*60*60*1e3;default:throw new Error("Unknown unit "+a)}},lang:rb.fn.lang,locale:rb.fn.locale,toIsoString:e("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",function(){return this.toISOString()}),toISOString:function(){var a=Math.abs(this.years()),b=Math.abs(this.months()),c=Math.abs(this.days()),d=Math.abs(this.hours()),e=Math.abs(this.minutes()),f=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(a?a+"Y":"")+(b?b+"M":"")+(c?c+"D":"")+(d||e||f?"T":"")+(d?d+"H":"")+(e?e+"M":"")+(f?f+"S":""):"P0D"},localeData:function(){return this._locale}});for(tb in fc)fc.hasOwnProperty(tb)&&pb(tb.toLowerCase());rb.duration.fn.asMilliseconds=function(){return this.as("ms")},rb.duration.fn.asSeconds=function(){return this.as("s")},rb.duration.fn.asMinutes=function(){return this.as("m")},rb.duration.fn.asHours=function(){return this.as("h")},rb.duration.fn.asDays=function(){return this.as("d")},rb.duration.fn.asWeeks=function(){return this.as("weeks")},rb.duration.fn.asMonths=function(){return this.as("M")},rb.duration.fn.asYears=function(){return this.as("y")},rb.locale("en",{ordinal:function(a){var b=a%10,c=1===z(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),Gb?module.exports=rb:"function"==typeof define&&define.amd?(define("moment",function(a,b,c){return c.config&&c.config()&&c.config().noGlobal===!0&&(vb.moment=sb),rb}),qb(!0)):qb()}).call(this); \ No newline at end of file diff --git a/library/datetimepicker/.gitignore b/library/datetimepicker/.gitignore new file mode 100644 index 000000000..0012f7d23 --- /dev/null +++ b/library/datetimepicker/.gitignore @@ -0,0 +1 @@ +index.php \ No newline at end of file diff --git a/library/datetimepicker/MIT-LICENSE.txt b/library/datetimepicker/MIT-LICENSE.txt new file mode 100644 index 000000000..2e68e7d6a --- /dev/null +++ b/library/datetimepicker/MIT-LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) 2013 http://xdsoft.net + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/library/datetimepicker/README.md b/library/datetimepicker/README.md new file mode 100644 index 000000000..f0d3f40e3 --- /dev/null +++ b/library/datetimepicker/README.md @@ -0,0 +1,20 @@ +datetimepicker +============== +[Documentation][doc] + + +jQuery Plugin Date and Time Picker + +DateTimePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/1.png) + +DatePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/2.png) + +TimePicker + +![ScreenShot](https://raw2.github.com/xdan/datetimepicker/master/screen/3.png) + +[doc]: http://xdsoft.net/jqplugins/datetimepicker/ diff --git a/library/datetimepicker/jquery.datetimepicker.css b/library/datetimepicker/jquery.datetimepicker.css new file mode 100644 index 000000000..acf674af7 --- /dev/null +++ b/library/datetimepicker/jquery.datetimepicker.css @@ -0,0 +1,418 @@ +.xdsoft_datetimepicker{ + box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.506); + background: #FFFFFF; + border-bottom: 1px solid #BBBBBB; + border-left: 1px solid #CCCCCC; + border-right: 1px solid #CCCCCC; + border-top: 1px solid #CCCCCC; + color: #333333; + font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif; + padding: 8px; + padding-left: 0px; + padding-top: 2px; + position: absolute; + z-index: 9999; + -moz-box-sizing: border-box; + box-sizing: border-box; + display:none; +} + +.xdsoft_datetimepicker iframe { + position: absolute; + left: 0; + top: 0; + width: 75px; + height: 210px; + background: transparent; + border:none; +} +/*For IE8 or lower*/ +.xdsoft_datetimepicker button { + border:none !important; +} + +.xdsoft_noselect{ + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} +.xdsoft_noselect::selection { background: transparent; } +.xdsoft_noselect::-moz-selection { background: transparent; } +.xdsoft_datetimepicker.xdsoft_inline{ + display: inline-block; + position: static; + box-shadow: none; +} +.xdsoft_datetimepicker *{ + -moz-box-sizing: border-box; + box-sizing: border-box; + padding:0px; + margin:0px; +} +.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker{ + display:none; +} +.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active{ + display:block; +} +.xdsoft_datetimepicker .xdsoft_datepicker{ + width: 224px; + float:left; + margin-left:8px; +} +.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker{ + width: 256px; +} +.xdsoft_datetimepicker .xdsoft_timepicker{ + width: 58px; + float:left; + text-align:center; + margin-left:8px; + margin-top:0px; +} +.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{ + margin-top:8px; + margin-bottom:3px +} +.xdsoft_datetimepicker .xdsoft_mounthpicker{ + position: relative; + text-align: center; +} + +.xdsoft_datetimepicker .xdsoft_label i, +.xdsoft_datetimepicker .xdsoft_prev, +.xdsoft_datetimepicker .xdsoft_next, +.xdsoft_datetimepicker .xdsoft_today_button{ + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC); +} + +.xdsoft_datetimepicker .xdsoft_label i{ + opacity:0.5; + background-position:-92px -19px; + display: inline-block; + width: 9px; + height: 20px; + vertical-align: middle; +} + +.xdsoft_datetimepicker .xdsoft_prev{ + float: left; + background-position:-20px 0px; +} +.xdsoft_datetimepicker .xdsoft_today_button{ + float: left; + background-position:-70px 0px; + margin-left:5px; +} + +.xdsoft_datetimepicker .xdsoft_next{ + float: right; + background-position:0px 0px; +} + +.xdsoft_datetimepicker .xdsoft_next, +.xdsoft_datetimepicker .xdsoft_prev , +.xdsoft_datetimepicker .xdsoft_today_button{ + background-color: transparent; + background-repeat: no-repeat; + border: 0px none currentColor; + cursor: pointer; + display: block; + height: 30px; + opacity: 0.5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + outline: medium none currentColor; + overflow: hidden; + padding: 0px; + position: relative; + text-indent: 100%; + white-space: nowrap; + width: 20px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{ + float:none; + background-position:-40px -15px; + height: 15px; + width: 30px; + display: block; + margin-left:14px; + margin-top:7px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev{ + background-position:-40px 0px; + margin-bottom:7px; + margin-top:0px; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{ + height:151px; + overflow:hidden; + border-bottom:1px solid #DDDDDD; +} +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{ + background: #F5F5F5; + border-top:1px solid #DDDDDD; + color: #666666; + font-size: 12px; + text-align: center; + border-collapse:collapse; + cursor:pointer; + border-bottom-width:0px; + height:25px; + line-height:25px; +} + +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div > div:first-child{ + border-top-width:0px; +} +.xdsoft_datetimepicker .xdsoft_today_button:hover, +.xdsoft_datetimepicker .xdsoft_next:hover, +.xdsoft_datetimepicker .xdsoft_prev:hover { + opacity: 1; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; +} +.xdsoft_datetimepicker .xdsoft_label{ + display: inline; + position: relative; + z-index: 9999; + margin: 0; + padding: 5px 3px; + font-size: 14px; + line-height: 20px; + font-weight: bold; + background-color: #fff; + float:left; + width:182px; + text-align:center; + cursor:pointer; +} +.xdsoft_datetimepicker .xdsoft_label:hover>span{ + text-decoration:underline; +} +.xdsoft_datetimepicker .xdsoft_label:hover i{ + opacity:1.0; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select{ + border:1px solid #ccc; + position:absolute; + right:0px; + top:30px; + z-index:101; + display:none; + background:#fff; + max-height:160px; + overflow-y:hidden; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect{right:-7px;} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect{right:2px;} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover{ + color: #fff; + background: #ff8000; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option{ + padding:2px 10px 2px 5px; + text-decoration:none !important; +} +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current{ + background: #33AAFF; + box-shadow: #178FE5 0px 1px 3px 0px inset; + color:#fff; + font-weight: 700; +} +.xdsoft_datetimepicker .xdsoft_month{ + width:100px; + text-align:right; +} +.xdsoft_datetimepicker .xdsoft_calendar{ + clear:both; +} +.xdsoft_datetimepicker .xdsoft_year{ + width: 48px; + margin-left: 5px; +} +.xdsoft_datetimepicker .xdsoft_calendar table{ + border-collapse:collapse; + width:100%; + +} +.xdsoft_datetimepicker .xdsoft_calendar td > div{ + padding-right:5px; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + height: 25px; +} +.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th{ + width:14.2857142%; + background: #F5F5F5; + border:1px solid #DDDDDD; + color: #666666; + font-size: 12px; + text-align: right; + vertical-align: middle; + padding:0px; + border-collapse:collapse; + cursor:pointer; + height: 25px; +} +.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th{ + width:12.5%; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + background: #F1F1F1; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today{ + color:#33AAFF; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current{ + background: #33AAFF; + box-shadow: #178FE5 0px 1px 3px 0px inset; + color:#fff; + font-weight: 700; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month, +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled, +.xdsoft_datetimepicker .xdsoft_time_box >div >div.xdsoft_disabled{ + opacity:0.5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled{ + opacity:0.2; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; +} +.xdsoft_datetimepicker .xdsoft_calendar td:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div:hover{ + color: #fff !important; + background: #ff8000 !important; + box-shadow: none !important; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_disabled:hover{ + color: inherit !important; + background: inherit !important; + box-shadow: inherit !important; +} +.xdsoft_datetimepicker .xdsoft_calendar th{ + font-weight: 700; + text-align: center; + color: #999; + cursor:default; +} +.xdsoft_datetimepicker .xdsoft_copyright{ color:#ccc !important; font-size:10px;clear:both;float:none;margin-left:8px;} +.xdsoft_datetimepicker .xdsoft_copyright a{ color:#eee !important;} +.xdsoft_datetimepicker .xdsoft_copyright a:hover{ color:#aaa !important;} + + +.xdsoft_time_box{ + position:relative; + border:1px solid #ccc; +} +.xdsoft_scrollbar >.xdsoft_scroller{ + background:#ccc !important; + height:20px; + border-radius:3px; +} +.xdsoft_scrollbar{ + position:absolute; + width:7px; + right:0px; + top:0px; + bottom:0px; + cursor:pointer; +} +.xdsoft_scroller_box{ +position:relative; +} + + +.xdsoft_datetimepicker.xdsoft_dark{ + box-shadow: 0px 5px 15px -5px rgba(255, 255, 255, 0.506); + background: #000000; + border-bottom: 1px solid #444444; + border-left: 1px solid #333333; + border-right: 1px solid #333333; + border-top: 1px solid #333333; + color: #cccccc; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box{ + border-bottom:1px solid #222222; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div{ + background: #0a0a0a; + border-top:1px solid #222222; + color: #999999; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label{ + background-color: #000; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select{ + border:1px solid #333; + background:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover{ + color: #000; + background: #007fff; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current{ + background: #cc5500; + box-shadow: #b03e00 0px 1px 3px 0px inset; + color:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button{ + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==); +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + background: #0a0a0a; + border:1px solid #222222; + color: #999999; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + background: #0e0e0e; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today{ + color:#cc5500; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current{ + background: #cc5500; + box-shadow: #b03e00 0px 1px 3px 0px inset; + color:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div:hover{ + color: #000 !important; + background: #007fff !important; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{ + color: #666; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright{ color:#333 !important;} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a{ color:#111 !important;} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover{ color:#555 !important;} + + +.xdsoft_dark .xdsoft_time_box{ + border:1px solid #333; +} +.xdsoft_dark .xdsoft_scrollbar >.xdsoft_scroller{ + background:#333 !important; +} diff --git a/library/datetimepicker/jquery.datetimepicker.js b/library/datetimepicker/jquery.datetimepicker.js new file mode 100644 index 000000000..d4e93dd13 --- /dev/null +++ b/library/datetimepicker/jquery.datetimepicker.js @@ -0,0 +1,1661 @@ +/** + * @preserve jQuery DateTimePicker plugin v2.4.0 + * @homepage http://xdsoft.net/jqplugins/datetimepicker/ + * (c) 2014, Chupurnov Valeriy. + */ +/*global document,window,jQuery,setTimeout,clearTimeout*/ +(function ($) { + 'use strict'; + var default_options = { + i18n: { + ar: { // Arabic + months: [ + "كانون الثاني", "شباط", "آذار", "نيسان", "مايو", "حزيران", "تموز", "آب", "أيلول", "تشرين الأول", "تشرين الثاني", "كانون الأول" + ], + dayOfWeek: [ + "ن", "ث", "ع", "خ", "ج", "س", "ح" + ] + }, + ro: { // Romanian + months: [ + "ianuarie", "februarie", "martie", "aprilie", "mai", "iunie", "iulie", "august", "septembrie", "octombrie", "noiembrie", "decembrie" + ], + dayOfWeek: [ + "l", "ma", "mi", "j", "v", "s", "d" + ] + }, + id: { // Indonesian + months: [ + "Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember" + ], + dayOfWeek: [ + "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Min" + ] + }, + bg: { // Bulgarian + months: [ + "Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември" + ], + dayOfWeek: [ + "Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" + ] + }, + fa: { // Persian/Farsi + months: [ + 'فروردین', 'اردیبهشت', 'خرداد', 'تیر', 'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی', 'بهمن', 'اسفند' + ], + dayOfWeek: [ + 'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه' + ] + }, + ru: { // Russian + months: [ + 'Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь' + ], + dayOfWeek: [ + "Вск", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб" + ] + }, + uk: { // Ukrainian + months: [ + 'Січень', 'Лютий', 'Березень', 'Квітень', 'Травень', 'Червень', 'Липень', 'Серпень', 'Вересень', 'Жовтень', 'Листопад', 'Грудень' + ], + dayOfWeek: [ + "Ндл", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Сбт" + ] + }, + en: { // English + months: [ + "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" + ], + dayOfWeek: [ + "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" + ] + }, + el: { // Ελληνικά + months: [ + "Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος" + ], + dayOfWeek: [ + "Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ" + ] + }, + de: { // German + months: [ + 'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember' + ], + dayOfWeek: [ + "So", "Mo", "Di", "Mi", "Do", "Fr", "Sa" + ] + }, + nl: { // Dutch + months: [ + "januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december" + ], + dayOfWeek: [ + "zo", "ma", "di", "wo", "do", "vr", "za" + ] + }, + tr: { // Turkish + months: [ + "Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık" + ], + dayOfWeek: [ + "Paz", "Pts", "Sal", "Çar", "Per", "Cum", "Cts" + ] + }, + fr: { //French + months: [ + "Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre" + ], + dayOfWeek: [ + "Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam" + ] + }, + es: { // Spanish + months: [ + "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre" + ], + dayOfWeek: [ + "Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb" + ] + }, + th: { // Thai + months: [ + 'มกราคม', 'กุมภาพันธ์', 'มีนาคม', 'เมษายน', 'พฤษภาคม', 'มิถุนายน', 'กรกฎาคม', 'สิงหาคม', 'กันยายน', 'ตุลาคม', 'พฤศจิกายน', 'ธันวาคม' + ], + dayOfWeek: [ + 'อา.', 'จ.', 'อ.', 'พ.', 'พฤ.', 'ศ.', 'ส.' + ] + }, + pl: { // Polish + months: [ + "styczeń", "luty", "marzec", "kwiecień", "maj", "czerwiec", "lipiec", "sierpień", "wrzesień", "październik", "listopad", "grudzień" + ], + dayOfWeek: [ + "nd", "pn", "wt", "śr", "cz", "pt", "sb" + ] + }, + pt: { // Portuguese + months: [ + "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" + ], + dayOfWeek: [ + "Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab" + ] + }, + ch: { // Simplified Chinese + months: [ + "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" + ], + dayOfWeek: [ + "日", "一", "二", "三", "四", "五", "六" + ] + }, + se: { // Swedish + months: [ + "Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör" + ] + }, + kr: { // Korean + months: [ + "1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월" + ], + dayOfWeek: [ + "일", "월", "화", "수", "목", "금", "토" + ] + }, + it: { // Italian + months: [ + "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre" + ], + dayOfWeek: [ + "Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab" + ] + }, + da: { // Dansk + months: [ + "January", "Februar", "Marts", "April", "Maj", "Juni", "July", "August", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør" + ] + }, + no: { // Norwegian + months: [ + "Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember" + ], + dayOfWeek: [ + "Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør" + ] + }, + ja: { // Japanese + months: [ + "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月" + ], + dayOfWeek: [ + "日", "月", "火", "水", "木", "金", "土" + ] + }, + vi: { // Vietnamese + months: [ + "Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12" + ], + dayOfWeek: [ + "CN", "T2", "T3", "T4", "T5", "T6", "T7" + ] + }, + sl: { // Slovenščina + months: [ + "Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December" + ], + dayOfWeek: [ + "Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob" + ] + }, + cs: { // Čeština + months: [ + "Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec" + ], + dayOfWeek: [ + "Ne", "Po", "Út", "St", "Čt", "Pá", "So" + ] + }, + hu: { // Hungarian + months: [ + "Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December" + ], + dayOfWeek: [ + "Va", "Hé", "Ke", "Sze", "Cs", "Pé", "Szo" + ] + } + }, + value: '', + lang: 'en', + + format: 'Y/m/d H:i', + formatTime: 'H:i', + formatDate: 'Y/m/d', + + startDate: false, // new Date(), '1986/12/08', '-1970/01/05','-1970/01/05', + step: 60, + monthChangeSpinner: true, + + closeOnDateSelect: false, + closeOnWithoutClick: true, + closeOnInputClick: true, + + timepicker: true, + datepicker: true, + weeks: false, + + defaultTime: false, // use formatTime format (ex. '10:00' for formatTime: 'H:i') + defaultDate: false, // use formatDate format (ex new Date() or '1986/12/08' or '-1970/01/05' or '-1970/01/05') + + minDate: false, + maxDate: false, + minTime: false, + maxTime: false, + + allowTimes: [], + opened: false, + initTime: true, + inline: false, + theme: '', + + onSelectDate: function () {}, + onSelectTime: function () {}, + onChangeMonth: function () {}, + onChangeYear: function () {}, + onChangeDateTime: function () {}, + onShow: function () {}, + onClose: function () {}, + onGenerate: function () {}, + + withoutCopyright: true, + inverseButton: false, + hours12: false, + next: 'xdsoft_next', + prev : 'xdsoft_prev', + dayOfWeekStart: 0, + parentID: 'body', + timeHeightInTimePicker: 25, + timepickerScrollbar: true, + todayButton: true, + defaultSelect: true, + + scrollMonth: true, + scrollTime: true, + scrollInput: true, + + lazyInit: false, + mask: false, + validateOnBlur: true, + allowBlank: true, + yearStart: 1950, + yearEnd: 2050, + style: '', + id: '', + fixed: false, + roundTime: 'round', // ceil, floor + className: '', + weekends: [], + disabledDates : [], + yearOffset: 0, + beforeShowDay: null, + + enterLikeTab: true + }; + // fix for ie8 + if (!Array.prototype.indexOf) { + Array.prototype.indexOf = function (obj, start) { + var i, j; + for (i = (start || 0), j = this.length; i < j; i += 1) { + if (this[i] === obj) { return i; } + } + return -1; + }; + } + Date.prototype.countDaysInMonth = function () { + return new Date(this.getFullYear(), this.getMonth() + 1, 0).getDate(); + }; + $.fn.xdsoftScroller = function (percent) { + return this.each(function () { + var timeboxparent = $(this), + pointerEventToXY = function (e) { + var out = {x: 0, y: 0}, + touch; + if (e.type === 'touchstart' || e.type === 'touchmove' || e.type === 'touchend' || e.type === 'touchcancel') { + touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0]; + out.x = touch.clientX; + out.y = touch.clientY; + } else if (e.type === 'mousedown' || e.type === 'mouseup' || e.type === 'mousemove' || e.type === 'mouseover' || e.type === 'mouseout' || e.type === 'mouseenter' || e.type === 'mouseleave') { + out.x = e.clientX; + out.y = e.clientY; + } + return out; + }, + move = 0, + timebox, + parentHeight, + height, + scrollbar, + scroller, + maximumOffset = 100, + start = false, + startY = 0, + startTop = 0, + h1 = 0, + touchStart = false, + startTopScroll = 0, + calcOffset = function () {}; + if (percent === 'hide') { + timeboxparent.find('.xdsoft_scrollbar').hide(); + return; + } + if (!$(this).hasClass('xdsoft_scroller_box')) { + timebox = timeboxparent.children().eq(0); + parentHeight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + scrollbar = $('
      '); + scroller = $('
      '); + scrollbar.append(scroller); + + timeboxparent.addClass('xdsoft_scroller_box').append(scrollbar); + calcOffset = function calcOffset(event) { + var offset = pointerEventToXY(event).y - startY + startTopScroll; + if (offset < 0) { + offset = 0; + } + if (offset + scroller[0].offsetHeight > h1) { + offset = h1 - scroller[0].offsetHeight; + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [maximumOffset ? offset / maximumOffset : 0]); + }; + + scroller + .on('touchstart.xdsoft_scroller mousedown.xdsoft_scroller', function (event) { + if (!parentHeight) { + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percent]); + } + + startY = pointerEventToXY(event).y; + startTopScroll = parseInt(scroller.css('margin-top'), 10); + h1 = scrollbar[0].offsetHeight; + + if (event.type === 'mousedown') { + if (document) { + $(document.body).addClass('xdsoft_noselect'); + } + $([document.body, window]).on('mouseup.xdsoft_scroller', function arguments_callee() { + $([document.body, window]).off('mouseup.xdsoft_scroller', arguments_callee) + .off('mousemove.xdsoft_scroller', calcOffset) + .removeClass('xdsoft_noselect'); + }); + $(document.body).on('mousemove.xdsoft_scroller', calcOffset); + } else { + touchStart = true; + event.stopPropagation(); + event.preventDefault(); + } + }) + .on('touchmove', function (event) { + if (touchStart) { + event.preventDefault(); + calcOffset(event); + } + }) + .on('touchend touchcancel', function (event) { + touchStart = false; + startTopScroll = 0; + }); + + timeboxparent + .on('scroll_element.xdsoft_scroller', function (event, percentage) { + if (!parentHeight) { + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percentage, true]); + } + percentage = percentage > 1 ? 1 : (percentage < 0 || isNaN(percentage)) ? 0 : percentage; + + scroller.css('margin-top', maximumOffset * percentage); + + setTimeout(function () { + timebox.css('marginTop', -parseInt((timebox[0].offsetHeight - parentHeight) * percentage, 10)); + }, 10); + }) + .on('resize_scroll.xdsoft_scroller', function (event, percentage, noTriggerScroll) { + var percent, sh; + parentHeight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + percent = parentHeight / height; + sh = percent * scrollbar[0].offsetHeight; + if (percent > 1) { + scroller.hide(); + } else { + scroller.show(); + scroller.css('height', parseInt(sh > 10 ? sh : 10, 10)); + maximumOffset = scrollbar[0].offsetHeight - scroller[0].offsetHeight; + if (noTriggerScroll !== true) { + timeboxparent.trigger('scroll_element.xdsoft_scroller', [percentage || Math.abs(parseInt(timebox.css('marginTop'), 10)) / (height - parentHeight)]); + } + } + }); + + timeboxparent.on('mousewheel', function (event) { + var top = Math.abs(parseInt(timebox.css('marginTop'), 10)); + + top = top - (event.deltaY * 20); + if (top < 0) { + top = 0; + } + + timeboxparent.trigger('scroll_element.xdsoft_scroller', [top / (height - parentHeight)]); + event.stopPropagation(); + return false; + }); + + timeboxparent.on('touchstart', function (event) { + start = pointerEventToXY(event); + startTop = Math.abs(parseInt(timebox.css('marginTop'), 10)); + }); + + timeboxparent.on('touchmove', function (event) { + if (start) { + event.preventDefault(); + var coord = pointerEventToXY(event); + timeboxparent.trigger('scroll_element.xdsoft_scroller', [(startTop - (coord.y - start.y)) / (height - parentHeight)]); + } + }); + + timeboxparent.on('touchend touchcancel', function (event) { + start = false; + startTop = 0; + }); + } + timeboxparent.trigger('resize_scroll.xdsoft_scroller', [percent]); + }); + }; + + $.fn.datetimepicker = function (opt) { + var KEY0 = 48, + KEY9 = 57, + _KEY0 = 96, + _KEY9 = 105, + CTRLKEY = 17, + DEL = 46, + ENTER = 13, + ESC = 27, + BACKSPACE = 8, + ARROWLEFT = 37, + ARROWUP = 38, + ARROWRIGHT = 39, + ARROWDOWN = 40, + TAB = 9, + F5 = 116, + AKEY = 65, + CKEY = 67, + VKEY = 86, + ZKEY = 90, + YKEY = 89, + ctrlDown = false, + options = ($.isPlainObject(opt) || !opt) ? $.extend(true, {}, default_options, opt) : $.extend(true, {}, default_options), + + lazyInitTimer = 0, + createDateTimePicker, + destroyDateTimePicker, + _xdsoft_datetime, + + lazyInit = function (input) { + input + .on('open.xdsoft focusin.xdsoft mousedown.xdsoft', function initOnActionCallback(event) { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible') || input.data('xdsoft_datetimepicker')) { + return; + } + clearTimeout(lazyInitTimer); + lazyInitTimer = setTimeout(function () { + + if (!input.data('xdsoft_datetimepicker')) { + createDateTimePicker(input); + } + input + .off('open.xdsoft focusin.xdsoft mousedown.xdsoft', initOnActionCallback) + .trigger('open.xdsoft'); + }, 100); + }); + }; + + createDateTimePicker = function (input) { + var datetimepicker = $('
      '), + xdsoft_copyright = $(''), + datepicker = $('
      '), + mounth_picker = $('
      ' + + '
      ' + + '
      ' + + '
      '), + calendar = $('
      '), + timepicker = $('
      '), + timeboxparent = timepicker.find('.xdsoft_time_box').eq(0), + timebox = $('
      '), + /*scrollbar = $('
      '), + scroller = $('
      '),*/ + monthselect = $('
      '), + yearselect = $('
      '), + triggerAfterOpen = false, + XDSoft_datetime, + //scroll_element, + xchangeTimer, + timerclick, + current_time_index, + setPos, + timer = 0, + timer1 = 0; + + mounth_picker + .find('.xdsoft_month span') + .after(monthselect); + mounth_picker + .find('.xdsoft_year span') + .after(yearselect); + + mounth_picker + .find('.xdsoft_month,.xdsoft_year') + .on('mousedown.xdsoft', function (event) { + var select = $(this).find('.xdsoft_select').eq(0), + val = 0, + top = 0, + visible = select.is(':visible'), + items, + i; + + mounth_picker + .find('.xdsoft_select') + .hide(); + if (_xdsoft_datetime.currentTime) { + val = _xdsoft_datetime.currentTime[$(this).hasClass('xdsoft_month') ? 'getMonth' : 'getFullYear'](); + } + + select[visible ? 'hide' : 'show'](); + for (items = select.find('div.xdsoft_option'), i = 0; i < items.length; i += 1) { + if (items.eq(i).data('value') === val) { + break; + } else { + top += items[0].offsetHeight; + } + } + + select.xdsoftScroller(top / (select.children()[0].offsetHeight - (select[0].clientHeight))); + event.stopPropagation(); + return false; + }); + + mounth_picker + .find('.xdsoft_select') + .xdsoftScroller() + .on('mousedown.xdsoft', function (event) { + event.stopPropagation(); + event.preventDefault(); + }) + .on('mousedown.xdsoft', '.xdsoft_option', function (event) { + var year = _xdsoft_datetime.currentTime.getFullYear(); + if (_xdsoft_datetime && _xdsoft_datetime.currentTime) { + _xdsoft_datetime.currentTime[$(this).parent().parent().hasClass('xdsoft_monthselect') ? 'setMonth' : 'setFullYear']($(this).data('value')); + } + + $(this).parent().parent().hide(); + + datetimepicker.trigger('xchange.xdsoft'); + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + if (year !== _xdsoft_datetime.currentTime.getFullYear() && $.isFunction(options.onChangeYear)) { + options.onChangeYear.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + }); + + datetimepicker.setOptions = function (_options) { + options = $.extend(true, {}, options, _options); + + if (_options.allowTimes && $.isArray(_options.allowTimes) && _options.allowTimes.length) { + options.allowTimes = $.extend(true, [], _options.allowTimes); + } + + if (_options.weekends && $.isArray(_options.weekends) && _options.weekends.length) { + options.weekends = $.extend(true, [], _options.weekends); + } + + if (_options.disabledDates && $.isArray(_options.disabledDates) && _options.disabledDates.length) { + options.disabledDates = $.extend(true, [], _options.disabledDates); + } + + if ((options.open || options.opened) && (!options.inline)) { + input.trigger('open.xdsoft'); + } + + if (options.inline) { + triggerAfterOpen = true; + datetimepicker.addClass('xdsoft_inline'); + input.after(datetimepicker).hide(); + } + + if (options.inverseButton) { + options.next = 'xdsoft_prev'; + options.prev = 'xdsoft_next'; + } + + if (options.datepicker) { + datepicker.addClass('active'); + } else { + datepicker.removeClass('active'); + } + + if (options.timepicker) { + timepicker.addClass('active'); + } else { + timepicker.removeClass('active'); + } + + if (options.value) { + if (input && input.val) { + input.val(options.value); + } + _xdsoft_datetime.setCurrentTime(options.value); + } + + if (isNaN(options.dayOfWeekStart)) { + options.dayOfWeekStart = 0; + } else { + options.dayOfWeekStart = parseInt(options.dayOfWeekStart, 10) % 7; + } + + if (!options.timepickerScrollbar) { + timeboxparent.xdsoftScroller('hide'); + } + + if (options.minDate && /^-(.*)$/.test(options.minDate)) { + options.minDate = _xdsoft_datetime.strToDateTime(options.minDate).dateFormat(options.formatDate); + } + + if (options.maxDate && /^\+(.*)$/.test(options.maxDate)) { + options.maxDate = _xdsoft_datetime.strToDateTime(options.maxDate).dateFormat(options.formatDate); + } + + mounth_picker + .find('.xdsoft_today_button') + .css('visibility', !options.todayButton ? 'hidden' : 'visible'); + + if (options.mask) { + var e, + getCaretPos = function (input) { + try { + if (document.selection && document.selection.createRange) { + var range = document.selection.createRange(); + return range.getBookmark().charCodeAt(2) - 2; + } + if (input.setSelectionRange) { + return input.selectionStart; + } + } catch (e) { + return 0; + } + }, + setCaretPos = function (node, pos) { + node = (typeof node === "string" || node instanceof String) ? document.getElementById(node) : node; + if (!node) { + return false; + } + if (node.createTextRange) { + var textRange = node.createTextRange(); + textRange.collapse(true); + textRange.moveEnd('character', pos); + textRange.moveStart('character', pos); + textRange.select(); + return true; + } + if (node.setSelectionRange) { + node.setSelectionRange(pos, pos); + return true; + } + return false; + }, + isValidValue = function (mask, value) { + var reg = mask + .replace(/([\[\]\/\{\}\(\)\-\.\+]{1})/g, '\\$1') + .replace(/_/g, '{digit+}') + .replace(/([0-9]{1})/g, '{digit$1}') + .replace(/\{digit([0-9]{1})\}/g, '[0-$1_]{1}') + .replace(/\{digit[\+]\}/g, '[0-9_]{1}'); + return (new RegExp(reg)).test(value); + }; + input.off('keydown.xdsoft'); + + if (options.mask === true) { + options.mask = options.format + .replace(/Y/g, '9999') + .replace(/F/g, '9999') + .replace(/m/g, '19') + .replace(/d/g, '39') + .replace(/H/g, '29') + .replace(/i/g, '59') + .replace(/s/g, '59'); + } + + if ($.type(options.mask) === 'string') { + if (!isValidValue(options.mask, input.val())) { + input.val(options.mask.replace(/[0-9]/g, '_')); + } + + input.on('keydown.xdsoft', function (event) { + var val = this.value, + key = event.which, + pos, + digit; + + if (((key >= KEY0 && key <= KEY9) || (key >= _KEY0 && key <= _KEY9)) || (key === BACKSPACE || key === DEL)) { + pos = getCaretPos(this); + digit = (key !== BACKSPACE && key !== DEL) ? String.fromCharCode((_KEY0 <= key && key <= _KEY9) ? key - KEY0 : key) : '_'; + + if ((key === BACKSPACE || key === DEL) && pos) { + pos -= 1; + digit = '_'; + } + + while (/[^0-9_]/.test(options.mask.substr(pos, 1)) && pos < options.mask.length && pos > 0) { + pos += (key === BACKSPACE || key === DEL) ? -1 : 1; + } + + val = val.substr(0, pos) + digit + val.substr(pos + 1); + if ($.trim(val) === '') { + val = options.mask.replace(/[0-9]/g, '_'); + } else { + if (pos === options.mask.length) { + event.preventDefault(); + return false; + } + } + + pos += (key === BACKSPACE || key === DEL) ? 0 : 1; + while (/[^0-9_]/.test(options.mask.substr(pos, 1)) && pos < options.mask.length && pos > 0) { + pos += (key === BACKSPACE || key === DEL) ? -1 : 1; + } + + if (isValidValue(options.mask, val)) { + this.value = val; + setCaretPos(this, pos); + } else if ($.trim(val) === '') { + this.value = options.mask.replace(/[0-9]/g, '_'); + } else { + input.trigger('error_input.xdsoft'); + } + } else { + if (([AKEY, CKEY, VKEY, ZKEY, YKEY].indexOf(key) !== -1 && ctrlDown) || [ESC, ARROWUP, ARROWDOWN, ARROWLEFT, ARROWRIGHT, F5, CTRLKEY, TAB, ENTER].indexOf(key) !== -1) { + return true; + } + } + + event.preventDefault(); + return false; + }); + } + } + if (options.validateOnBlur) { + input + .off('blur.xdsoft') + .on('blur.xdsoft', function () { + if (options.allowBlank && !$.trim($(this).val()).length) { + $(this).val(null); + datetimepicker.data('xdsoft_datetime').empty(); + } else if (!Date.parseDate($(this).val(), options.format)) { + $(this).val((_xdsoft_datetime.now()).dateFormat(options.format)); + datetimepicker.data('xdsoft_datetime').setCurrentTime($(this).val()); + } else { + datetimepicker.data('xdsoft_datetime').setCurrentTime($(this).val()); + } + datetimepicker.trigger('changedatetime.xdsoft'); + }); + } + options.dayOfWeekStartPrev = (options.dayOfWeekStart === 0) ? 6 : options.dayOfWeekStart - 1; + + datetimepicker + .trigger('xchange.xdsoft') + .trigger('afterOpen.xdsoft'); + }; + + datetimepicker + .data('options', options) + .on('mousedown.xdsoft', function (event) { + event.stopPropagation(); + event.preventDefault(); + yearselect.hide(); + monthselect.hide(); + return false; + }); + + //scroll_element = timepicker.find('.xdsoft_time_box'); + timeboxparent.append(timebox); + timeboxparent.xdsoftScroller(); + + datetimepicker.on('afterOpen.xdsoft', function () { + timeboxparent.xdsoftScroller(); + }); + + datetimepicker + .append(datepicker) + .append(timepicker); + + if (options.withoutCopyright !== true) { + datetimepicker + .append(xdsoft_copyright); + } + + datepicker + .append(mounth_picker) + .append(calendar); + + $(options.parentID) + .append(datetimepicker); + + XDSoft_datetime = function () { + var _this = this; + _this.now = function (norecursion) { + var d = new Date(), + date, + time; + + if (!norecursion && options.defaultDate) { + date = _this.strToDate(options.defaultDate); + d.setFullYear(date.getFullYear()); + d.setMonth(date.getMonth()); + d.setDate(date.getDate()); + } + + if (options.yearOffset) { + d.setFullYear(d.getFullYear() + options.yearOffset); + } + + if (!norecursion && options.defaultTime) { + time = _this.strtotime(options.defaultTime); + d.setHours(time.getHours()); + d.setMinutes(time.getMinutes()); + } + + return d; + }; + + _this.isValidDate = function (d) { + if (Object.prototype.toString.call(d) !== "[object Date]") { + return false; + } + return !isNaN(d.getTime()); + }; + + _this.setCurrentTime = function (dTime) { + _this.currentTime = (typeof dTime === 'string') ? _this.strToDateTime(dTime) : _this.isValidDate(dTime) ? dTime : _this.now(); + datetimepicker.trigger('xchange.xdsoft'); + }; + + _this.empty = function () { + _this.currentTime = null; + }; + + _this.getCurrentTime = function (dTime) { + return _this.currentTime; + }; + + _this.nextMonth = function () { + var month = _this.currentTime.getMonth() + 1, + year; + if (month === 12) { + _this.currentTime.setFullYear(_this.currentTime.getFullYear() + 1); + month = 0; + } + + year = _this.currentTime.getFullYear(); + + _this.currentTime.setDate( + Math.min( + new Date(_this.currentTime.getFullYear(), month + 1, 0).getDate(), + _this.currentTime.getDate() + ) + ); + _this.currentTime.setMonth(month); + + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + if (year !== _this.currentTime.getFullYear() && $.isFunction(options.onChangeYear)) { + options.onChangeYear.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + + datetimepicker.trigger('xchange.xdsoft'); + return month; + }; + + _this.prevMonth = function () { + var month = _this.currentTime.getMonth() - 1; + if (month === -1) { + _this.currentTime.setFullYear(_this.currentTime.getFullYear() - 1); + month = 11; + } + _this.currentTime.setDate( + Math.min( + new Date(_this.currentTime.getFullYear(), month + 1, 0).getDate(), + _this.currentTime.getDate() + ) + ); + _this.currentTime.setMonth(month); + if (options.onChangeMonth && $.isFunction(options.onChangeMonth)) { + options.onChangeMonth.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + datetimepicker.trigger('xchange.xdsoft'); + return month; + }; + + _this.getWeekOfYear = function (datetime) { + var onejan = new Date(datetime.getFullYear(), 0, 1); + return Math.ceil((((datetime - onejan) / 86400000) + onejan.getDay() + 1) / 7); + }; + + _this.strToDateTime = function (sDateTime) { + var tmpDate = [], timeOffset, currentTime; + + if (sDateTime && sDateTime instanceof Date && _this.isValidDate(sDateTime)) { + return sDateTime; + } + + tmpDate = /^(\+|\-)(.*)$/.exec(sDateTime); + if (tmpDate) { + tmpDate[2] = Date.parseDate(tmpDate[2], options.formatDate); + } + if (tmpDate && tmpDate[2]) { + timeOffset = tmpDate[2].getTime() - (tmpDate[2].getTimezoneOffset()) * 60000; + currentTime = new Date((_xdsoft_datetime.now()).getTime() + parseInt(tmpDate[1] + '1', 10) * timeOffset); + } else { + currentTime = sDateTime ? Date.parseDate(sDateTime, options.format) : _this.now(); + } + + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(); + } + + return currentTime; + }; + + _this.strToDate = function (sDate) { + if (sDate && sDate instanceof Date && _this.isValidDate(sDate)) { + return sDate; + } + + var currentTime = sDate ? Date.parseDate(sDate, options.formatDate) : _this.now(true); + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(true); + } + return currentTime; + }; + + _this.strtotime = function (sTime) { + if (sTime && sTime instanceof Date && _this.isValidDate(sTime)) { + return sTime; + } + var currentTime = sTime ? Date.parseDate(sTime, options.formatTime) : _this.now(true); + if (!_this.isValidDate(currentTime)) { + currentTime = _this.now(true); + } + return currentTime; + }; + + _this.str = function () { + return _this.currentTime.dateFormat(options.format); + }; + _this.currentTime = this.now(); + }; + + _xdsoft_datetime = new XDSoft_datetime(); + + mounth_picker + .find('.xdsoft_today_button') + .on('mousedown.xdsoft', function () { + datetimepicker.data('changed', true); + _xdsoft_datetime.setCurrentTime(0); + datetimepicker.trigger('afterOpen.xdsoft'); + }).on('dblclick.xdsoft', function () { + input.val(_xdsoft_datetime.str()); + datetimepicker.trigger('close.xdsoft'); + }); + mounth_picker + .find('.xdsoft_prev,.xdsoft_next') + .on('mousedown.xdsoft', function () { + var $this = $(this), + timer = 0, + stop = false; + + (function arguments_callee1(v) { + var month = _xdsoft_datetime.currentTime.getMonth(); + if ($this.hasClass(options.next)) { + _xdsoft_datetime.nextMonth(); + } else if ($this.hasClass(options.prev)) { + _xdsoft_datetime.prevMonth(); + } + if (options.monthChangeSpinner) { + if (!stop) { + timer = setTimeout(arguments_callee1, v || 100); + } + } + }(500)); + + $([document.body, window]).on('mouseup.xdsoft', function arguments_callee2() { + clearTimeout(timer); + stop = true; + $([document.body, window]).off('mouseup.xdsoft', arguments_callee2); + }); + }); + + timepicker + .find('.xdsoft_prev,.xdsoft_next') + .on('mousedown.xdsoft', function () { + var $this = $(this), + timer = 0, + stop = false, + period = 110; + (function arguments_callee4(v) { + var pheight = timeboxparent[0].clientHeight, + height = timebox[0].offsetHeight, + top = Math.abs(parseInt(timebox.css('marginTop'), 10)); + if ($this.hasClass(options.next) && (height - pheight) - options.timeHeightInTimePicker >= top) { + timebox.css('marginTop', '-' + (top + options.timeHeightInTimePicker) + 'px'); + } else if ($this.hasClass(options.prev) && top - options.timeHeightInTimePicker >= 0) { + timebox.css('marginTop', '-' + (top - options.timeHeightInTimePicker) + 'px'); + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [Math.abs(parseInt(timebox.css('marginTop'), 10) / (height - pheight))]); + period = (period > 10) ? 10 : period - 10; + if (!stop) { + timer = setTimeout(arguments_callee4, v || period); + } + }(500)); + $([document.body, window]).on('mouseup.xdsoft', function arguments_callee5() { + clearTimeout(timer); + stop = true; + $([document.body, window]) + .off('mouseup.xdsoft', arguments_callee5); + }); + }); + + xchangeTimer = 0; + // base handler - generating a calendar and timepicker + datetimepicker + .on('xchange.xdsoft', function (event) { + clearTimeout(xchangeTimer); + xchangeTimer = setTimeout(function () { + var table = '', + start = new Date(_xdsoft_datetime.currentTime.getFullYear(), _xdsoft_datetime.currentTime.getMonth(), 1, 12, 0, 0), + i = 0, + j, + today = _xdsoft_datetime.now(), + maxDate = false, + minDate = false, + d, + y, + m, + w, + classes = [], + customDateSettings, + newRow = true, + time = '', + h = '', + line_time; + + while (start.getDay() !== options.dayOfWeekStart) { + start.setDate(start.getDate() - 1); + } + + table += ''; + + if (options.weeks) { + table += ''; + } + + for (j = 0; j < 7; j += 1) { + table += ''; + } + + table += ''; + table += ''; + + if (options.maxDate !== false) { + maxDate = _xdsoft_datetime.strToDate(options.maxDate); + maxDate = new Date(maxDate.getFullYear(), maxDate.getMonth(), maxDate.getDate(), 23, 59, 59, 999); + } + + if (options.minDate !== false) { + minDate = _xdsoft_datetime.strToDate(options.minDate); + minDate = new Date(minDate.getFullYear(), minDate.getMonth(), minDate.getDate()); + } + + while (i < _xdsoft_datetime.currentTime.countDaysInMonth() || start.getDay() !== options.dayOfWeekStart || _xdsoft_datetime.currentTime.getMonth() === start.getMonth()) { + classes = []; + i += 1; + + d = start.getDate(); + y = start.getFullYear(); + m = start.getMonth(); + w = _xdsoft_datetime.getWeekOfYear(start); + + classes.push('xdsoft_date'); + + if (options.beforeShowDay && $.isFunction(options.beforeShowDay.call)) { + customDateSettings = options.beforeShowDay.call(datetimepicker, start); + } else { + customDateSettings = null; + } + + if ((maxDate !== false && start > maxDate) || (minDate !== false && start < minDate) || (customDateSettings && customDateSettings[0] === false)) { + classes.push('xdsoft_disabled'); + } else if (options.disabledDates.indexOf(start.dateFormat(options.formatDate)) !== -1) { + classes.push('xdsoft_disabled'); + } + + if (customDateSettings && customDateSettings[1] !== "") { + classes.push(customDateSettings[1]); + } + + if (_xdsoft_datetime.currentTime.getMonth() !== m) { + classes.push('xdsoft_other_month'); + } + + if ((options.defaultSelect || datetimepicker.data('changed')) && _xdsoft_datetime.currentTime.dateFormat(options.formatDate) === start.dateFormat(options.formatDate)) { + classes.push('xdsoft_current'); + } + + if (today.dateFormat(options.formatDate) === start.dateFormat(options.formatDate)) { + classes.push('xdsoft_today'); + } + + if (start.getDay() === 0 || start.getDay() === 6 || options.weekends.indexOf(start.dateFormat(options.formatDate)) === -1) { + classes.push('xdsoft_weekend'); + } + + if (options.beforeShowDay && $.isFunction(options.beforeShowDay)) { + classes.push(options.beforeShowDay(start)); + } + + if (newRow) { + table += ''; + newRow = false; + if (options.weeks) { + table += ''; + } + } + + table += ''; + + if (start.getDay() === options.dayOfWeekStartPrev) { + table += ''; + newRow = true; + } + + start.setDate(d + 1); + } + table += '
      ' + options.i18n[options.lang].dayOfWeek[(j + options.dayOfWeekStart) % 7] + '
      ' + w + '' + + '
      ' + d + '
      ' + + '
      '; + + calendar.html(table); + + mounth_picker.find('.xdsoft_label span').eq(0).text(options.i18n[options.lang].months[_xdsoft_datetime.currentTime.getMonth()]); + mounth_picker.find('.xdsoft_label span').eq(1).text(_xdsoft_datetime.currentTime.getFullYear()); + + // generate timebox + time = ''; + h = ''; + m = ''; + line_time = function line_time(h, m) { + var now = _xdsoft_datetime.now(); + now.setHours(h); + h = parseInt(now.getHours(), 10); + now.setMinutes(m); + m = parseInt(now.getMinutes(), 10); + + classes = []; + if ((options.maxTime !== false && _xdsoft_datetime.strtotime(options.maxTime).getTime() < now.getTime()) || (options.minTime !== false && _xdsoft_datetime.strtotime(options.minTime).getTime() > now.getTime())) { + classes.push('xdsoft_disabled'); + } + if ((options.initTime || options.defaultSelect || datetimepicker.data('changed')) && parseInt(_xdsoft_datetime.currentTime.getHours(), 10) === parseInt(h, 10) && (options.step > 59 || Math[options.roundTime](_xdsoft_datetime.currentTime.getMinutes() / options.step) * options.step === parseInt(m, 10))) { + if (options.defaultSelect || datetimepicker.data('changed')) { + classes.push('xdsoft_current'); + } else if (options.initTime) { + classes.push('xdsoft_init_time'); + } + } + if (parseInt(today.getHours(), 10) === parseInt(h, 10) && parseInt(today.getMinutes(), 10) === parseInt(m, 10)) { + classes.push('xdsoft_today'); + } + time += '
      ' + now.dateFormat(options.formatTime) + '
      '; + }; + + if (!options.allowTimes || !$.isArray(options.allowTimes) || !options.allowTimes.length) { + for (i = 0, j = 0; i < (options.hours12 ? 12 : 24); i += 1) { + for (j = 0; j < 60; j += options.step) { + h = (i < 10 ? '0' : '') + i; + m = (j < 10 ? '0' : '') + j; + line_time(h, m); + } + } + } else { + for (i = 0; i < options.allowTimes.length; i += 1) { + h = _xdsoft_datetime.strtotime(options.allowTimes[i]).getHours(); + m = _xdsoft_datetime.strtotime(options.allowTimes[i]).getMinutes(); + line_time(h, m); + } + } + + timebox.html(time); + + opt = ''; + i = 0; + + for (i = parseInt(options.yearStart, 10) + options.yearOffset; i <= parseInt(options.yearEnd, 10) + options.yearOffset; i += 1) { + opt += '
      ' + i + '
      '; + } + yearselect.children().eq(0) + .html(opt); + + for (i = 0, opt = ''; i <= 11; i += 1) { + opt += '
      ' + options.i18n[options.lang].months[i] + '
      '; + } + monthselect.children().eq(0).html(opt); + $(datetimepicker) + .trigger('generate.xdsoft'); + }, 10); + event.stopPropagation(); + }) + .on('afterOpen.xdsoft', function () { + if (options.timepicker) { + var classType, pheight, height, top; + if (timebox.find('.xdsoft_current').length) { + classType = '.xdsoft_current'; + } else if (timebox.find('.xdsoft_init_time').length) { + classType = '.xdsoft_init_time'; + } + if (classType) { + pheight = timeboxparent[0].clientHeight; + height = timebox[0].offsetHeight; + top = timebox.find(classType).index() * options.timeHeightInTimePicker + 1; + if ((height - pheight) < top) { + top = height - pheight; + } + timeboxparent.trigger('scroll_element.xdsoft_scroller', [parseInt(top, 10) / (height - pheight)]); + } else { + timeboxparent.trigger('scroll_element.xdsoft_scroller', [0]); + } + } + }); + + timerclick = 0; + calendar + .on('click.xdsoft', 'td', function (xdevent) { + xdevent.stopPropagation(); // Prevents closing of Pop-ups, Modals and Flyouts in Bootstrap + timerclick += 1; + var $this = $(this), + currentTime = _xdsoft_datetime.currentTime; + + if (currentTime === undefined || currentTime === null) { + _xdsoft_datetime.currentTime = _xdsoft_datetime.now(); + currentTime = _xdsoft_datetime.currentTime; + } + + if ($this.hasClass('xdsoft_disabled')) { + return false; + } + + currentTime.setDate(1); + currentTime.setFullYear($this.data('year')); + currentTime.setMonth($this.data('month')); + currentTime.setDate($this.data('date')); + + datetimepicker.trigger('select.xdsoft', [currentTime]); + + input.val(_xdsoft_datetime.str()); + if ((timerclick > 1 || (options.closeOnDateSelect === true || (options.closeOnDateSelect === 0 && !options.timepicker))) && !options.inline) { + datetimepicker.trigger('close.xdsoft'); + } + + if (options.onSelectDate && $.isFunction(options.onSelectDate)) { + options.onSelectDate.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), xdevent); + } + + datetimepicker.data('changed', true); + datetimepicker.trigger('xchange.xdsoft'); + datetimepicker.trigger('changedatetime.xdsoft'); + setTimeout(function () { + timerclick = 0; + }, 200); + }); + + timebox + .on('click.xdsoft', 'div', function (xdevent) { + xdevent.stopPropagation(); + var $this = $(this), + currentTime = _xdsoft_datetime.currentTime; + + if (currentTime === undefined || currentTime === null) { + _xdsoft_datetime.currentTime = _xdsoft_datetime.now(); + currentTime = _xdsoft_datetime.currentTime; + } + + if ($this.hasClass('xdsoft_disabled')) { + return false; + } + currentTime.setHours($this.data('hour')); + currentTime.setMinutes($this.data('minute')); + datetimepicker.trigger('select.xdsoft', [currentTime]); + + datetimepicker.data('input').val(_xdsoft_datetime.str()); + if (!options.inline) { + datetimepicker.trigger('close.xdsoft'); + } + + if (options.onSelectTime && $.isFunction(options.onSelectTime)) { + options.onSelectTime.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), xdevent); + } + datetimepicker.data('changed', true); + datetimepicker.trigger('xchange.xdsoft'); + datetimepicker.trigger('changedatetime.xdsoft'); + }); + + + datepicker + .on('mousewheel.xdsoft', function (event) { + if (!options.scrollMonth) { + return true; + } + if (event.deltaY < 0) { + _xdsoft_datetime.nextMonth(); + } else { + _xdsoft_datetime.prevMonth(); + } + return false; + }); + + input + .on('mousewheel.xdsoft', function (event) { + if (!options.scrollInput) { + return true; + } + if (!options.datepicker && options.timepicker) { + current_time_index = timebox.find('.xdsoft_current').length ? timebox.find('.xdsoft_current').eq(0).index() : 0; + if (current_time_index + event.deltaY >= 0 && current_time_index + event.deltaY < timebox.children().length) { + current_time_index += event.deltaY; + } + if (timebox.children().eq(current_time_index).length) { + timebox.children().eq(current_time_index).trigger('mousedown'); + } + return false; + } + if (options.datepicker && !options.timepicker) { + datepicker.trigger(event, [event.deltaY, event.deltaX, event.deltaY]); + if (input.val) { + input.val(_xdsoft_datetime.str()); + } + datetimepicker.trigger('changedatetime.xdsoft'); + return false; + } + }); + + datetimepicker + .on('changedatetime.xdsoft', function (event) { + if (options.onChangeDateTime && $.isFunction(options.onChangeDateTime)) { + var $input = datetimepicker.data('input'); + options.onChangeDateTime.call(datetimepicker, _xdsoft_datetime.currentTime, $input, event); + delete options.value; + $input.trigger('change'); + } + }) + .on('generate.xdsoft', function () { + if (options.onGenerate && $.isFunction(options.onGenerate)) { + options.onGenerate.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input')); + } + if (triggerAfterOpen) { + datetimepicker.trigger('afterOpen.xdsoft'); + triggerAfterOpen = false; + } + }) + .on('click.xdsoft', function (xdevent) { + xdevent.stopPropagation(); + }); + + current_time_index = 0; + + setPos = function () { + var offset = datetimepicker.data('input').offset(), top = offset.top + datetimepicker.data('input')[0].offsetHeight - 1, left = offset.left, position = "absolute"; + if (options.fixed) { + top -= $(window).scrollTop(); + left -= $(window).scrollLeft(); + position = "fixed"; + } else { + if (top + datetimepicker[0].offsetHeight > $(window).height() + $(window).scrollTop()) { + top = offset.top - datetimepicker[0].offsetHeight + 1; + } + if (top < 0) { + top = 0; + } + if (left + datetimepicker[0].offsetWidth > $(window).width()) { + left = $(window).width() - datetimepicker[0].offsetWidth; + } + } + datetimepicker.css({ + left: left, + top: top, + position: position + }); + }; + datetimepicker + .on('open.xdsoft', function (event) { + var onShow = true; + if (options.onShow && $.isFunction(options.onShow)) { + onShow = options.onShow.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), event); + } + if (onShow !== false) { + datetimepicker.show(); + setPos(); + $(window) + .off('resize.xdsoft', setPos) + .on('resize.xdsoft', setPos); + + if (options.closeOnWithoutClick) { + $([document.body, window]).on('mousedown.xdsoft', function arguments_callee6() { + datetimepicker.trigger('close.xdsoft'); + $([document.body, window]).off('mousedown.xdsoft', arguments_callee6); + }); + } + } + }) + .on('close.xdsoft', function (event) { + var onClose = true; + mounth_picker + .find('.xdsoft_month,.xdsoft_year') + .find('.xdsoft_select') + .hide(); + if (options.onClose && $.isFunction(options.onClose)) { + onClose = options.onClose.call(datetimepicker, _xdsoft_datetime.currentTime, datetimepicker.data('input'), event); + } + if (onClose !== false && !options.opened && !options.inline) { + datetimepicker.hide(); + } + event.stopPropagation(); + }) + .on('toggle.xdsoft', function (event) { + datetimepicker.is(':visible') ? datetimepicker.trigger('close.xdsoft') : datetimepicker.trigger('open.xdsoft'); + }) + .data('input', input); + + timer = 0; + timer1 = 0; + + datetimepicker.data('xdsoft_datetime', _xdsoft_datetime); + datetimepicker.setOptions(options); + + function getCurrentValue() { + + var ct = false, time; + + if (options.startDate) { + ct = _xdsoft_datetime.strToDate(options.startDate); + } else { + ct = options.value || ((input && input.val && input.val()) ? input.val() : ''); + if (ct) { + ct = _xdsoft_datetime.strToDateTime(ct); + } else if (options.defaultDate) { + ct = _xdsoft_datetime.strToDate(options.defaultDate); + if (options.defaultTime) { + time = _xdsoft_datetime.strtotime(options.defaultTime); + ct.setHours(time.getHours()); + ct.setMinutes(time.getMinutes()); + } + } + } + + if (ct && _xdsoft_datetime.isValidDate(ct)) { + datetimepicker.data('changed', true); + } else { + ct = ''; + } + + return ct || 0; + } + + _xdsoft_datetime.setCurrentTime(getCurrentValue()); + + input + .data('xdsoft_datetimepicker', datetimepicker) + .on('open.xdsoft focusin.xdsoft mousedown.xdsoft', function (event) { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible') || (input.data('xdsoft_datetimepicker').is(':visible') && options.closeOnInputClick)) { + return; + } + clearTimeout(timer); + timer = setTimeout(function () { + if (input.is(':disabled') || input.is(':hidden') || !input.is(':visible')) { + return; + } + + triggerAfterOpen = true; + _xdsoft_datetime.setCurrentTime(getCurrentValue()); + + datetimepicker.trigger('open.xdsoft'); + }, 100); + }) + .on('keydown.xdsoft', function (event) { + var val = this.value, elementSelector, + key = event.which; + if ([ENTER].indexOf(key) !== -1 && options.enterLikeTab) { + elementSelector = $("input:visible,textarea:visible"); + datetimepicker.trigger('close.xdsoft'); + elementSelector.eq(elementSelector.index(this) + 1).focus(); + return false; + } + if ([TAB].indexOf(key) !== -1) { + datetimepicker.trigger('close.xdsoft'); + return true; + } + }); + }; + destroyDateTimePicker = function (input) { + var datetimepicker = input.data('xdsoft_datetimepicker'); + if (datetimepicker) { + datetimepicker.data('xdsoft_datetime', null); + datetimepicker.remove(); + input + .data('xdsoft_datetimepicker', null) + .off('.xdsoft'); + $(window).off('resize.xdsoft'); + $([window, document.body]).off('mousedown.xdsoft'); + if (input.unmousewheel) { + input.unmousewheel(); + } + } + }; + $(document) + .off('keydown.xdsoftctrl keyup.xdsoftctrl') + .on('keydown.xdsoftctrl', function (e) { + if (e.keyCode === CTRLKEY) { + ctrlDown = true; + } + }) + .on('keyup.xdsoftctrl', function (e) { + if (e.keyCode === CTRLKEY) { + ctrlDown = false; + } + }); + return this.each(function () { + var datetimepicker = $(this).data('xdsoft_datetimepicker'); + if (datetimepicker) { + if ($.type(opt) === 'string') { + switch (opt) { + case 'show': + $(this).select().focus(); + datetimepicker.trigger('open.xdsoft'); + break; + case 'hide': + datetimepicker.trigger('close.xdsoft'); + break; + case 'toggle': + datetimepicker.trigger('toggle.xdsoft'); + break; + case 'destroy': + destroyDateTimePicker($(this)); + break; + case 'reset': + this.value = this.defaultValue; + if (!this.value || !datetimepicker.data('xdsoft_datetime').isValidDate(Date.parseDate(this.value, options.format))) { + datetimepicker.data('changed', false); + } + datetimepicker.data('xdsoft_datetime').setCurrentTime(this.value); + break; + } + } else { + datetimepicker + .setOptions(opt); + } + return 0; + } + if ($.type(opt) !== 'string') { + if (!options.lazyInit || options.open || options.inline) { + createDateTimePicker($(this)); + } else { + lazyInit($(this)); + } + } + }); + }; + $.fn.datetimepicker.defaults = default_options; +}(jQuery)); +(function () { + +/*! Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh) + * Licensed under the MIT License (LICENSE.txt). + * + * Version: 3.1.12 + * + * Requires: jQuery 1.2.2+ + */ +!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a:a(jQuery)}(function(a){function b(b){var g=b||window.event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&(m=-1*g.detail),"wheelDelta"in g&&(m=g.wheelDelta),"wheelDeltaY"in g&&(m=g.wheelDeltaY),"wheelDeltaX"in g&&(l=-1*g.wheelDeltaX),"axis"in g&&g.axis===g.HORIZONTAL_AXIS&&(l=-1*m,m=0),j=0===m?l:m,"deltaY"in g&&(m=-1*g.deltaY,j=m),"deltaX"in g&&(l=g.deltaX,0===m&&(j=-1*l)),0!==m||0!==l){if(1===g.deltaMode){var q=a.data(this,"mousewheel-line-height");j*=q,m*=q,l*=q}else if(2===g.deltaMode){var r=a.data(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)&&(f=n,d(g,n)&&(f/=40)),d(g,n)&&(j/=40,l/=40,m/=40),j=Math[j>=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var c=h.length;c;)this.addEventListener(h[--c],b,!1);else this.onmousewheel=b;a.data(this,"mousewheel-line-height",k.getLineHeight(this)),a.data(this,"mousewheel-page-height",k.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var c=h.length;c;)this.removeEventListener(h[--c],b,!1);else this.onmousewheel=null;a.removeData(this,"mousewheel-line-height"),a.removeData(this,"mousewheel-page-height")},getLineHeight:function(b){var c=a(b),d=c["offsetParent"in a.fn?"offsetParent":"parent"]();return d.length||(d=a("body")),parseInt(d.css("fontSize"),10)||parseInt(c.css("fontSize"),10)||16},getPageHeight:function(b){return a(b).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})}); + +// Parse and Format Library +//http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/ +/* + * Copyright (C) 2004 Baron Schwartz + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by the + * Free Software Foundation, version 2.1. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ +Date.parseFunctions={count:0};Date.parseRegexes=[];Date.formatFunctions={count:0};Date.prototype.dateFormat=function(b){if(b=="unixtime"){return parseInt(this.getTime()/1000);}if(Date.formatFunctions[b]==null){Date.createNewFormat(b);}var a=Date.formatFunctions[b];return this[a]();};Date.createNewFormat=function(format){var funcName="format"+Date.formatFunctions.count++;Date.formatFunctions[format]=funcName;var code="Date.prototype."+funcName+" = function() {return ";var special=false;var ch="";for(var i=0;i 0) {";var regex="";var special=false;var ch="";for(var i=0;i 0 && z > 0){\nvar doyDate = new Date(y,0);\ndoyDate.setDate(z);\nm = doyDate.getMonth();\nd = doyDate.getDate();\n}";code+="if (y > 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n{return new Date(y, m, d, h, i, s);}\nelse if (y > 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n{return new Date(y, m, d, h, i);}\nelse if (y > 0 && m >= 0 && d > 0 && h >= 0)\n{return new Date(y, m, d, h);}\nelse if (y > 0 && m >= 0 && d > 0)\n{return new Date(y, m, d);}\nelse if (y > 0 && m >= 0)\n{return new Date(y, m);}\nelse if (y > 0)\n{return new Date(y);}\n}return null;}";Date.parseRegexes[regexNum]=new RegExp("^"+regex+"$");eval(code);};Date.formatCodeToRegex=function(b,a){switch(b){case"D":return{g:0,c:null,s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};case"j":case"d":return{g:1,c:"d = parseInt(results["+a+"], 10);\n",s:"(\\d{1,2})"};case"l":return{g:0,c:null,s:"(?:"+Date.dayNames.join("|")+")"};case"S":return{g:0,c:null,s:"(?:st|nd|rd|th)"};case"w":return{g:0,c:null,s:"\\d"};case"z":return{g:1,c:"z = parseInt(results["+a+"], 10);\n",s:"(\\d{1,3})"};case"W":return{g:0,c:null,s:"(?:\\d{2})"};case"F":return{g:1,c:"m = parseInt(Date.monthNumbers[results["+a+"].substring(0, 3)], 10);\n",s:"("+Date.monthNames.join("|")+")"};case"M":return{g:1,c:"m = parseInt(Date.monthNumbers[results["+a+"]], 10);\n",s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};case"n":case"m":return{g:1,c:"m = parseInt(results["+a+"], 10) - 1;\n",s:"(\\d{1,2})"};case"t":return{g:0,c:null,s:"\\d{1,2}"};case"L":return{g:0,c:null,s:"(?:1|0)"};case"Y":return{g:1,c:"y = parseInt(results["+a+"], 10);\n",s:"(\\d{4})"};case"y":return{g:1,c:"var ty = parseInt(results["+a+"], 10);\ny = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",s:"(\\d{1,2})"};case"a":return{g:1,c:"if (results["+a+"] == 'am') {\nif (h == 12) { h = 0; }\n} else { if (h < 12) { h += 12; }}",s:"(am|pm)"};case"A":return{g:1,c:"if (results["+a+"] == 'AM') {\nif (h == 12) { h = 0; }\n} else { if (h < 12) { h += 12; }}",s:"(AM|PM)"};case"g":case"G":case"h":case"H":return{g:1,c:"h = parseInt(results["+a+"], 10);\n",s:"(\\d{1,2})"};case"i":return{g:1,c:"i = parseInt(results["+a+"], 10);\n",s:"(\\d{2})"};case"s":return{g:1,c:"s = parseInt(results["+a+"], 10);\n",s:"(\\d{2})"};case"O":return{g:0,c:null,s:"[+-]\\d{4}"};case"T":return{g:0,c:null,s:"[A-Z]{3}"};case"Z":return{g:0,c:null,s:"[+-]\\d{1,5}"};default:return{g:0,c:null,s:String.escape(b)};}};Date.prototype.getTimezone=function(){return this.toString().replace(/^.*? ([A-Z]{3}) [0-9]{4}.*$/,"$1").replace(/^.*?\(([A-Z])[a-z]+ ([A-Z])[a-z]+ ([A-Z])[a-z]+\)$/,"$1$2$3");};Date.prototype.getGMTOffset=function(){return(this.getTimezoneOffset()>0?"-":"+")+String.leftPad(Math.floor(Math.abs(this.getTimezoneOffset())/60),2,"0")+String.leftPad(Math.abs(this.getTimezoneOffset())%60,2,"0");};Date.prototype.getDayOfYear=function(){var a=0;Date.daysInMonth[1]=this.isLeapYear()?29:28;for(var b=0;b $a->get_baseurl() . '/events', '$eid' => $eid, @@ -567,11 +566,11 @@ function events_content(&$a) { '$ftext' => $ftext, '$ModalCANCEL' => t('Cancel'), '$ModalOK' => t('OK'), - '$s_dsel' => datetimesel($f,mktime(),mktime(0,0,0,0,0,$syear+5),mktime($shour,$sminute,$ssecond,$smonth,$sday,$syear),'start_text'), + '$s_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$syear+5),DateTime::createFromFormat('Y-m-d H:i',"$syear-$smonth-$sday $shour:$sminute"),'start_text'), '$n_text' => t('Finish date/time is not known or not relevant'), '$n_checked' => $n_checked, '$f_text' => t('Event Finishes:'), - '$f_dsel' => datetimesel($f,mktime(),mktime(0,0,0,0,0,$fyear+5),mktime($fhour,$fminute,$fsecond,$fmonth,$fday,$fyear),'finish_text',true,true,'start_text'), + '$f_dsel' => datetimesel($f,new DateTime(),DateTime::createFromFormat('Y',$fyear+5),DateTime::createFromFormat('Y-m-d H:i',"$fyear-$fmonth-$fday $fhour:$fminute"),'finish_text',true,true,'start_text'), '$a_text' => t('Adjust for viewer timezone'), '$a_checked' => $a_checked, '$d_text' => t('Description:'), diff --git a/view/theme/redbasic/php/theme_init.php b/view/theme/redbasic/php/theme_init.php index 2fbca2ef0..dd4542e8a 100644 --- a/view/theme/redbasic/php/theme_init.php +++ b/view/theme/redbasic/php/theme_init.php @@ -4,15 +4,14 @@ head_add_css('library/font_awesome/css/font-awesome.min.css'); head_add_css('library/bootstrap/css/bootstrap-theme.min.css'); head_add_css('library/bootstrap/css/bootstrap.min.css'); head_add_css('view/css/bootstrap-red.css'); -head_add_css('library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css'); +head_add_css('library/datetimepicker/jquery.datetimepicker.css'); //head_add_css('library/colorpicker/css/colorpicker.css'); head_add_css('library/bootstrap-colorpicker/dist/css/bootstrap-colorpicker.min.css'); require_once('view/php/theme_init.php'); head_add_js('library/bootstrap/js/bootstrap.min.js'); head_add_js('library/bootstrap/js/bootbox.min.js'); -head_add_js('library/bootstrap-datetimepicker/js/moment.min.js'); -head_add_js('library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'); +head_add_js('library/datetimepicker/jquery.datetimepicker.js'); //head_add_js('library/colorpicker/js/colorpicker.js'); head_add_js('library/bootstrap-colorpicker/dist/js/bootstrap-colorpicker.js'); //head_add_js('library/bootstrap-colorpicker/src/js/docs.js'); From 1c249a5b06279ea4a19433d45a8dbe6fd71bcd25 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 15:51:42 -0800 Subject: [PATCH 10/20] some poller optimisations and a fix for undefined (empty) dbtype which shows up as a mysql error that 'rand' isn't found. --- boot.php | 3 ++- include/dba/dba_driver.php | 8 ++++-- include/externals.php | 2 ++ include/poller.php | 55 +++++++++++++++++++++----------------- version.inc | 2 +- 5 files changed, 42 insertions(+), 28 deletions(-) diff --git a/boot.php b/boot.php index 7758d1933..569162221 100755 --- a/boot.php +++ b/boot.php @@ -567,7 +567,8 @@ define ( 'ITEM_VERIFIED', 0x2000); // Signature verification was success define ( 'ITEM_RETAINED', 0x4000); // We looked at this item once to decide whether or not to expire it, and decided not to. define ( 'ITEM_RSS', 0x8000); // Item comes from a feed. Use this to decide whether to link the title // Don't make us evaluate this same item again. -define ( 'DBTYPE_MYSQL', 0 ); + +define ( 'DBTYPE_MYSQL', 0 ); define ( 'DBTYPE_POSTGRES', 1 ); /** diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index 103dc8fcc..1bb45b06d 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -24,7 +24,10 @@ function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { $dba = null; - if($dbtype == 1) { + + $dbtype = intval($dbtype); + + if($dbtype == DBTYPE_POSTGRES) { require_once('include/dba/dba_postgres.php'); if(is_null($port)) $port = 5432; $dba = new dba_postgres($server, $port, $user, $pass, $db, $install); @@ -39,6 +42,7 @@ function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { $dba = new dba_mysql($server, $port,$user,$pass,$db,$install); } } + define('NULL_DATE', $dba->get_null_date()); define('ACTIVE_DBTYPE', $dbtype); return $dba; @@ -371,7 +375,7 @@ function db_getfunc($f) { if(isset($lookup[$f]) && isset($lookup[$f][ACTIVE_DBTYPE])) return $lookup[$f][ACTIVE_DBTYPE]; - logger('Unable to abstract DB function "'. $f . '"', LOG_DEBUG); + logger('Unable to abstract DB function "'. $f . '" for dbtype ' . ACTIVE_DBTYPE, LOGGER_DEBUG); return $f; } diff --git a/include/externals.php b/include/externals.php index 0be5d0fde..b0f853dc6 100644 --- a/include/externals.php +++ b/include/externals.php @@ -14,6 +14,8 @@ function externals_run($argv, $argc){ $total = 0; $attempts = 0; + logger('externals: startup', LOGGER_DEBUG); + // pull in some public posts diff --git a/include/poller.php b/include/poller.php index 952431926..e13c6829d 100644 --- a/include/poller.php +++ b/include/poller.php @@ -27,10 +27,11 @@ function poller_run($argv, $argc){ // Check for a lockfile. If it exists, but is over an hour old, it's stale. Ignore it. $lockfile = 'store/[data]/poller'; - if ((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600))) { - logger("poller: Already running"); + if((file_exists($lockfile)) && (filemtime($lockfile) > (time() - 3600)) + && (! get_config('system','override_poll_lockfile'))) { + logger("poller: Already running"); return; - } + } // Create a lockfile. Needs two vars, but $x doesn't need to contain anything. file_put_contents($lockfile, $x); @@ -52,7 +53,7 @@ function poller_run($argv, $argc){ // expire any expired items $r = q("select id from item where expires != '%s' and expires < %s - and not ( item_restrict & %d )>0 ", + and ( item_restrict & %d ) = 0 ", dbesc(NULL_DATE), db_utcnow(), intval(ITEM_DELETED) @@ -69,7 +70,8 @@ function poller_run($argv, $argc){ // or dead entries. $r = q("select channel_id from channel where channel_dirdate < %s - INTERVAL %s", - db_utcnow(), db_quoteinterval('30 DAY') + db_utcnow(), + db_quoteinterval('30 DAY') ); if($r) { foreach($r as $rr) { @@ -82,7 +84,7 @@ function poller_run($argv, $argc){ // publish any applicable items that were set to be published in the future // (time travel posts) - $r = q("select id from item where ( item_restrict & %d )>0 and created <= %s ", + $r = q("select id from item where ( item_restrict & %d ) > 0 and created <= %s ", intval(ITEM_DELAYED_PUBLISH), db_utcnow() ); @@ -207,7 +209,8 @@ function poller_run($argv, $argc){ $r = q("select xchan_photo_l, xchan_hash from xchan where xchan_photo_l != '' and xchan_photo_m = '' and xchan_photo_date < %s - INTERVAL %s", - db_utcnow(), db_quoteinterval('1 DAY') + db_utcnow(), + db_quoteinterval('1 DAY') ); if($r) { require_once('include/photo/photo_driver.php'); @@ -253,13 +256,13 @@ function poller_run($argv, $argc){ } - $sql_extra = (($manual_id) ? " AND abook_id = $manual_id " : ""); + $sql_extra = (($manual_id) ? " AND abook_id = " . intval($manual_id) . " " : ""); reload_plugins(); $d = datetime_convert(); - //TODO check to see if there are any cronhooks before wasting a process + // TODO check to see if there are any cronhooks before wasting a process if(! $restart) proc_run('php','include/cronhooks.php'); @@ -271,12 +274,12 @@ function poller_run($argv, $argc){ : '' ); - $randfunc = (ACTIVE_DBTYPE == DBTYPE_POSTGRES) ? 'RANDOM()' : 'RAND()'; + $randfunc = db_getfunc('RAND'); - $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel - FROM abook LEFT JOIN account on abook_account = account_id + $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel, xchan_network + FROM abook LEFT JOIN xchan on abook_xchan = xchan_hash LEFT JOIN account on abook_account = account_id $sql_extra - AND (( abook_flags & %d )>0 OR ( abook_flags = %d )) + AND (( abook_flags & %d ) > 0 OR ( abook_flags = %d )) AND (( account_flags = %d ) OR ( account_flags = %d )) $abandon_sql ORDER BY $randfunc", intval(ABOOK_FLAG_HIDDEN|ABOOK_FLAG_PENDING|ABOOK_FLAG_UNCONNECTED|ABOOK_FLAG_FEED), intval(0), @@ -289,6 +292,9 @@ function poller_run($argv, $argc){ foreach($contacts as $contact) { + if($contact['abook_flags'] & ABOOK_FLAG_SELF) + continue; + $update = false; $t = $contact['abook_updated']; @@ -310,6 +316,9 @@ function poller_run($argv, $argc){ } + if($contact['xchan_network'] !== 'zot') + continue; + if($c == $t) { if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) $update = true; @@ -330,17 +339,12 @@ function poller_run($argv, $argc){ // He's dead, Jim if(strcmp(datetime_convert('UTC','UTC', 'now'),datetime_convert('UTC','UTC', $c . " + 30 day")) > 0) { - $n = q("select xchan_network from xchan where xchan_hash = '%s' limit 1", - dbesc($contact['abook_xchan']) + $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d", + intval(ABOOK_FLAG_ARCHIVED), + intval($contact['abook_id']) ); - if($n && $n[0]['xchan_network'] == 'zot') { - $r = q("update abook set abook_flags = (abook_flags | %d) where abook_id = %d", - intval(ABOOK_FLAG_ARCHIVED), - intval($contact['abook_id']) - ); - $update = false; - continue; - } + $update = false; + continue; } if($contact['abook_flags'] & ABOOK_FLAG_ARCHIVED) { @@ -364,6 +368,9 @@ function poller_run($argv, $argc){ } + if($contact['abook_flags'] & (ABOOK_FLAG_PENDING|ABOOK_FLAG_ARCHIVED|ABOOK_FLAG_IGNORED)) + continue; + if((! $update) && (! $force)) continue; @@ -375,7 +382,7 @@ function poller_run($argv, $argc){ } if($dirmode == DIRECTORY_MODE_SECONDARY || $dirmode == DIRECTORY_MODE_PRIMARY) { - $r = q("select distinct ud_addr, updates.* from updates where not ( ud_flags & %d )>0 and ud_addr != '' and ( ud_last = '%s' OR ud_last > %s - INTERVAL %s ) group by ud_addr ", + $r = q("select distinct ud_addr, updates.* from updates where ( ud_flags & %d ) = 0 and ud_addr != '' and ( ud_last = '%s' OR ud_last > %s - INTERVAL %s ) group by ud_addr ", intval(UPDATE_FLAGS_UPDATED), dbesc(NULL_DATE), db_utcnow(), db_quoteinterval('7 DAY') diff --git a/version.inc b/version.inc index 0ea73e309..664554361 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-15.860 +2014-11-16.861 From cbaee76dd955a4d6d6f0f0e0d364e34e12a9b827 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 16:19:24 -0800 Subject: [PATCH 11/20] "list mode" (forum and blog mode, no comments or comment boxes displayed on the summary page) --- include/ItemObject.php | 5 +- mod/channel.php | 8 +- mod/network.php | 7 +- view/tpl/conv_list.tpl | 175 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 191 insertions(+), 4 deletions(-) create mode 100755 view/tpl/conv_list.tpl diff --git a/include/ItemObject.php b/include/ItemObject.php index 9e694b8ac..ee7676bd4 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -243,6 +243,7 @@ class Item extends BaseObject { 'id' => $this->get_id(), 'linktitle' => sprintf( t('View %s\'s profile - %s'), $profile_name, $item['author']['xchan_addr']), 'olinktitle' => sprintf( t('View %s\'s profile - %s'), $this->get_owner_name(), $item['owner']['xchan_addr']), + 'llink' => $item['llink'], 'to' => t('to'), 'via' => t('via'), 'wall' => t('Wall-to-Wall'), @@ -503,12 +504,12 @@ class Item extends BaseObject { /** * Get template */ - private function get_template() { + public function get_template() { return $this->template; } - private function set_template($t) { + public function set_template($t) { $this->template = $t; } diff --git a/mod/channel.php b/mod/channel.php index 8d6b2a169..1cc2dc02c 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -293,8 +293,14 @@ function channel_content(&$a, $update = 0, $load = false) { } + if(get_pconfig($a->profile['profile_uid'],'system','channel_list_mode')) + $page_mode = 'list'; + else + $page_mode = 'client'; + + if($_COOKIE['jsAvailable'] == 1) { - $o .= conversation($a,$items,'channel',$update,'client'); + $o .= conversation($a,$items,'channel',$update,$page_mode); } else { $o .= conversation($a,$items,'channel',$update,'traditional'); } diff --git a/mod/network.php b/mod/network.php index da020c389..fd74b1887 100644 --- a/mod/network.php +++ b/mod/network.php @@ -426,7 +426,12 @@ function network_content(&$a, $update = 0, $load = false) { $mode = (($nouveau) ? 'network-new' : 'network'); - $o .= conversation($a,$items,$mode,$update,'client'); + if(get_pconfig(local_user(),'system','network_list_mode')) + $page_mode = 'list'; + else + $page_mode = 'client'; + + $o .= conversation($a,$items,$mode,$update,$page_mode); if(($items) && (! $update)) $o .= alt_pager($a,count($items)); diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl new file mode 100755 index 000000000..86562e1f1 --- /dev/null +++ b/view/tpl/conv_list.tpl @@ -0,0 +1,175 @@ +{{if $item.comment_firstcollapsed}} + + +{{/if}} From 18cedf4def7d1d2c816a847ab449cbd74b33b58f Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 16:48:35 -0800 Subject: [PATCH 12/20] blog/list mode display settings --- mod/settings.php | 10 ++++++++++ view/tpl/settings_display.tpl | 2 ++ 2 files changed, 12 insertions(+) diff --git a/mod/settings.php b/mod/settings.php index 396bb2972..725825b34 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -140,6 +140,10 @@ function settings_post(&$a) { $user_scalable = ((x($_POST,'user_scalable')) ? intval($_POST['user_scalable']) : 0); $nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile']) : 0); $title_tosource = ((x($_POST,'title_tosource')) ? intval($_POST['title_tosource']) : 0); + $channel_list_mode = ((x($_POST,'channel_list_mode')) ? intval($_POST['channel_list_mode']) : 0); + $network_list_mode = ((x($_POST,'network_list_mode')) ? intval($_POST['network_list_mode']) : 0); + + $browser_update = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0); $browser_update = $browser_update * 1000; if($browser_update < 10000) @@ -159,6 +163,8 @@ function settings_post(&$a) { set_pconfig(local_user(),'system','itemspage', $itemspage); set_pconfig(local_user(),'system','no_smilies',$nosmile); set_pconfig(local_user(),'system','title_tosource',$title_tosource); + set_pconfig(local_user(),'system','channel_list_mode', $channel_list_mode); + set_pconfig(local_user(),'system','network_list_mode', $network_list_mode); if ($theme == $a->channel['channel_theme']){ // call theme_post only if theme has not been changed @@ -722,6 +728,7 @@ function settings_content(&$a) { /* * DISPLAY SETTINGS */ + if((argc() > 1) && (argv(1) === 'display')) { $default_theme = get_config('system','theme'); if(! $default_theme) @@ -801,6 +808,9 @@ function settings_content(&$a) { '$layout_editor' => t('System Page Layout Editor - (advanced)'), '$theme_config' => $theme_config, '$expert' => feature_enabled(local_user(),'expert'), + '$channel_list_mode' => array('channel_list_mode', t('Use blog/list mode on channel page'), get_pconfig(local_user(),'system','channel_list_mode'), t('(comments displayed separately)')), + '$network_list_mode' => array('network_list_mode', t('Use blog/list mode on matrix page'), get_pconfig(local_user(),'system','network_list_mode'), t('(comments displayed separately)')), + )); return $o; diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index d3134ea88..8e870ba0e 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -13,6 +13,8 @@ {{include file="field_input.tpl" field=$itemspage}} {{include file="field_checkbox.tpl" field=$nosmile}} {{include file="field_checkbox.tpl" field=$title_tosource}} +{{include file="field_checkbox.tpl" field=$channel_list_mode}} +{{include file="field_checkbox.tpl" field=$network_list_mode}}
      From 591f10e2350812d1aa8d673246d59bfa3063c051 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Nov 2014 19:08:10 -0800 Subject: [PATCH 13/20] module cleanup --- mod/network.php | 215 ++++++++++++++++++++++++------------------------ 1 file changed, 109 insertions(+), 106 deletions(-) diff --git a/mod/network.php b/mod/network.php index fd74b1887..d6c19eca7 100644 --- a/mod/network.php +++ b/mod/network.php @@ -24,7 +24,7 @@ function network_content(&$a, $update = 0, $load = false) { if(! local_user()) { $_SESSION['return_url'] = $a->query_string; - return login(false); + return login(false); } @@ -52,28 +52,30 @@ function network_content(&$a, $update = 0, $load = false) { } - $datequery = $datequery2 = ''; $group = 0; - $nouveau = false; + $nouveau = false; - $datequery = ((x($_GET,'dend') && is_a_date_arg($_GET['dend'])) ? notags($_GET['dend']) : ''); + $datequery = ((x($_GET,'dend') && is_a_date_arg($_GET['dend'])) ? notags($_GET['dend']) : ''); $datequery2 = ((x($_GET,'dbegin') && is_a_date_arg($_GET['dbegin'])) ? notags($_GET['dbegin']) : ''); - $nouveau = ((x($_GET,'new')) ? intval($_GET['new']) : 0); - $gid = ((x($_GET,'gid')) ? intval($_GET['gid']) : 0); + $nouveau = ((x($_GET,'new')) ? intval($_GET['new']) : 0); + $gid = ((x($_GET,'gid')) ? intval($_GET['gid']) : 0); if($datequery) $_GET['order'] = 'post'; + + // filter by collection (e.g. group) + if($gid) { - $r = q("SELECT * FROM `groups` WHERE id = %d AND uid = %d LIMIT 1", - intval($gid), - intval(local_user()) - ); - if(! $r) { + $r = q("SELECT * FROM groups WHERE id = %d AND uid = %d LIMIT 1", + intval($gid), + intval(local_user()) + ); + if(! $r) { if($update) killme(); notice( t('No such group') . EOL ); @@ -81,27 +83,26 @@ function network_content(&$a, $update = 0, $load = false) { // NOTREACHED } - $group = $gid; + $group = $gid; $group_hash = $r[0]['hash']; - $def_acl = array('allow_gid' => '<' . $r[0]['hash'] . '>'); + $def_acl = array('allow_gid' => '<' . $r[0]['hash'] . '>'); } $o = ''; - // if no tabs are selected, defaults to comments - $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0); - $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0); - $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment'); - $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0); - $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0); - $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0); - $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0); - $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99); - $firehose = ((x($_GET,'fh')) ? intval($_GET['fh']) : 0); - $file = ((x($_GET,'file')) ? $_GET['file'] : ''); + $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0); + $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0); + $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment'); + $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0); + $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0); + $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0); + $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0); + $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99); + $firehose = ((x($_GET,'fh')) ? intval($_GET['fh']) : 0); + $file = ((x($_GET,'file')) ? $_GET['file'] : ''); if(x($_GET,'search') || x($_GET,'file')) @@ -122,21 +123,21 @@ function network_content(&$a, $update = 0, $load = false) { $channel_acl = array( 'allow_cid' => $channel['channel_allow_cid'], 'allow_gid' => $channel['channel_allow_gid'], - 'deny_cid' => $channel['channel_deny_cid'], - 'deny_gid' => $channel['channel_deny_gid'] + 'deny_cid' => $channel['channel_deny_cid'], + 'deny_gid' => $channel['channel_deny_gid'] ); $x = array( - 'is_owner' => true, - 'allow_location' => ((intval(get_pconfig($channel['channel_id'],'system','use_browser_location'))) ? '1' : ''), + 'is_owner' => true, + 'allow_location' => ((intval(get_pconfig($channel['channel_id'],'system','use_browser_location'))) ? '1' : ''), 'default_location' => $channel['channel_location'], - 'nickname' => $channel['channel_address'], - 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), - 'acl' => populate_acl((($group || $cid) ? $def_acl : $channel_acl)), - 'bang' => (($group || $cid) ? '!' : ''), - 'visitor' => true, - 'profile_uid' => local_user() + 'nickname' => $channel['channel_address'], + 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), + 'acl' => populate_acl((($group || $cid) ? $def_acl : $channel_acl)), + 'bang' => (($group || $cid) ? '!' : ''), + 'visitor' => true, + 'profile_uid' => local_user() ); $o .= status_editor($a,$x); @@ -146,11 +147,11 @@ function network_content(&$a, $update = 0, $load = false) { // We don't have to deal with ACL's on this page. You're looking at everything // that belongs to you, hence you can see all of it. We will filter by group if - // desired. + // desired. - - $sql_options = (($star) - ? " and (item_flags & " . intval(ITEM_STARRED) . ")>0" + + $sql_options = (($star) + ? " and (item_flags & " . intval(ITEM_STARRED) . ") > 0" : ''); $sql_nets = ''; @@ -159,20 +160,20 @@ function network_content(&$a, $update = 0, $load = false) { if($group) { $contact_str = ''; - $contacts = group_get_members($group); - if($contacts) { + $contacts = group_get_members($group); + if($contacts) { foreach($contacts as $c) { if($contact_str) $contact_str .= ','; - $contact_str .= "'" . $c['xchan'] . "'"; + $contact_str .= "'" . $c['xchan'] . "'"; } - } - else { - $contact_str = ' 0 '; + } + else { + $contact_str = ' 0 '; info( t('Collection is empty')); - } + } - $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND (( author_xchan IN ( $contact_str ) OR owner_xchan in ( $contact_str )) or allow_gid like '" . protect_sprintf('%<' . dbesc($group_hash) . '>%') . "' ) and id = parent and item_restrict = 0 ) "; + $sql_extra = " AND item.parent IN ( SELECT DISTINCT parent FROM item WHERE true $sql_options AND (( author_xchan IN ( $contact_str ) OR owner_xchan in ( $contact_str )) or allow_gid like '" . protect_sprintf('%<' . dbesc($group_hash) . '>%') . "' ) and id = parent and item_restrict = 0 ) "; $x = group_rec_byhash(local_user(), $group_hash); @@ -180,60 +181,60 @@ function network_content(&$a, $update = 0, $load = false) { $o = '

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

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

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

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